@import url('./login.css');
@import url('./spages.css');

:root {
  --navy-900: #08152b;
  --navy-800: #0a1b36;
  --navy-700: #0e2547;
  --brand-blue: #1c57ae;
  --brand-blue-bright: #2b6fd6;
  --blue-100: #e9f1fb;
  --blue-050: #f4f8fd;
  --brand-blue-soft: #2b6fd6;
  --brand-cyan: #2bb6c9;
  --brand-cyan-bright: #5be8da;
  --brand-red: #f08a3c;
  --brand-accent-dark: #d9742a;
  --ink: #0f1d30;
  --text-soft: #566479;
  --text-light: #7c8aa0;
  --border-soft: #e4e9f1;
  --bg-soft: #f6f9fc;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: #FFF;
}

a {
  text-decoration: none;
}

.topbar {
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .container {
  max-width: 75rem;
  padding-right: 1rem;
  padding-left: 1rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.125rem;
  min-height: 2.5rem;
  color: #CDD9EA;
  font-size: 0.8125rem;
}

.topbar-trust,
.topbar-actions,
.topbar-phone {
  display: inline-flex;
  align-items: center;
}

.topbar-trust {
  gap: 0.5625rem;
  color: #9FB3CF;
  font-weight: 500;
  white-space: nowrap;
}

.topbar-trust svg,
.topbar-phone svg {
  width: 0.9375rem;
  height: 0.9375rem;
  flex: 0 0 auto;
  color: var(--brand-cyan-bright);
}

.topbar-actions {
  justify-content: flex-end;
  gap: 1.375rem;
  white-space: nowrap;
}

.topbar-phone {
  gap: 0.4375rem;
  color: #FFF;
  font-weight: 700;
  white-space: nowrap;
}

.topbar-phone:hover {
  color: var(--brand-cyan-bright);
}

.topbar-pipe {
  width: 1px;
  height: 0.875rem;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.15);
}

.topbar-action {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: #CDD9EA;
  font: 500 0.8125rem/1 var(--font);
  cursor: pointer;
  transition: color 0.15s ease;
}

.topbar-action:hover, .topbar-action:focus-visible {
  color: #FFF;
}

.topbar .icon-btn {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #CDD9EA;
  box-shadow: none;
}

.topbar .icon-btn:hover {
  border-color: rgba(91, 232, 218, 0.5);
  color: #FFF;
}

.icon-btn {
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #FFF;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1;
  box-shadow: 0 0.375rem 1rem rgba(17, 67, 163, 0.06);
  transition: all 0.2s ease;
}

.icon-btn:hover {
  border-color: #CDD9F3;
  color: #0D2F7A;
}

.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-field {
  width: 0;
  height: 2.375rem;
  opacity: 0;
  pointer-events: none;
  margin-right: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #FFF;
  color: var(--ink);
  font: 600 0.875rem var(--font);
  box-shadow: 0 0.375rem 1rem rgba(8, 21, 43, 0.2);
  transition: width 0.28s ease, opacity 0.2s ease, border-color 0.2s ease, margin-right 0.28s ease, padding 0.28s ease;
}

.search-field::placeholder {
  color: #94A3B8;
}

.search-wrap:hover .search-field,
.search-wrap:focus-within .search-field {
  width: 11rem;
  opacity: 1;
  pointer-events: auto;
  margin-right: 0.5rem;
  padding: 0 0.875rem 0 1rem;
  border-color: var(--border-soft);
}

.cart-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.125rem;
  background: var(--brand-red);
  color: #FFF;
  font-size: 0.625rem;
  border-radius: 999px;
  padding: 0.125rem 0.3125rem;
}

.gsa {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  min-width: 12.5rem;
  padding: 0.28rem 0.95rem 0.28rem 0.4rem;
  border: 1px solid #BFD1F0;
  border-radius: 999px;
  color: #0F367F;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #EEF4FF 0%, #FFFFFF 56%, #FFF2F4 100%);
  box-shadow: 0 0.5rem 1rem rgba(17, 67, 163, 0.08);
  text-transform: uppercase;
}

.gsa-logo-wrap {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.4rem;
  overflow: hidden;
  background: #FFF;
  border: 1px solid rgba(15, 54, 127, 0.12);
  flex: 0 0 auto;
}

.gsa-logo {
  display: block;
  width: 4rem;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.gsa-text {
  line-height: 1;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 10px 30px rgba(10, 27, 54, 0.08);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan), var(--brand-red));
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand,
.header-actions {
  flex: 0 0 auto;
}

.header-brand {
  padding-left: 1.5rem;
}

.logo-shell {
  border: 1px solid var(--border-soft);
  background: #FFF;
  border-radius: 1rem;
  box-shadow: 0 0.125rem 0.5rem rgba(15, 23, 42, 0.06);
  padding: 0.75rem 1rem;
  color: inherit;
  text-decoration: none;
}

.divider-vertical {
  width: 1px;
  height: 28px;
  background: #CBD5E1;
}

.avery-note {
  margin-top: 0.25rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-blue-soft);
  line-height: 1;
}

.main-nav > li {
  position: relative;
}

.main-nav {
  justify-self: center;
}

.nav-link-custom,
.nav-link-static {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  border-radius: 0.85rem;
  color: var(--brand-blue);
  font-size: 1.14rem;
  font-weight: 700;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link-custom:hover,
.nav-link-static:hover {
  color: #D9742A;
  background: linear-gradient(90deg, #EEF4FF, #FFF8F2);
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.2rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
  transition: transform 0.25s ease;
}

.main-nav > li:hover .nav-link-custom::after {
  transform: scaleX(1);
}

.chevron {
  width: 16px;
  height: 16px;
  color: var(--brand-blue-soft);
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav > li:hover .chevron {
  color: var(--brand-red);
  transform: translateY(1px);
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 820px;
  padding-top: 1rem;
}

.main-nav > li:hover .mega-menu {
  display: block;
}

.services-menu,
.company-menu {
  left: 50%;
  width: 22rem;
  transform: translateX(-50%);
}

.company-menu {
  width: 24rem;
}

.services-card {
  border-radius: 1.35rem;
}

.services-body {
  padding: 0.8rem;
}

.services-item {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 0.95rem;
  color: #334155;
  transition: background 0.2s ease, color 0.2s ease;
}

.services-item + .services-item {
  margin-top: 0.2rem;
}

.services-item:hover {
  background: #FFF8F2;
  color: #D9742A;
}

.services-title {
  display: block;
  font-size: 0.98rem;
  line-height: 1.3;
}

.services-tagline {
  display: block;
  margin-top: 0.3rem;
  color: #64748B;
  font-size: 0.78rem;
  line-height: 1.45;
}

.mega-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1.75rem;
  background: #FFF;
  box-shadow: 0 24px 70px rgba(240, 138, 60, 0.12);
}

.mega-topline {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-red), transparent);
}

.mega-side {
  background: rgba(248, 250, 252, 0.95);
  border-right: 1px solid #E2E8F0;
  padding: 1.5rem;
  height: 100%;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-blue-soft);
}

.mega-body {
  padding: 2rem;
}

.mega-section-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-blue-soft);
  margin-bottom: 1rem;
}

a.mega-section-title,
a.mobile-submenu-heading,
a.footer-link-group-title {
  display: block;
  text-decoration: none;
}

a.mega-section-title:hover,
a.footer-link-group-title:hover {
  color: var(--brand-blue-soft);
  text-decoration: none;
}

a.mobile-submenu-heading:hover {
  color: #6B7280;
  text-decoration: none;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.85rem;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.mega-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}

.mega-item:hover {
  background: #FFF8F2;
  color: #D9742A;
}

.mega-item:hover .mega-item-dot {
  background: var(--brand-red);
}

.icon-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #FFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  transition: all 0.2s ease;
}

.icon-circle-btn:hover {
  border-color: #CDD9F3;
  color: #0D2F7A;
}

.btn-contact-custom {
  border-radius: 1rem;
  border: 1px solid #F6C49F;
  background: #FFF;
  color: var(--brand-accent-dark);
  padding: 0.7rem 1.25rem;
  font-weight: 600;
}

.btn-contact-custom:hover {
  background: #FFF8F2;
  color: var(--brand-accent-dark);
  border-color: #F6C49F;
}

.btn-red-gradient,
.btn-red-solid,
.btn-red-outline {
  border-radius: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.35rem;
}

.btn-red-gradient {
  color: #FFF;
  border: 0;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-accent-dark));
  box-shadow: 0 10px 22px -10px rgba(240, 138, 60, 0.65);
}

.btn-red-gradient:hover,
.btn-red-solid:hover {
  color: #FFF;
  opacity: 0.96;
}

.btn-red-solid {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-red);
  --bs-btn-border-color: var(--brand-red);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--brand-accent-dark);
  --bs-btn-hover-border-color: var(--brand-accent-dark);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #c56622;
  --bs-btn-active-border-color: #c56622;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #e8aa7b;
  --bs-btn-disabled-border-color: #e8aa7b;
  color: #FFF;
  border: 1px solid var(--brand-red);
  background: var(--brand-red);
}

.btn-red-solid:hover,
.btn-red-solid:focus,
.btn-red-solid:active,
.btn-red-solid.show {
  color: #FFF !important;
  border-color: var(--brand-accent-dark) !important;
  background: var(--brand-accent-dark) !important;
  opacity: 1;
}

.btn-soft-outline {
  border-radius: 0.85rem;
  border: 1px solid #CBD5E1;
  color: #334155;
  padding: 0.75rem 1.35rem;
  font-weight: 600;
  background: #FFF;
}

.btn-soft-outline:hover {
  background: #F8FAFC;
  color: #334155;
  border-color: #CBD5E1;
}

.btn-red-outline {
  border: 2px solid var(--brand-red);
  color: var(--brand-red);
  background: transparent;
}

.btn-red-outline:hover {
  color: var(--brand-red);
  background: #FFF8F2;
  border-color: var(--brand-red);
}

.mobile-menu-toggle {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.mobile-menu-chevron {
  width: 1rem;
  height: 1rem;
  color: var(--brand-blue-soft);
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-chevron {
  transform: rotate(180deg);
  color: var(--brand-red);
}

.mobile-submenu {
  padding-top: 0.35rem;
}

.mobile-submenu-panel {
  margin-left: 0.4rem;
  padding: 0.35rem 0 0.2rem 0.95rem;
  border-left: 2px solid #D8E3F8;
}

.mobile-submenu-heading {
  margin: 0.55rem 0 0.3rem;
  color: #6B7280;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-submenu-item {
  display: block;
  padding: 0.45rem 0;
  color: var(--brand-blue);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-submenu-item:hover {
  color: var(--brand-red);
}

.hero {
  padding: 2.125rem 0 1rem;
}

.hero + .section-space {
  padding-top: 0.5rem;
}

.hero-shell {
  /*background: radial-gradient(circle at top right, rgba(240, 138, 60, 0.09), transparent 30%), #FFF;*/
  border: 1px solid var(--border-soft);
  border-radius: 2rem;
  box-shadow: 0 1.125rem 2.625rem rgba(17, 67, 163, 0.08);
  /*padding: 1.875rem;*/
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 1.625rem;
  padding-left: 80px;
}

.hero .eyebrow {
  margin-bottom: 0.75rem;
  color: var(--brand-red);
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 0;
}

.hero p {
  max-width: 56ch;
  margin: 1.125rem 0 0;
  color: #64748B;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  margin-top: 1.5rem;
}

.hero-points .point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero-points .point b {
  display: block;
  font-size: 0.95rem;
}

.hero-points .point span {
  display: block;
  margin-top: 0.1875rem;
  color: #64748B;
  font-size: 0.92rem;
  line-height: 1.4;
}

.hero-points .dot {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 999px;
  background: #EDF3FF;
  color: var(--brand-blue);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background:var(--blue-050) url('../img/hero1.webp') no-repeat center right;
  background-size: cover;
  /*box-shadow: 0 1.25rem 2.75rem rgba(10, 27, 54, 0.14);*/
}

.hero-collage {
  position: relative;
  min-height: inherit;
  isolation: isolate;
}

.hero-collage::before,
.hero-collage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: 0;
}

.hero-collage::before {
  left: 0;
  top: 3.25rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle at 35% 35%, rgba(28, 87, 174, 0.18), rgba(43, 182, 201, 0.12) 42%, rgba(43, 182, 201, 0) 72%);
}

.hero-collage::after {
  right: 0;
  bottom: 0;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle at 50% 50%, rgba(240, 138, 60, 0.16), rgba(240, 138, 60, 0.1) 40%, rgba(240, 138, 60, 0) 74%);
}

.hero-piece {
  position: absolute;
  margin: 0;
  z-index: 1;
}

.hero-piece img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-piece-art,
.hero-piece-f1,
.hero-piece-oversized,
.hero-piece-person {
  overflow: hidden;
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.88);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.16);
}

.hero-piece-art img,
.hero-piece-f1 img,
.hero-piece-oversized img,
.hero-piece-person img {
  object-fit: cover;
  border-radius: inherit;
}

@media (min-width: 992px) {
  .topbar .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  
  .main-nav {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
  }
  
  .header-actions {
    margin-left: auto;
  }
}

@media (min-width: 992px) and (max-width: 1099.98px) {
  .main-nav {
    gap: 0.1rem !important;
  }
  
  .nav-link-custom,
  .nav-link-static {
    gap: 0.25rem;
    padding: 0.625rem 0.7rem;
    font-size: 1.056rem;
  }
  
  .nav-link-custom::after {
    left: 0.7rem;
    right: 0.7rem;
  }
  
  .chevron {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 991.98px) {
  .topbar {
    display: none;
  }
}

.hero-piece-art {
  left: 0;
  top: 2.5rem;
  width: 24%;
  aspect-ratio: 0.82;
  border-radius: 1.9rem 1.3rem 1.9rem 1.4rem;
  transform: rotate(-13deg);
  z-index: 3;
}

.hero-piece-f1 {
  right: 1.5rem;
  top: 4.75rem;
  width: 26%;
  aspect-ratio: 0.82;
  border-radius: 1.5rem 1.9rem 1.4rem 2rem;
  transform: rotate(10deg);
  z-index: 4;
}

.hero-piece-oversized {
  left: 4%;
  bottom: 3.25rem;
  width: 30%;
  aspect-ratio: 1.22;
  border-radius: 2rem 1.25rem 2.2rem 1.5rem;
  transform: rotate(-8deg);
  z-index: 2;
}

.hero-piece-person {
  left: 24%;
  top: 0;
  width: 34%;
  aspect-ratio: 0.78;
  border-radius: 2.4rem 1.9rem 2.9rem 1.8rem;
  transform: rotate(-6deg);
  z-index: 5;
}

.hero-piece-person img {
  object-position: 52% center;
}

.hero-piece-printer {
  right: 0.5rem;
  bottom: 0;
  width: 68%;
  height: 24rem;
  z-index: 3;
}

.hero-piece-printer img {
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 46px rgba(15, 23, 42, 0.22));
}

.hero-chip {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}

.hero-chip-top {
  right: 7%;
  top: 1rem;
}

.hero-chip-bottom {
  left: 16%;
  bottom: 0.75rem;
  color: var(--brand-red);
}

.solutions {
  padding: 2.625rem 0;
}

.solutions .section-head {
  margin-bottom: 1.375rem;
}

.solutions .section-head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: 0;
  margin-bottom: 0.625rem;
  color: var(--brand-blue);
}

.solutions .section-head h2 a {
  color: inherit;
  text-decoration: none;
}

.solutions .section-head h2 a:hover {
  color: var(--brand-red);
}

.solutions .section-head p {
  color: #64748B;
  max-width: 70ch;
  line-height: 1.75;
  margin-bottom: 0;
}

.solutions .grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.125rem;
  margin-bottom: 1.375rem;
}

.solutions .solution-card {
  background: #FFF;
  border: 1px solid #DFE5F1;
  border-radius: 1.375rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solutions .solution-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2.125rem rgba(23, 60, 143, 0.08);
}

.solutions .thumb {
  aspect-ratio: 1.25 / 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-soft), var(--blue-100, #e9f1fb));
}

.solutions .solution-thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions .thumb.health::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(203, 217, 234, 0.88) 0 18%, transparent 18% 100%), linear-gradient(180deg, #d7e5f3 0, #f7fbff 42%, #dbe8f4 100%);
}

.solutions .thumb.health::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 16%;
  width: 74%;
  height: 52%;
  border-radius: 1rem;
  background: linear-gradient(135deg, #FFF, #EEF4FB 70%, #D7E0EA);
  box-shadow: 120px -46px 0 -24px rgba(96, 132, 170, 0.18), 154px -18px 0 -36px rgba(70, 90, 120, 0.16);
  transform: skew(-10deg);
}

.solutions .thumb.edu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #86B6EB 0, #DFEEFE 48%, #F2EFE8 48%, #F7F4EE 100%);
}

.solutions .thumb.edu::after {
  content: "";
  position: absolute;
  left: 12%;
  top: 28%;
  width: 76%;
  height: 46%;
  border-radius: 1.5rem;
  background: radial-gradient(circle at 18% 60%, #f4cf90 0 10%, transparent 11%), radial-gradient(circle at 34% 54%, #f8ddb3 0 11%, transparent 12%), radial-gradient(circle at 54% 48%, #f2c27e 0 11%, transparent 12%), radial-gradient(circle at 73% 56%, #7f5438 0 11%, transparent 12%), linear-gradient(180deg, rgba(62, 121, 58, 0.88) 0 38%, rgba(227, 239, 230, 0) 38% 100%);
}

.solutions .thumb.property::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #8EC3FB 0, #D7ECFF 60%, #EEF2F7 60%, #F5F7FB 100%);
}

.solutions .thumb.property::after {
  content: "";
  position: absolute;
  left: 18%;
  bottom: 16%;
  width: 60%;
  height: 58%;
  background: linear-gradient(90deg, transparent 0 18%, rgba(19, 49, 106, 0.9) 18% 31%, transparent 31% 35%, rgba(33, 86, 167, 0.85) 35% 52%, transparent 52% 56%, rgba(56, 110, 189, 0.82) 56% 71%, transparent 71% 100%);
  border-radius: 8px 8px 0 0;
  box-shadow: 74px 12px 0 -20px rgba(94, 120, 155, 0.65), 106px 18px 0 -28px rgba(120, 145, 180, 0.55);
}

.solutions .thumb.gov::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #8FC3FB 0, #DFF0FF 52%, #F1F3F8 52%, #F7F8FB 100%);
}

.solutions .thumb.gov::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 14%;
  height: 46%;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, rgba(233, 238, 245, 0.96) 0 8%, transparent 8% 13%, rgba(233, 238, 245, 0.96) 13% 21%, transparent 21% 26%, rgba(233, 238, 245, 0.96) 26% 34%, transparent 34% 39%, rgba(233, 238, 245, 0.96) 39% 47%, transparent 47% 52%, rgba(233, 238, 245, 0.96) 52% 60%, transparent 60% 65%, rgba(233, 238, 245, 0.96) 65% 73%, transparent 73% 78%, rgba(233, 238, 245, 0.96) 78% 86%, transparent 86% 100%);
  box-shadow: 0 -32px 0 -20px rgba(235, 241, 247, 0.96), 0 -54px 0 -34px rgba(235, 241, 247, 0.96);
}

.solutions .solution-body {
  padding: 1.125rem;
}

.solutions .solution-body h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--brand-blue);
}

.solutions .solution-body h3 a {
  color: inherit;
  text-decoration: none;
}

.solutions .solution-body h3 a:hover {
  color: var(--brand-red);
}

.solutions .solution-body p {
  color: #5E6D86;
  line-height: 1.65;
  margin-bottom: 0.875rem;
}

.solutions .solution-card-copy {
  color: #5E6D86;
  line-height: 1.65;
  margin-bottom: 0.875rem;
}

.solutions .solution-card-copy p:last-child {
  margin-bottom: 0;
}

.solutions .solution-card-copy h3 {
  color: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
  margin: 0 0 0.875rem;
}

.solutions .solution-card-copy h3:last-child {
  margin-bottom: 0;
}

.solutions .link {
  color: var(--brand-red);
  align-self: flex-start;
  text-decoration: none;
}

.solutions .solutions-cta {
  display: flex;
  justify-content: center;
}

.section-space {
  padding: 3rem 0;
}

.home-products-section {
  padding: clamp(1.75rem, 3vw, 2.75rem) 0 clamp(4rem, 7vw, 6.75rem);
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.home-products-head {
  /* max-width: 48rem; */
  margin-bottom: 2.25rem;
}

.home-products-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-products-eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--brand-cyan);
}

.home-products-head h2 {
  margin: 0.85rem 0 0.85rem;
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.home-products-head p {
  /*  max-width: 44rem;*/
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.375rem;
}

.home-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  background: #FFF;
  box-shadow: 0 1px 3px rgba(10, 27, 54, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-product-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 1.25rem 2.75rem -1.25rem rgba(10, 27, 54, 0.3);
}

.home-product-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--blue-100);
  border-bottom: 1px solid var(--border-soft);
}

.home-product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-product-card:hover .home-product-image img {
  transform: scale(1.05);
}

.home-product-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.9rem;
  z-index: 1;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--border-soft);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 3px rgba(10, 27, 54, 0.12);
  color: var(--brand-blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem 1.35rem 1.5rem;
}

.home-product-body h3 {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.3;
}

.home-product-body p {
  flex: 1;
  margin: 0 0 1.1rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.home-product-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  color: var(--brand-blue);
  font-size: 0.88rem;
  font-weight: 700;
}

.home-product-link span {
  color: var(--brand-cyan);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.home-product-link:hover {
  color: var(--brand-accent-dark);
}

.home-product-link:hover span {
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .home-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .home-products-grid {
    grid-template-columns: 1fr;
  }
  
  .home-products-head {
    margin-bottom: 1.75rem;
  }
}

.product-card,
.stack-card {
  border-radius: 1.5rem;
  background: #FFF;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card {
  border: 1px solid #DEE2E6;
  padding: 1.5rem;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
  transform: translateY(-2px);
}

.rental-section {
  padding: 2.5rem 0 3.5rem;
  scroll-margin-top: 7rem;
}

.rental-shell {
  border: 1px solid var(--border-soft);
  border-radius: 1.75rem;
  background: linear-gradient(135deg, var(--bg-soft) 0%, #ffffff 48%, #fff8f2 100%);
  box-shadow: 0 1.125rem 2.625rem rgba(17, 67, 163, 0.08);
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.rental-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.rental-title {
  color: var(--brand-blue);
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.rental-lead {
  max-width: 43rem;
  color: #64748B;
  font-size: 1.06rem;
  line-height: 1.75;
  margin-bottom: 1.35rem;
}

.rental-points {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.rental-point {
  display: grid;
  grid-template-columns: 2.375rem 1fr;
  gap: 0.85rem;
  align-items: start;
}

.rental-point b {
  display: block;
  color: #172033;
  font-size: 0.98rem;
  line-height: 1.35;
}

.rental-point span:not(.rental-point-icon) {
  display: block;
  color: #64748B;
  font-size: 0.92rem;
  line-height: 1.65;
}

.rental-point-icon {
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-bright));
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 0.5rem 1rem rgba(17, 67, 163, 0.16);
}

.rental-point-icon-red {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-accent-dark));
  box-shadow: 0 0.5rem 1rem rgba(240, 138, 60, 0.24);
}

.rental-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.rental-model-panel {
  display: grid;
  gap: 1rem;
}

.rental-model,
.rental-model-small {
  border: 1px solid #E6E8F2;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0.75rem 1.75rem rgba(17, 67, 163, 0.07);
  color: inherit;
  text-decoration: none;
}

.rental-model:hover,
.rental-model-small:hover {
  box-shadow: 0 1rem 2rem rgba(17, 67, 163, 0.11);
  color: inherit;
  transform: translateY(-1px);
}

.rental-model {
  min-height: 15rem;
  border-radius: 1.5rem;
  padding: 1.35rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.8fr);
  gap: 1rem;
  align-items: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.rental-model-featured {
  background: linear-gradient(135deg, #FFFFFF 0%, #F3F7FF 100%);
}

.rental-model-tag {
  display: inline-flex;
  color: var(--brand-red);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.65rem;
}

.rental-model h3,
.rental-model-small h3 {
  color: var(--brand-blue);
  margin-bottom: 0.4rem;
}

.rental-model h3 {
  font-size: 1.35rem;
}

.rental-model p,
.rental-model-small p {
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 0;
}

.rental-model img {
  width: 100%;
  max-height: 12rem;
  object-fit: contain;
  filter: drop-shadow(0 1rem 1.25rem rgba(17, 67, 163, 0.12));
}

.rental-model-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.rental-model-small {
  min-height: 8.5rem;
  border-radius: 1.25rem;
  padding: 0.85rem;
  display: grid;
  grid-template-columns: 5.25rem 1fr;
  gap: 0.8rem;
  align-items: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.rental-model-small img {
  width: 5.25rem;
  height: 5.25rem;
  object-fit: contain;
}

.rental-model-small h3 {
  font-size: 1rem;
}

.rental-model-small p {
  font-size: 0.82rem;
}

.guided-finder-section {
  padding: 0.5rem 0 3.5rem;
}

.printer-finder-page .guided-finder-section {
  padding-top: clamp(1.5rem, 4vw, 3rem);
}

.printer-finder-breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 1rem;
  color: #718097;
  font-size: 0.8125rem;
}

.printer-finder-breadcrumb a {
  color: var(--brand-blue);
  font-weight: 700;
}

.printer-finder-page-head {
  margin: 0 0 1.25rem;
}

.printer-finder-page-head h1 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.finder-category-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

.finder-category-option {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 7rem;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.15rem;
  overflow: hidden;
  border: 1px solid #DBE4EF;
  border-radius: 0.875rem;
  background: #FFF;
  color: var(--navy-900);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 0.75rem 2rem -1.5rem rgba(10, 27, 54, 0.38);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.finder-category-option::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--brand-blue);
  font-size: 1.15rem;
  transform: translateY(-50%);
}

.finder-category-option:hover, .finder-category-option:focus-visible {
  border-color: var(--brand-blue);
  color: var(--navy-900);
  outline: none;
  box-shadow: 0 1rem 2.25rem -1.35rem rgba(10, 74, 148, 0.35);
  transform: translateY(-2px);
}

.finder-category-option strong {
  padding-right: 2rem;
  font-size: 1rem;
  line-height: 1.25;
}

.finder-category-option small {
  max-width: 15rem;
  margin-top: 0.3rem;
  padding-right: 2rem;
  color: #6D7C91;
  font-size: 0.75rem;
  line-height: 1.45;
}

.finder-category-option.is-active {
  border-color: var(--brand-red);
  background: linear-gradient(135deg, #FFF8F2, #FFF);
  box-shadow: inset 0.25rem 0 0 var(--brand-red), 0 1rem 2.25rem -1.5rem rgba(243, 139, 51, 0.42);
}

.finder-category-option.is-active::after {
  color: var(--brand-red);
}

.finder-mode-panel[hidden] {
  display: none;
}

.finder-mode-panel.is-active {
  animation: finder-stage-in 0.22s ease both;
}

.finder {
  position: relative;
  overflow: hidden;
  border-radius: 1.375rem;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: #FFF;
  box-shadow: 0 1.875rem 3.75rem -1.25rem rgba(10, 27, 54, 0.35);
}

.finder .grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(91, 232, 218, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(91, 232, 218, 0.06) 1px, transparent 1px);
  background-size: 1.875rem 1.875rem;
  -webkit-mask-image: radial-gradient(100% 120% at 0% 0%, #000, transparent 70%);
  mask-image: radial-gradient(100% 120% at 0% 0%, #000, transparent 70%);
}

.finder-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.35fr);
  gap: 2.5rem;
  align-items: start;
  padding: 2.75rem 2.875rem;
}

.finder-inner-single {
  grid-template-columns: minmax(0, 1fr);
}

.finder .eyebrow {
  color: var(--brand-cyan-bright);
}

.finder .eyebrow::before {
  background: var(--brand-cyan-bright);
}

.finder h2 {
  margin: 0.875rem 0 0.75rem;
  color: #FFF;
  font-size: clamp(1.75rem, 2.8vw, 2.375rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.finder h1 {
  margin: 0.875rem 0 0.75rem;
  color: #FFF;
  font-size: clamp(1.75rem, 2.8vw, 2.375rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.finder-copy > p {
  margin: 0;
  color: #AEBFD6;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.finder-teaser-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 2.875rem;
}

.finder-teaser .finder-copy {
  max-width: 34rem;
}

.finder-teaser-preview {
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.055);
}

.finder-teaser-step {
  margin-bottom: 0.85rem;
  color: var(--brand-cyan-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finder-teaser-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.finder-teaser-chips button {
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #DCE8F7;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.finder-teaser-chips button:hover, .finder-teaser-chips button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 138, 60, 0.75);
  outline: none;
}

.finder-teaser-chips button.is-selected {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: #FFF;
  box-shadow: 0 0.4rem 1rem rgba(240, 138, 60, 0.22);
}

.finder-teaser-upnext {
  margin: 1rem 0 0.9rem;
  color: #B8C7DA;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
}

.finder-teaser .finder-cta {
  display: flex;
  width: 100%;
  justify-content: center;
}

.finder-summary {
  display: grid;
  gap: 0;
  margin-top: 1.625rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.035);
}

.finder-summary > div {
  display: grid;
  grid-template-columns: minmax(5rem, 0.72fr) 1.28fr;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
}

.finder-summary > div:last-child {
  border-bottom: 0;
}

.finder-summary span {
  color: #8196B3;
}

.finder-summary strong {
  color: #E5EEF9;
  font-weight: 600;
}

.finder-wizard {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
}

.finder-progress {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.finder-progress span {
  position: relative;
  display: flex;
  height: 1.625rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #7F93AD;
  font-size: 0.6875rem;
  font-weight: 800;
}

.finder-progress span.is-current {
  background: var(--brand-red);
  color: #FFF;
}

.finder-progress span.is-complete {
  background: rgba(91, 232, 218, 0.18);
  color: var(--brand-cyan-bright);
}

.finder-progress-three {
  grid-template-columns: repeat(3, 1fr);
}

.finder-stage {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.finder-stage[hidden] {
  display: none;
}

.finder-stage.is-active {
  animation: finder-stage-in 0.22s ease both;
}

@keyframes finder-stage-in {
  from {
    opacity: 0;
    transform: translateY(0.375rem);
  }
  
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.finder-step {
  margin-bottom: 0.5rem;
  color: var(--brand-cyan-bright);
  font-size: 0.71875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finder-stage legend {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  color: #FFF;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
}

.finder-help {
  margin: 0.45rem 0 1rem;
  color: #9EB0C8;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.finder-panel-title {
  margin: 0;
  color: #FFF;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
}

.event-badge-selection-group + .event-badge-selection-group {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.finder-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}

.finder-option {
  display: flex;
  min-height: 4.375rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.75rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: #FFF;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.finder-option strong {
  color: #EEF5FF;
  font-size: 0.84375rem;
  font-weight: 700;
  line-height: 1.25;
}

.finder-option span {
  color: #93A8C4;
  font-size: 0.7rem;
  line-height: 1.35;
}

.finder-option:hover, .finder-option:focus-visible {
  transform: translateY(-1px);
  border-color: var(--brand-cyan-bright);
  outline: none;
}

.finder-option.is-selected {
  border-color: var(--brand-cyan-bright);
  background: rgba(91, 232, 218, 0.16);
  box-shadow: inset 0 0 0 1px rgba(91, 232, 218, 0.18);
}

.finder-option.is-selected strong {
  color: var(--brand-cyan-bright);
}

.finder-option-link {
  position: relative;
  padding-right: 2.5rem;
  text-decoration: none;
}

.finder-option-link::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--brand-cyan-bright);
  font-size: 1rem;
  transform: translateY(-50%);
}

.finder-option-link:hover, .finder-option-link:focus-visible {
  color: #FFF;
}

.finder-brand-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.finder-brand-options .finder-option {
  min-height: 3.25rem;
  align-items: center;
  padding: 0.625rem;
  text-align: center;
}

.finder-brand-options .finder-option:first-child {
  grid-column: span 3;
  align-items: flex-start;
  text-align: left;
}

.finder-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.finder-back,
.finder-reset {
  padding: 0.625rem 0;
  border: 0;
  background: transparent;
  color: #CDD9EA;
  font: 600 0.8125rem/1.2 var(--font);
  cursor: pointer;
}

.finder-back:hover, .finder-back:focus-visible, .finder-reset:hover, .finder-reset:focus-visible {
  color: #FFF;
}

.finder-back:disabled {
  color: #61758F;
  cursor: default;
}

.finder .finder-cta {
  width: auto;
  min-width: 10.5rem;
  margin: 0;
  border: 1px solid var(--brand-red);
  background: var(--brand-red);
  color: #FFF;
  font-weight: 700;
}

.finder .finder-cta:hover,
.finder .finder-cta:focus {
  border-color: var(--brand-accent-dark);
  background: var(--brand-accent-dark);
  color: #FFF;
}

.finder .finder-cta:disabled,
.finder .finder-cta.is-disabled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  color: #74869F;
  box-shadow: none;
  pointer-events: none;
}

.finder-results {
  display: grid;
  gap: 0.625rem;
}

.finder-result-card {
  position: relative;
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) 1.5rem;
  gap: 0.875rem;
  align-items: center;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.055);
  color: #FFF;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.finder-result-card:hover, .finder-result-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(91, 232, 218, 0.7);
  outline: none;
}

.finder-result-card.is-selected {
  border-color: var(--brand-cyan-bright);
  background: rgba(91, 232, 218, 0.13);
}

.finder-result-rank {
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  color: var(--brand-cyan-bright);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.finder-result-image {
  display: flex;
  width: 5rem;
  height: 4.75rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.625rem;
  background: #FFF;
}

.finder-result-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.finder-result-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.finder-result-brand {
  margin-bottom: 0.15rem;
  color: var(--brand-cyan-bright);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finder-result-content > strong {
  padding-right: 4.25rem;
  color: #FFF;
  font-size: 0.9375rem;
  line-height: 1.25;
}

.finder-result-description {
  margin-top: 0.22rem;
  color: #9EB0C8;
  font-size: 0.6875rem;
  line-height: 1.4;
}

.finder-result-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.42rem;
}

.finder-result-reasons small {
  padding: 0.2rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #CDD9EA;
  font-size: 0.58rem;
  font-weight: 600;
}

.finder-result-check {
  display: flex;
  width: 1.4rem;
  height: 1.4rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: transparent;
  font-size: 0.75rem;
}

.finder-result-card.is-selected .finder-result-check {
  border-color: var(--brand-cyan-bright);
  background: var(--brand-cyan-bright);
  color: var(--navy-900);
}

.event-printer-recommendations {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.event-printer-recommendations-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 0.875rem;
}

.event-printer-recommendations-heading h3 {
  margin: 0.15rem 0 0;
  color: #FFF;
  font-size: 1.25rem;
}

.event-printer-recommendations-heading p {
  max-width: 24rem;
  margin: 0;
  color: #9EB0C8;
  font-size: 0.75rem;
  line-height: 1.45;
  text-align: right;
}

.event-printer-card {
  text-decoration: none;
}

.event-printer-card:hover, .event-printer-card:focus-visible {
  color: #FFF;
  text-decoration: none;
}

.event-result-arrow {
  display: flex;
  width: 1.4rem;
  height: 1.4rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(91, 232, 218, 0.45);
  border-radius: 999px;
  color: var(--brand-cyan-bright);
  font-size: 0.8rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.event-printer-card:hover .event-result-arrow, .event-printer-card:focus-visible .event-result-arrow {
  background: var(--brand-cyan-bright);
  color: var(--navy-900);
}

.finder-result-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 860px) {
  .finder-category-selector {
    grid-template-columns: 1fr;
  }
  
  .finder-category-option {
    min-height: 5.75rem;
  }
  
  .finder-inner {
    grid-template-columns: 1fr;
    gap: 1.625rem;
    padding: 2.125rem;
  }
  
  .finder-teaser-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.125rem;
  }
  
  .finder-teaser .finder-copy {
    max-width: none;
  }
  
  .finder-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .finder-summary > div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
  
  .finder-summary > div:nth-last-child(2) {
    border-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .guided-finder-section {
    padding-bottom: 2.5rem;
  }
  
  .finder-inner {
    padding: 1.5rem 1rem;
  }
  
  .finder-wizard {
    padding: 1rem;
  }
  
  .finder-summary,
  .finder-options,
  .finder-brand-options {
    grid-template-columns: 1fr;
  }
  
  .finder-summary > div:nth-last-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .finder-brand-options .finder-option:first-child {
    grid-column: auto;
  }
  
  .event-printer-recommendations-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }
  
  .event-printer-recommendations-heading p {
    text-align: left;
  }
  
  .finder-result-card {
    grid-template-columns: 4rem minmax(0, 1fr);
  }
  
  .finder-result-image {
    width: 4rem;
    height: 4rem;
  }
  
  .finder-result-content > strong {
    padding-right: 0;
  }
  
  .finder-result-check {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
  }
  
  .finder-result-actions,
  .finder-nav {
    align-items: stretch;
  }
  
  .finder-result-actions {
    flex-direction: column;
  }
  
  .finder .finder-cta {
    width: 100%;
  }
  
  .finder-teaser-inner {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.25rem;
  }
  
  .finder-teaser-preview {
    padding: 1.1rem;
  }
}

.industry-solutions-section {
  padding: clamp(4rem, 8vw, 6.75rem) 0 1.5rem;
  background: #FFF;
}

.industry-solutions-head {
  /*  max-width: 48rem;*/
  margin-bottom: 2.25rem;
}

.industry-solutions-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.industry-solutions-eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--brand-cyan);
}

.industry-solutions-head h2 {
  margin: 0.85rem 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.industry-solutions-head p {
  /*  max-width: 46rem;*/
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.industry-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.industry-solution-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  background: #FFF;
  box-shadow: 0 1px 3px rgba(10, 27, 54, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.25rem 2.75rem -1.25rem rgba(10, 27, 54, 0.3);
}

.industry-solution-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--navy-800);
}

.industry-solution-photo::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 21, 43, 0.1), transparent 32%, rgba(8, 21, 43, 0.34));
}

.industry-solution-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.industry-solution-card:hover .industry-solution-photo img {
  transform: scale(1.05);
}

.industry-solution-label {
  position: absolute;
  top: 0.875rem;
  left: 1rem;
  z-index: 2;
  padding: 0.375rem 0.6875rem;
  border-radius: 0.5rem;
  background: rgba(8, 21, 43, 0.55);
  color: #FFF;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.industry-solution-icon {
  position: absolute;
  right: 1rem;
  bottom: 0.875rem;
  z-index: 2;
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.6875rem;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}

.industry-solution-icon svg {
  width: 1.3125rem;
  height: 1.3125rem;
  color: #FFF;
}

.industry-solution-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem 1.5rem 1.625rem;
}

.industry-solution-body h3 {
  margin: 0 0 0.5625rem;
  color: var(--ink);
  font-size: 1.2rem;
}

.industry-solution-body p {
  flex: 1;
  margin: 0 0 1.125rem;
  color: var(--text-soft);
  font-size: 0.90625rem;
  line-height: 1.6;
}

.industry-solution-body a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.45rem;
  color: var(--brand-blue);
  font-size: 0.92rem;
  font-weight: 600;
}

.industry-solution-body a span {
  color: var(--brand-cyan);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.industry-solution-body a:hover {
  color: var(--brand-accent-dark);
}

.industry-solution-body a:hover span {
  transform: translateX(3px);
}

@media (max-width: 860px) {
  .industry-solutions-grid {
    grid-template-columns: 1fr;
  }
}

.product-title,
.stack-title,
.cta-title {
  color: var(--brand-blue);
}

.stack-wrap {
  border: 1px solid var(--border-soft);
  border-radius: 1.75rem;
  background: linear-gradient(135deg, #F8F9FF 0%, #FFF8F2 100%);
  box-shadow: 0 1.125rem 2.625rem rgba(17, 67, 163, 0.08);
  padding: 1.75rem;
}

.stack-card {
  border: 1px solid #E6E8F2;
  box-shadow: none;
  outline: 0;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 1.5rem;
  padding: 1.375rem 1.125rem 1.25rem;
  min-height: 196px;
  height: 100%;
  position: relative;
}

.stack-number {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.stack-arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  color: #FFF;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-bright));
  box-shadow: 0 0.25rem 0.75rem rgba(17, 67, 163, 0.22);
  font-weight: 700;
  z-index: 3;
}

.cta-section {
  padding: 6rem 0;
  text-align: center;
}

.site-footer {
  background: var(--navy-900);
  color: #9FB3CF;
}

.site-footer-legacy {
  display: none;
}

.footer-links-stage {
  padding: 5.9rem 0 0;
}

.footer-nav-block {
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.footer-nav-block + .footer-nav-block {
  margin-top: 1rem;
}

.footer-nav-block-primary {
  background: transparent;
}

.footer-links-grid {
  display: grid;
  gap: 1.35rem 1.65rem;
}

.footer-links-grid-primary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-column-title {
  margin: 0 0 0.8rem;
  color: #FFF;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

.footer-link-group + .footer-link-group {
  margin-top: 0.95rem;
}

.footer-link-group-company {
  margin-top: 0 !important;
  padding-top: 3.8rem;
}

.footer-column-company-side {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(203, 203, 203, 0.41);
  border-radius: 0.3125rem;
  background: transparent;
  color: #fff;
  font-size: 1.875rem;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: transparent;
  border-color: var(--brand-red);
  color: var(--brand-red);
  text-decoration: none;
  transform: translateY(-2px);
}

.footer-link-group-title {
  margin-bottom: 0.45rem;
  color: #7F93B3;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-link-list {
  display: grid;
  gap: 0.35rem;
}

.footer-link {
  color: #9FB3CF;
  font-size: 0.88rem;
  line-height: 1.35;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  color: #FFF;
  transform: translateX(2px);
}

.footer-brand-strip {
  margin-top: 1.25rem;
  padding: 1.75rem 0;
  background: var(--navy-800);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-strip,
.footer-brand-strip a {
  color: #9FB3CF;
}

.footer-brand-strip a:hover {
  color: #FFF;
}

.footer-logos {
  margin-bottom: 0.85rem;
}

.idesco-logo {
  height: 36px;
  width: auto;
}

.site-header .idesco-logo {
  height: 64px;
}

.avery-logo-small {
  height: 16px;
  width: auto;
}

.avery-logo-large {
  height: 32px;
  width: auto;
}

.footer-brand-strip .idesco-logo {
  height: 18px;
}

.footer-brand-strip .avery-logo-large {
  height: 16px;
}

.footer-brand-divider {
  height: 16px;
}

.footer-legal {
  margin: 0 auto;
  max-width: 78ch;
  color: #64748B;
  font-size: 0.82rem;
  line-height: 1.7;
}

@media (max-width: 1199.98px) {
  .footer-links-grid-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .offcanvas.offcanvas-start#mobileMenu {
    top: 3rem;
  }
  
  .footer-links-stage {
    padding-top: 2.6rem;
  }
  
  .footer-nav-block {
    padding: 0;
  }
  
  .footer-links-grid-primary {
    grid-template-columns: 1fr;
  }
  
  .footer-link-group-company {
    margin-top: 0 !important;
    padding-top: 1.2rem;
  }

  .footer-column-company-side {
    min-height: 0;
  }

  .footer-social-links {
    justify-content: flex-start;
    margin-top: 1.5rem;
    padding-top: 0;
  }
  
  .footer-brand-strip {
    padding: 1.5rem 0;
  }
  
  .footer-legal {
    font-size: 0.78rem;
  }
}

@media (min-width: 992px) {
  .stack-arrow {
    display: inline-flex;
  }
}

@media (max-width: 991.98px) {
  .home-solution-stack {
    display: none;
  }
  
  .rental-grid {
    grid-template-columns: 1fr;
  }
  
  .rental-model-panel {
    max-width: 42rem;
  }
}

@media (max-width: 767.98px) {
  .rental-section {
    padding: 1.75rem 0 2.75rem;
  }
  
  .rental-shell {
    border-radius: 1.25rem;
  }
  
  .rental-model {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .rental-model img {
    max-height: 10rem;
  }
  
  .rental-model-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .rental-actions .btn {
    width: 100%;
  }
  
  .rental-model-small {
    grid-template-columns: 4.5rem 1fr;
  }
  
  .rental-model-small img {
    width: 4.5rem;
    height: 4.5rem;
  }
}

@media (max-width: 1199.98px) {
  .mega-menu {
    width: 760px;
  }
  
  .solutions .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .hero {
    padding: 2.75rem 0 1rem;
  }
  
  .hero + .section-space {
    padding-top: 0.25rem;
  }
  
  .hero-shell {
    padding: 1.5rem;
  }
  
  .hero-grid,
  .hero-points {
    grid-template-columns: 1fr;
  }
  
  .hero-visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
    margin-top: 1.25rem;
    background-image: url('../img/idesco/home/hero-mobile.jpg');
    background-position: center;
  }
  
  .hero-collage {
    position: relative;
    min-height: 31rem;
  }
  
  .hero-piece-art {
    top: 2.6rem;
    left: 0.25rem;
    width: 28%;
  }
  
  .hero-piece-f1 {
    right: 0.5rem;
    top: 5.25rem;
    width: 29%;
  }
  
  .hero-piece-oversized {
    left: 4%;
    bottom: 4.25rem;
    width: 34%;
  }
  
  .hero-piece-person {
    left: 18%;
    width: 40%;
  }
  
  .hero-piece-printer {
    right: -0.25rem;
    bottom: 0;
    width: 72%;
    height: 20rem;
  }
  
  .hero-chip {
    padding: 0.6rem 0.85rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
  
  .hero-chip-top {
    right: 3%;
    top: 0.75rem;
  }
  
  .hero-chip-bottom {
    left: 10%;
    bottom: 0.5rem;
  }
  
  .logo-shell {
    width: 100%;
    justify-content: center;
  }
  
  .oversized-grid {
    grid-template-columns: 1fr;
  }
  
  .oversized-card {
    position: relative;
    right: auto;
    top: auto;
    margin: 0.625rem auto 0;
    transform: rotate(0);
  }
  
  .oversized-shadow {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  
  .partner-ecosystem-head {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .partner-graveyard {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .resources-section--industry {
    padding: clamp(4rem, 8vw, 6.75rem) 0 1.5rem;
    background: #FFF;
  }
  
  .industry-solutions-head h2 a {
    color: inherit;
    text-decoration: none;
  }
  
  .industry-solutions-head h2 a:hover {
    color: var(--brand-accent-dark);
  }
}

@media (max-width: 575.98px) {
  .partner-graveyard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .solutions .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .hero-visual {
    min-height: 0;
  }
  
  .hero-collage {
    min-height: 27rem;
  }
  
  .hero-piece-art {
    width: 32%;
  }
  
  .hero-piece-f1 {
    width: 31%;
  }
  
  .hero-piece-oversized {
    width: 38%;
    bottom: 3.75rem;
  }
  
  .hero-piece-person {
    left: 16%;
    width: 43%;
  }
  
  .hero-piece-printer {
    right: -0.75rem;
    width: 78%;
    height: 16.75rem;
  }
  
  .hero-chip-top {
    display: none;
  }
  
  .hero-chip-bottom {
    left: 7%;
    max-width: 12rem;
    line-height: 1.35;
  }
}

.copy-relaxed {
  line-height: 1.8;
}

.stack-main-title {
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.stack-copy {
  max-width: 72ch;
  line-height: 1.8;
}

.eyebrow-red {
  color: var(--brand-red);
}

.stack-number-blue {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-bright));
}

.stack-number-red {
  background: linear-gradient(135deg, #F08A3C, #D9742A);
}

.oversized-section {
  padding: 3rem 0 3rem;
}

.oversized-shell {
  background: linear-gradient(135deg, #173C8F, #2F6BE3);
  color: #FFF;
  border-radius: 1.75rem;
  padding: 2rem 2.25rem;
  box-shadow: 0 1.25rem 2.5rem rgba(23, 60, 143, 0.25);
}

.oversized-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 1.25rem;
}

.oversized-eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.oversized-title {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.625rem;
}

.oversized-copy {
  max-width: 32.5rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 0.875rem;
}

.oversized-cta {
  background: #FFF;
  color: #173C8F;
}

.oversized-cta:hover {
  color: #173C8F;
  background: #FFF;
}

.oversized-mock {
  position: relative;
  min-height: 12.5rem;
}

.oversized-card {
  position: absolute;
  right: 1.25rem;
  top: 0.625rem;
  width: 12.5rem;
  height: 16.25rem;
  border-radius: 1.125rem;
  background: linear-gradient(180deg, #FFFFFF, #EEF3FF);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.2);
  transform: rotate(6deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.oversized-card-label {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #173C8F;
  margin-bottom: 0.375rem;
}

.oversized-photo {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #DBE6FF, #FFFFFF);
  margin-bottom: 0.875rem;
}

.oversized-card-meta {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0.625rem;
}

.oversized-card-name {
  color: #172033;
}

.oversized-card-role {
  font-size: 0.75rem;
  color: #667085;
}

.oversized-card-accent {
  width: 100%;
  height: 0.375rem;
  background: #E83F6F;
  border-radius: 0.25rem;
  margin-bottom: 0.625rem;
}

.oversized-card-lines {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: auto;
}

.oversized-card-lines span {
  height: 0.5rem;
  border-radius: 0.375rem;
  background: #D5DEF5;
}

.oversized-card-chip {
  width: 2.625rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  background: linear-gradient(135deg, #FFD27A, #FFB347);
}

.oversized-shadow {
  position: absolute;
  right: 1.125rem;
  bottom: -0.375rem;
  width: 10rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  filter: blur(10px);
}

.home-services-support {
  padding: 1.5rem 0;
  background: #FFF;
}

.home-services-head {
  /*  max-width: 47.5rem; */
  margin-bottom: 3rem;
}

.home-services-eyebrow {
  margin-bottom: 0.875rem;
  color: var(--brand-blue);
}

.home-services-head h2 {
  margin: 0 0 1rem;
  color: var(--navy-800);
  font-size: clamp(2rem, 3.25vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.home-services-head > p {
  /*  max-width: 62ch;*/
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.65;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.home-service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.75rem 1.5rem 1.625rem;
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  background: #FFF;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-service-card:hover {
  transform: translateY(-0.25rem);
  border-color: #D6E1F2;
  box-shadow: 0 1.25rem 2.5rem -1.5rem rgba(10, 27, 54, 0.34);
}

.home-service-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  border-radius: 0.75rem;
  background: var(--navy-800);
  color: var(--brand-cyan-bright);
}

.home-service-icon svg {
  width: 1.4375rem;
  height: 1.4375rem;
}

.home-service-card h3 {
  margin: 0 0 0.5625rem;
  color: var(--navy-800);
  font-size: 1.09375rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-service-card p {
  flex: 1 1 auto;
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 0.875rem;
  line-height: 1.6;
}

.home-service-card a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.4375rem;
  color: var(--brand-blue);
  font-size: 0.9375rem;
  font-weight: 600;
}

.home-service-card a span {
  transition: transform 0.2s ease;
}

.home-service-card a:hover span, .home-service-card a:focus-visible span {
  transform: translateX(0.1875rem);
}

.partner-ecosystem {
  padding: 1.5rem 0 3rem;
}

@media (max-width: 991.98px) {
  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .home-services-support {
    padding: 1rem 0 1.5rem;
  }
  
  .home-services-head {
    margin-bottom: 2rem;
  }
  
  .home-services-grid {
    grid-template-columns: 1fr;
  }
}

.partner-ecosystem-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.partner-view-link {
  color: #6B7BB5;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.partner-view-link:hover {
  color: var(--brand-blue);
}

.partner-graveyard {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.75rem 1.25rem;
}

.partner-item {
  text-align: center;
  padding: 0.5rem 0.25rem;
}

.partner-logo-wrap {
  height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
}

.partner-logo {
  max-width: 10.25rem;
  max-height: 4rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-name {
  color: var(--brand-blue);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
}

.partner-site {
  margin-top: 0.25rem;
  color: #64748B;
  font-size: 0.8rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.resources-section {
  padding: 3rem 0 3rem;
}

.resources-head {
  margin-bottom: 1.75rem;
}

.resources-head h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.resources-copy {
  max-width: 95ch;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.articles-grid {
  margin-bottom: 2rem;
}

.resource-card {
  background: #FFF;
  border: 1px solid #DFE5F1;
  border-radius: 1.375rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2.125rem rgba(23, 60, 143, 0.08);
}

.resource-image-link {
  display: block;
  aspect-ratio: 1.4 / 1;
  background: linear-gradient(135deg, #EEF3FF, #F9FBFF);
  overflow: hidden;
}

.resource-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.06) translateY(-9%);
  transform-origin: center top;
}

.resource-body {
  padding: 1.25rem;
}

.resource-body h3 {
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 0.625rem;
  color: var(--brand-blue);
}

.resource-body p {
  color: #5E6D86;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #F4F8FF;
  border: 1px solid #C9D8F4;
  color: var(--brand-blue);
  transition: 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.download-btn:hover {
  background: #EEF4FF;
  border-color: #B9CAED;
  box-shadow: 0 8px 18px rgba(16, 42, 100, 0.08);
  color: var(--brand-blue);
}

@media (max-width: 767.98px) {
  .oversized-card {
    right: -3.75rem;
  }
  
  .partner-ecosystem-head {
    display: block;
    margin-bottom: 1.75rem;
  }
  
  .partner-ecosystem-head > div {
    margin-bottom: 0.5rem;
  }
  
  .partner-ecosystem-head .eyebrow,
  .partner-ecosystem-head .stack-main-title,
  .partner-view-link {
    text-align: left;
  }
  
  .partner-graveyard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 0.75rem;
  }
  
  .partner-item {
    padding: 0.25rem 0.15rem;
  }
  
  .partner-logo-wrap {
    height: 3.5rem;
    margin-bottom: 0.55rem;
  }
  
  .partner-logo {
    max-width: 8rem;
    max-height: 2.8rem;
  }
  
  .partner-name {
    font-size: 0.9rem;
  }
  
  .partner-site {
    display: none;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

.divider-vertical-short {
  height: 24px;
}

/* CMS integration only: keep visual rules above aligned with the approved mock-up. */
.has-alert-msg {
  padding-top: var(--alert-msg-height, 0);
}

.has-alert-msg .site-header {
  top: var(--alert-msg-height, 0);
}

.alert-msg {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1051;
  width: 100%;
  margin-bottom: 0;
  border-radius: 0;
  text-align: center;
  margin-top: 0;
  border: 0;
  background: #a70d0d;
  color: #FFF;
  font-size: 14px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 5px 40px;
}

.after_logout_return svg {
  width: 18px;
  height: 18px;
}

body:not(.body_index):not(.body_index-new) .container.px-xl-5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.resources-head h2 a,
.resources-head h1 a,
.resource-body h3 a {
  color: inherit;
  text-decoration: none;
}

.resources-head h2 a:hover,
.resources-head h1 a:hover,
.resource-body h3 a:hover {
  color: var(--brand-red);
}

.resources-empty {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.resource-body > .flex-grow-1,
.resource-body .resource-description {
  color: #5E6D86;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.article-breadcrumb {
  padding-top: 1.25rem;
}

.article-breadcrumb .breadcrumb {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.article-breadcrumb .breadcrumb a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.article-breadcrumb .breadcrumb a:hover {
  color: var(--brand-red);
}

.article-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--brand-blue-soft);
}

.article-breadcrumb .breadcrumb-item.active,
.article-breadcrumb .breadcrumb-item:last-child {
  color: var(--text-soft);
}

.page-hero {
  margin: 0 0 1.75rem;
  padding: 2rem 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.page-hero h1 {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.08;
}

.page-hero .cat_desc {
  max-width: 95ch;
  margin-top: 1rem;
  color: #64748B;
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-hero .file {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  margin-top: 1rem;
  border: 1px solid #1143A3;
  border-radius: 0.9rem;
  background: #1143A3;
  color: #FFF;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
}

.page-hero .file:hover {
  border-color: #0F347D;
  background: #0F347D;
  color: #FFF;
}

.page_navigator .page-link {
  color: var(--brand-blue);
  background-color: #FFF;
  border-color: var(--border-soft);
}

.page_navigator .page-link:hover,
.page_navigator .page-link:focus {
  border-color: #C7D7F6;
  background: #EEF4FF;
  color: #0D2F7A;
}

.page_navigator .active .page-link,
.page_navigator .active .page-link:hover,
.page_navigator .active .page-link:focus {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: #FFF;
}

.ask-expert-modal .modal-content {
  display: flex;
  flex-direction: column;
  border: 1px solid #DFE5F1;
  border-radius: 1.375rem;
  background: #FFF;
  box-shadow: 0 1.5rem 4rem rgba(23, 60, 143, 0.18);
  max-height: calc(100vh - 2rem);
  overflow: hidden;
}

.ask-expert-form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  max-height: inherit;
  margin: 0;
}

.ask-expert-header,
.ask-expert-body,
.ask-expert-footer {
  padding: 1rem;
}

.ask-expert-header {
  align-items: flex-start;
  flex: 0 0 auto;
  background: #FFF;
}

.ask-expert-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  background: #FFF;
}

.ask-expert-footer {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
  background: #FFF;
}

.ask-expert-footer .btn + .btn {
  margin-left: 0;
}

.ask-expert-header .modal-title {
  color: var(--brand-blue);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.ask-expert-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 0.85rem;
}

.ask-expert-field-full {
  grid-column: 1 / -1;
}

.ask-expert-field.floating-label {
  display: flex;
  flex-direction: column-reverse;
}

.ask-expert-field label {
  display: block;
  margin-bottom: 0.25rem;
  color: #14213D;
  font-size: 0.85rem;
  text-align: left;
}

.ask-expert-field.floating-label label {
  height: 1rem;
  margin: 0 0 0.2rem;
  opacity: 1;
  overflow: hidden;
  transition: all 0.2s ease;
}

.ask-expert-field.floating-label > input:placeholder-shown + label,
.ask-expert-field.floating-label > textarea:placeholder-shown + label {
  height: 0;
  margin-bottom: 0;
  opacity: 0;
}

.ask-expert-field.floating-label > input:focus + label,
.ask-expert-field.floating-label > textarea:focus + label {
  height: 1rem;
  margin-bottom: 0.2rem;
  opacity: 1;
}

.ask-expert-field .form-control {
  width: 100%;
  min-height: 3rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid #D7E0EF;
  border-radius: 0.75rem;
  color: #14213D;
  box-shadow: none;
}

.ask-expert-field textarea.form-control {
  min-height: 6.75rem;
  resize: vertical;
}

.ask-expert-field .form-control:focus {
  border-color: #1143A3;
  box-shadow: 0 0 0 0.2rem rgba(17, 67, 163, 0.12);
}

.ask-expert-modal .contact-alert {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid #FFD5DE;
  border-radius: 0.9rem;
  background: #FFF4F6;
  color: #9F1239;
  font-weight: 700;
}

.ask-expert-modal .form_err_message,
.ask-expert-modal .form_err_message span {
  display: none;
}

.ask-expert-submit {
  min-width: 7rem;
  min-height: 2.75rem;
  padding: 0.55rem 1.15rem;
  border: 1px solid #1143A3;
  border-radius: 0.75rem;
  background: #1143A3;
  color: #FFF;
}

.ask-expert-submit:hover, .ask-expert-submit:focus-visible {
  border-color: #0F347D;
  background: #0F347D;
  color: #FFF;
}

.ask-expert-close {
  min-height: 2.75rem;
  padding: 0.55rem 1.15rem;
  border-radius: 0.75rem;
}

@media (max-width: 575.98px) {
  .ask-expert-modal .modal-dialog {
    margin: 0.5rem;
  }
  
  .ask-expert-modal .modal-content {
    height: calc(100vh - 1rem);
    max-height: calc(100vh - 1rem);
  }
  
  .ask-expert-form {
    height: 100%;
  }
  
  .ask-expert-fields {
    grid-template-columns: 1fr;
  }
  
  .ask-expert-footer {
    align-items: stretch;
    flex-direction: column;
  }
  
  .ask-expert-close,
  .ask-expert-submit {
    width: 100%;
  }
}

.quote-request-modal .modal-dialog {
  max-width: 34rem;
}

.quote-request-content {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 2rem);
  overflow: hidden;
  border: 1px solid #DFE5F1;
  border-radius: 1.125rem;
  background: #FFF;
  box-shadow: 0 1.35rem 3.5rem rgba(17, 67, 163, 0.18);
}

.quote-request-form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  margin: 0;
}

.quote-request-header {
  align-items: flex-start;
  flex: 0 0 auto;
  padding: 1rem 1.1rem 0.85rem;
  border-bottom: 1px solid #EDF2F8;
  background: linear-gradient(180deg, #FFF, #FBFDFF);
}

.quote-request-eyebrow {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--brand-red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.quote-request-header .modal-title {
  color: var(--brand-blue);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.quote-request-header .modal-title span {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.quote-request-body {
  flex: 1 1 auto;
  min-height: 0;
  max-height: calc(100vh - 12rem);
  overflow-y: auto;
  padding: 1rem 1.1rem 0.85rem;
  background: #FFF;
}

.quote-request-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.quote-field {
  position: relative;
  margin: 0;
}

.quote-field-full {
  grid-column: 1 / -1;
}

.quote-field .form-control,
.quote-field .form-select {
  width: 100%;
  min-height: 3rem;
  padding: 1.14rem 0.85rem 0.42rem;
  border: 1px solid #D7E0EF;
  border-radius: 0.65rem;
  background-color: #FFF;
  color: #14213D;
  font-size: 0.95rem;
  line-height: 1.25;
  box-shadow: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.quote-field .form-select {
  padding-right: 2.25rem;
}

.quote-field textarea.form-control {
  min-height: 5.35rem;
  padding-top: 1.35rem;
  resize: vertical;
}

.quote-field .form-control::placeholder {
  color: transparent;
}

.quote-field label {
  position: absolute;
  top: 0.44rem;
  left: 0.72rem;
  z-index: 2;
  max-width: calc(100% - 1.44rem);
  margin: 0;
  padding: 0 0.18rem;
  overflow: hidden;
  background: #FFF;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quote-field .form-control:focus,
.quote-field .form-select:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 0.18rem rgba(240, 138, 60, 0.11);
}

.quote-field:focus-within label,
.quote-request-modal .madatorystar {
  color: var(--brand-red);
}

.quote-request-modal .contact-alert {
  margin-bottom: 0.85rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #FFD5DE;
  border-radius: 0.75rem;
  background: #FFF4F6;
  color: #9F1239;
  font-weight: 700;
}

.quote-request-modal .form_err_message,
.quote-request-modal .form_err_message span {
  display: none;
}

.quote-request-footer {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem 1rem;
  border-top: 1px solid #EDF2F8;
  background: #FFF;
}

.quote-request-footer .btn + .btn {
  margin-left: 0;
}

.quote-request-close,
.quote-request-submit {
  min-height: 2.55rem;
  padding: 0.48rem 0.95rem;
  border-radius: 0.6rem;
  font-weight: 700;
}

.quote-request-submit {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-red);
  --bs-btn-border-color: var(--brand-red);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #d9742a;
  --bs-btn-hover-border-color: #d9742a;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #c56622;
  --bs-btn-active-border-color: #c56622;
  min-width: 7rem;
  border: 1px solid var(--brand-red);
  background: var(--brand-red);
  color: #FFF;
}

.quote-request-submit:hover,
.quote-request-submit:focus,
.quote-request-submit:active {
  border-color: #D9742A !important;
  background: #D9742A !important;
  color: #FFF !important;
}

@media (max-width: 575.98px) {
  .quote-request-modal .modal-dialog {
    max-width: none;
    margin: 0.5rem;
  }
  
  .quote-request-content {
    max-height: calc(100vh - 1rem);
  }
  
  .quote-request-body {
    max-height: calc(100vh - 11rem);
    padding: 0.9rem;
  }
  
  .quote-request-header,
  .quote-request-footer {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
  }
  
  .quote-request-fields {
    grid-template-columns: 1fr;
  }
  
  .quote-request-close,
  .quote-request-submit {
    width: 100%;
  }
}

.page_navigator .view_all .page-link {
  border-color: rgba(240, 138, 60, 0.18);
  color: var(--brand-red);
  background-color: #FFF;
}

.page_navigator .view_all .page-link:hover,
.page_navigator .view_all .page-link:focus {
  border-color: rgba(240, 138, 60, 0.28);
  background: #FFF8F2;
  color: #C40025;
}

.whitepaper-download-form .form-floating {
  position: relative;
}

.whitepaper-download-form .form-floating > .form-control {
  height: calc(3rem + 2px);
  min-height: calc(3rem + 2px);
  padding: 1.35rem 0.65rem 0.45rem;
  font-size: 0.95rem;
}

.whitepaper-download-form .form-floating > .form-control::placeholder {
  color: transparent;
}

.whitepaper-download-form .form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  max-width: 100%;
  height: 100%;
  padding: 0.78rem 0.65rem;
  color: #5F6F86;
  pointer-events: none;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

.whitepaper-download-form .form-floating > .form-control:focus ~ label,
.whitepaper-download-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
  opacity: 0.75;
  transform: scale(0.82) translateY(-0.48rem) translateX(0.12rem);
}

.whitepaper-download-form .d-grid {
  display: grid;
}

.whitepaper-download-form .btn {
  min-height: 2.55rem;
  font-weight: 700;
}
