@font-face {
  font-family: 'Cerebri Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/Fonts/Cerebri-Sans/CerebriSans-Light.woff2') format('woff2');
}
@font-face {
  font-family: 'Cerebri Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/Fonts/Cerebri-Sans/CerebriSans-Book.woff2') format('woff2');
}
@font-face {
  font-family: 'Cerebri Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/Fonts/Cerebri-Sans/CerebriSans-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Cerebri Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/Fonts/Cerebri-Sans/CerebriSans-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Cerebri Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/Fonts/Cerebri-Sans/CerebriSans-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Cerebri Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/Fonts/Cerebri-Sans/CerebriSans-ExtraBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Cerebri Sans';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/Fonts/Cerebri-Sans/CerebriSans-Heavy.woff2') format('woff2');
}

:root {
  --cb-ink: #07083f;
  --cb-ink-soft: #17236f;
  --cb-primary: #2510f3;
  --cb-primary-2: #5135ff;
  --cb-primary-3: #7958ff;
  --cb-border: #e3e5f5;
  --cb-border-strong: #d6daf4;
  --cb-bg: #f7f7fe;
  --cb-panel: #fbfbff;
  --cb-shadow: 0 18px 44px rgba(18, 16, 104, .08);
  --cb-soft-shadow: 0 10px 28px rgba(18, 16, 104, .045);
  --header-container: min(calc(100% - 156px), 1516px);
  --main-container: min(calc(100% - 238px), 1434px);
  --header-h: 70px;
  /* Bande de navigation unifiée : même hauteur et mêmes gouttières sur toutes
     les topbars (cinématique, corporate, produits). Voir @media 1120px. */
  --cb-topbar-h: 100px;
  --cb-topbar-pad-x: clamp(24px, 3vw, 48px);
  /* Échelle typographique de référence du site — alignée sur deskio.html (Deskio).
     Toute nouvelle page consomme ces tokens (voir docs/reference-typographique-20260715.md). */
  --cb-title-hero: clamp(52px, 4vw, 68px);            /* h1 hero page produit */
  --cb-title-section: clamp(42px, 5.7vw, 76px);       /* h2 tête de section pleine largeur */
  --cb-title-section-side: clamp(38px, 3.35vw, 56px); /* h2 de section en colonne latérale / compacte */
  --cb-lead-section: clamp(20px, 2.2vw, 30px);        /* lead court sous un titre de section */
  --cb-title-cta: 30px;                               /* h2 bandeau CTA / diagnostic */
  --cb-shell: min(calc(100% - 120px), 1520px);        /* largeur utile d'une section desktop */
  /* Système visuel Cloudbizz — source canonique : hero cinématique de l'accueil.
     Les pages consomment ces tokens au lieu de recopier des valeurs locales. */
  --cb-display-font: 'Cerebri Sans', Inter, system-ui, sans-serif;
  --cb-display-weight: 300;
  --cb-display-tracking: -0.052em;
  --cb-display-leading: 1.06;
  --cb-display-ink-dark: #cbd7eb;
  --cb-eyebrow-size: 16px;
  --cb-eyebrow-weight: 500;
  --cb-eyebrow-tracking: .08em;
  --cb-eyebrow-ink-dark: rgba(211, 221, 237, .88);
  --cb-lead-weight: 300;
  --cb-lead-tracking: -.018em;
  --cb-lead-ink-dark: rgba(203, 215, 234, .78);
  --cb-accent-gradient: linear-gradient(90deg, #567eff 0%, #42bbdf 52%, #67e0b9 100%);
  color-scheme: light;
  font-family: 'Cerebri Sans', Inter, Manrope, 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: #f7f7fe; scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  color: var(--cb-ink);
  background:
    radial-gradient(circle at 58% 13%, rgba(222, 223, 255, .55), transparent 35%),
    linear-gradient(180deg, #ffffff 0, #f7f7fe 14%, #fbfbff 100%);
  font-family: var(--font-family, 'Cerebri Sans'), Inter, system-ui, sans-serif;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img, svg { display: block; }
button, select, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 18px;
  top: -60px;
  z-index: 200;
  padding: 11px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--cb-primary);
  text-decoration: none;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: relative;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(226, 229, 244, .86);
  backdrop-filter: blur(18px);
}
.site-header__inner {
  width: var(--header-container);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  width: 204px;
  height: 28px;
  text-decoration: none;
}
.brand img,
.site-footer__logo img {
  width: 204px;
  height: 28px;
  object-fit: contain;
  object-position: left center;
  filter: none;
}
.brand img.cb-logo-2026,
.site-footer__logo img.cb-logo-2026 {
  width: 213px;
  height: 32px;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 3.1vw, 57px);
  color: var(--cb-ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.018em;
  white-space: nowrap;
}
.site-nav a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}
.nav-trigger svg {
  width: 9px;
  height: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-trigger.is-active { color: var(--cb-primary); }
.nav-trigger.is-active svg { transform: rotate(180deg); }
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 31px;
  font-size: 14px;
  font-weight: 800;
}
.language-select {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.language-select::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--cb-ink);
  border-bottom: 2px solid var(--cb-ink);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.language-select select {
  appearance: none;
  width: 58px;
  height: 37px;
  padding: 0 24px 0 14px;
  border: 1px solid #d7dcf5;
  border-radius: 8px;
  color: var(--cb-ink);
  background: #fff;
  font-weight: 900;
  letter-spacing: -.015em;
  cursor: pointer;
}
.login-link {
  color: var(--cb-ink);
  text-decoration: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--cb-ink);
  font-weight: 900;
  letter-spacing: -.016em;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #2914ff, #3425ee 55%, #1a04df);
  box-shadow: 0 12px 24px rgba(37, 16, 243, .22);
}
.header-cta {
  min-width: 196px;
  min-height: 38px;
  border-radius: 7px;
  padding-inline: 24px;
}
.btn--outline {
  color: var(--cb-ink);
  background: rgba(255,255,255,.82);
  border-color: #d9def6;
  box-shadow: 0 8px 22px rgba(18, 16, 104, .045);
}
.btn--large {
  min-width: 217px;
  min-height: 43px;
  font-size: 15px;
}
.btn--large svg:first-of-type,
.btn--primary.btn--large svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 999px;
  color: var(--cb-primary);
  background: #fff;
  stroke-width: 2.5;
}
.btn--outline svg { color: var(--cb-primary); }

.menu-toggle { display: none; }

/* Chip retour accueil partagé par les topbars produit (nav-shell) */
.topbar-brand {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 22px);
  min-width: 0;
}
.topbar-home {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, currentColor 32%, transparent);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
  opacity: .78;
  transition: opacity .18s ease, border-color .18s ease;
}
.topbar-home:hover,
.topbar-home:focus-visible {
  opacity: 1;
  border-color: color-mix(in srgb, currentColor 55%, transparent);
}
.topbar-home svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.deskio-topbar .topbar-home,
.oh-topbar .topbar-home,
.neoo-topbar .topbar-home,
.murphy-topbar .topbar-home,
.serenia-topbar .topbar-home { color: #dfe6f6; }
/* Le chip occupe désormais la gauche : neutralise le centrage historique du logo produit */
.topbar-brand .deskio-logo,
.solution-page--deskio .topbar-brand .deskio-logo { margin-left: 0; }
@media (max-width: 1500px) {
  .topbar-home span { display: none; }
  .topbar-home { padding: 8px 10px; }
}
@media (max-width: 1120px) {
  .topbar-home { display: none; }
}

.mega-layer {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 110;
  width: min(calc(100vw - 48px), 780px);
  padding-top: 16px;
  transform: translateX(-50%);
}
.mega-layer[hidden] { display: none; }
.mega-menu { display: none; }
.mega-menu.is-active { display: block; }
.mega-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(217, 222, 246, .95);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(16, 10, 116, .14);
}
.mega-panel--solutions { grid-template-columns: repeat(3, 1fr) auto; }
.mega-panel article {
  min-height: 110px;
  padding: 14px;
  border-radius: 14px;
  background: #f8f8ff;
}
.mega-panel strong { display: block; font-size: 14px; font-weight: 900; letter-spacing: -.02em; }
.mega-panel p { margin: 8px 0 0; color: var(--cb-ink-soft); font-size: 12px; line-height: 1.35; }
.mega-cta { align-self: center; min-width: 180px; }

main { position: relative; z-index: 1; }
.home-hero {
  position: relative;
  width: var(--main-container);
  height: 381px;
  margin: 0 auto;
  padding-top: 29px;
}
.home-hero__copy {
  position: relative;
  z-index: 3;
  width: 545px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 25px;
  margin: 0 0 24px;
  padding: 0 12px 0 8px;
  border: 1px solid #c8c8ff;
  border-radius: 999px;
  color: var(--cb-primary);
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 18px rgba(37, 16, 243, .04);
  font-family: 'Cerebri Sans', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .072em;
  text-transform: uppercase;
}
.hero-kicker__dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: radial-gradient(circle, #fff 0 22%, #785cff 24% 44%, #ebe9ff 46%);
  box-shadow: 0 0 0 2px rgba(120, 92, 255, .13);
}
.home-hero h1 {
  margin: 0;
  color: var(--cb-ink);
  font-size: 49px;
  line-height: .998;
  letter-spacing: var(--cb-display-tracking);
  font-weight: var(--cb-display-weight);
}
.home-hero h1 .accent {
  display: inline-block;
  margin-top: 2px;
  color: var(--cb-primary);
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -.058em;
  white-space: nowrap;
}

html[lang="nl-BE"] .home-hero h1 .accent {
  font-size: 34px;
  letter-spacing: -.066em;
}
.hero-lead {
  width: 536px;
  margin: 18px 0 0;
  color: #213079;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -.013em;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 18px;
}
.home-hero__visual {
  position: absolute;
  z-index: 1;
  left: 585px;
  top: 0;
  width: 968px;
  height: 381px;
  pointer-events: none;
  overflow: visible;
}
.home-hero__visual picture,
.home-hero__visual img {
  width: 100%;
  height: 100%;
}
.home-hero__visual img {
  object-fit: contain;
  object-position: center top;
}

.feature-strip,
.solution-cards,
.why-strip,
.diagnostic-banner,
.site-footer {
  width: var(--main-container);
  margin-inline: auto;
}
.feature-strip {
  height: 68px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--cb-border);
  border-radius: 8px;
  background: rgba(255,255,255,.91);
  box-shadow: var(--cb-soft-shadow);
  overflow: hidden;
}
.feature-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
}
.feature-item:not(:last-child)::after,
.why-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--cb-border);
}
.feature-item svg,
.why-item svg,
.diagnostic-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--cb-primary);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-item h3,
.why-item h3 {
  margin: 0;
  color: var(--cb-ink);
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 900;
}
.feature-item p,
.why-item p {
  margin: 6px 0 0;
  color: #273580;
  font-size: 13px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -.01em;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.flag-inline {
  display: inline-block;
  vertical-align: -1px;
  width: 18px;
  height: 12px;
  margin-left: 6px;
  border-radius: 1px;
  background: linear-gradient(90deg, #050505 0 33.33%, #ffd529 33.33% 66.66%, #ed1c24 66.66%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.04);
}
.solution-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}
.solution-card {
  height: 128px;
  display: grid;
  grid-template-columns: 137px minmax(0, 1fr);
  align-items: center;
  gap: 27px;
  padding: 10px 28px 10px 23px;
  border: 1px solid var(--cb-border);
  border-radius: 10px;
  background: rgba(255,255,255,.91);
  box-shadow: var(--cb-soft-shadow);
  overflow: hidden;
}
.solution-card img {
  width: 136px;
  height: 99px;
  object-fit: contain;
  object-position: center;
}
.solution-card:nth-child(3) {
  grid-template-columns: 129px minmax(0, 1fr);
}
.solution-card:nth-child(3) img { width: 116px; height: 101px; }
.solution-card h3 {
  margin: 0;
  color: var(--cb-ink);
  font-size: 19px;
  line-height: 1.05;
  letter-spacing: -.032em;
  font-weight: 900;
}
.solution-card h3 span,
.solution-card:nth-child(4) h3 { color: #1608a9; }
.solution-card p {
  min-height: 38px;
  margin: 12px 0 0;
  color: #22317d;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 500;
  letter-spacing: -.012em;
}
.solution-card a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 9px;
  color: var(--cb-primary);
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}
.solution-card a svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.why-strip {
  min-height: 74px;
  display: grid;
  grid-template-columns: 347px repeat(3, minmax(0, 1fr));
  margin-top: 10px;
  border: 1px solid var(--cb-border);
  border-radius: 10px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--cb-soft-shadow);
  overflow: hidden;
}
.why-title-card {
  display: flex;
  align-items: center;
  padding: 0 30px;
}
.why-title-card h2 {
  margin: 0;
  color: var(--cb-ink);
  font-size: 21px;
  line-height: 1;
  letter-spacing: -.032em;
  font-weight: 900;
}
.why-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 13px 28px;
}
.why-item svg { width: 41px; height: 41px; }
.why-item p { margin-top: 5px; font-size: 11.8px; line-height: 1.22; max-width: 275px; }
.diagnostic-banner {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) 362px;
  align-items: center;
  margin-top: 10px;
  padding: 0 155px 0 65px;
  border-radius: 9px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 9% 115%, rgba(255,255,255,.28), transparent 25%),
    radial-gradient(circle at 78% 28%, rgba(255,255,255,.17), transparent 22%),
    linear-gradient(105deg, #7d4fff 0%, #2d15ff 38%, #1b14e9 70%, #6c2cff 100%);
  box-shadow: 0 18px 42px rgba(37, 16, 243, .20);
}
.diagnostic-banner::before,
.diagnostic-banner::after {
  content: '';
  position: absolute;
  inset: auto -8% -48px -8%;
  height: 120px;
  border-radius: 50%;
  border-top: 1px solid rgba(255,255,255,.27);
  transform: rotate(-2deg);
}
.diagnostic-banner::after {
  inset: auto -18% -76px 33%;
  border-top-color: rgba(255,255,255,.18);
  transform: rotate(7deg);
}
.diagnostic-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  justify-self: end;
  margin-right: 27px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 0 28px rgba(255,255,255,.16);
}
.diagnostic-icon svg { width: 34px; height: 34px; stroke: #fff; stroke-width: 2; }
.diagnostic-copy { position: relative; z-index: 1; }
.diagnostic-copy h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: var(--cb-display-tracking);
  font-weight: var(--cb-display-weight);
}
.diagnostic-copy p {
  margin: 7px 0 0;
  font-size: 14.5px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -.01em;
}
.diagnostic-banner__button {
  position: relative;
  z-index: 1;
  width: 201px;
  min-height: 42px;
  justify-self: end;
  color: var(--cb-primary);
  font-size: 14px;
  white-space: nowrap;
  background: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(0,0,0,.1);
}
.site-footer {
  min-height: 112px;
  margin-top: 10px;
  display: grid;
  grid-template-columns: 250px minmax(490px, 1fr) 412px;
  gap: 50px;
  align-items: start;
  padding: 21px 0 20px;
  color: #17236f;
}
.site-footer__logo { padding-top: 20px; }
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 45px;
}
.footer-columns h2 {
  margin: 0 0 7px;
  color: var(--cb-ink);
  font-size: 10.5px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.01em;
}
.footer-columns a,
.footer-legal a,
.footer-legal small,
.footer-legal strong,
.footer-legal p {
  color: #24347d;
  text-decoration: none;
  font-size: 10.5px;
  line-height: 1.55;
  font-weight: 500;
}
.footer-columns a { display: block; }
.footer-legal { position: relative; padding-top: 6px; }
.footer-legal strong { display: block; color: var(--cb-ink); font-weight: 700; }

/* Variante sombre du footer standard (pages produit à fond sombre) */
.murphy-page .site-footer,
.neoo-page--dark-hero .site-footer {
  color: #dfe6f6;
  border-top: 1px solid rgba(146, 176, 216, 0.14);
}
.murphy-page .site-footer .footer-columns h2,
.neoo-page--dark-hero .site-footer .footer-columns h2,
.murphy-page .site-footer .footer-legal strong,
.neoo-page--dark-hero .site-footer .footer-legal strong {
  color: #f2f6ff;
}
.murphy-page .site-footer .footer-columns a,
.neoo-page--dark-hero .site-footer .footer-columns a,
.murphy-page .site-footer .footer-legal a,
.neoo-page--dark-hero .site-footer .footer-legal a,
.murphy-page .site-footer .footer-legal small,
.neoo-page--dark-hero .site-footer .footer-legal small,
.murphy-page .site-footer .footer-legal p,
.neoo-page--dark-hero .site-footer .footer-legal p {
  color: rgba(210, 220, 244, 0.82);
}
.murphy-page .site-footer__logo img,
.neoo-page--dark-hero .site-footer__logo img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-legal p { display: flex; gap: 10px; margin: 16px 0 8px; }
.footer-legal small { display: block; }
.footer-meta {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.footer-meta .footer-vato-credit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-height: 26px;
  margin: 0;
  padding: 5px 10px 5px 8px;
  border: 1px solid rgba(37, 16, 243, .16);
  border-radius: 999px;
  color: #33417d;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 22px rgba(31, 27, 122, .07);
  font-size: 10.5px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.005em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color .2s ease,
    border-color .2s ease,
    background-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}
.footer-meta .footer-vato-credit::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--cb-accent-gradient);
  box-shadow: 0 0 0 3px rgba(86, 126, 255, .09);
}
.footer-meta .footer-vato-credit b {
  color: var(--cb-primary);
  font-weight: 800;
}
.footer-meta .footer-vato-credit:hover {
  border-color: rgba(37, 16, 243, .3);
  color: var(--cb-ink);
  background: #fff;
  box-shadow: 0 10px 26px rgba(31, 27, 122, .12);
  text-decoration: none;
  transform: translateY(-1px);
}
.footer-meta .footer-vato-credit:focus-visible {
  outline: 3px solid rgba(37, 16, 243, .28);
  outline-offset: 3px;
}
.murphy-page .site-footer .footer-meta .footer-vato-credit,
.neoo-page--dark-hero .site-footer .footer-meta .footer-vato-credit,
.story-page--cinematic .site-footer .footer-meta .footer-vato-credit {
  border-color: rgba(145, 205, 247, .2);
  color: rgba(210, 222, 240, .8);
  background: rgba(120, 181, 232, .08);
  box-shadow: none;
}
.murphy-page .site-footer .footer-meta .footer-vato-credit b,
.neoo-page--dark-hero .site-footer .footer-meta .footer-vato-credit b,
.story-page--cinematic .site-footer .footer-meta .footer-vato-credit b {
  color: #a9e1ff;
}
.murphy-page .site-footer .footer-meta .footer-vato-credit:hover,
.neoo-page--dark-hero .site-footer .footer-meta .footer-vato-credit:hover,
.story-page--cinematic .site-footer .footer-meta .footer-vato-credit:hover {
  border-color: rgba(145, 205, 247, .4);
  color: #f2f7ff;
  background: rgba(120, 181, 232, .14);
}
.socials {
  position: absolute;
  right: 47px;
  bottom: 11px;
  display: flex;
  gap: 18px;
  color: var(--cb-ink);
  font-size: 20px;
  font-weight: 900;
}

@media (max-width: 1500px) {
  :root {
    --header-container: min(calc(100% - 80px), 1400px);
    --main-container: min(calc(100% - 80px), 1320px);
  }
  .site-header__inner { grid-template-columns: 1fr auto 1fr; }
  .site-nav { gap: 28px; }
  .header-actions { gap: 20px; }
  .home-hero__visual { left: 485px; width: min(60vw, 840px); height: auto; aspect-ratio: 968 / 381; }
  .home-hero__copy { width: 510px; }
  .home-hero h1 { font-size: 46px; }
  .home-hero h1 .accent { font-size: 35px; }
  .hero-lead { width: 500px; font-size: 16px; }
  .solution-card { gap: 18px; padding-inline: 18px; }
  .why-strip { grid-template-columns: 285px repeat(3, minmax(0, 1fr)); }
  .diagnostic-banner { padding-left: 92px; padding-right: 80px; grid-template-columns: 125px minmax(0, 1fr) 270px; }
}

@media (max-width: 1120px) {
  :root { --header-container: min(calc(100% - 40px), 980px); --main-container: min(calc(100% - 40px), 980px); --header-h: auto; --cb-topbar-h: 72px; }
  .site-header { height: auto; min-height: 72px; }
  .site-header__inner { min-height: 72px; grid-template-columns: 1fr auto; gap: 14px; padding-block: 16px; }
  .brand { justify-self: start; }
  .menu-toggle {
    display: inline-grid;
    grid-template-columns: 20px auto;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid var(--cb-border);
    border-radius: 10px;
    background: #fff;
    color: var(--cb-ink);
    font-weight: 900;
  }
  .menu-toggle span { display: block; width: 20px; height: 2px; background: var(--cb-primary); border-radius: 99px; }
  .menu-toggle span:nth-child(2) { margin-top: 4px; }
  .menu-toggle span:nth-child(3) { margin-top: 8px; }
  .site-nav,
  .header-actions { grid-column: 1 / -1; }
  .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 6px; padding-top: 6px; }
  .site-nav.is-open { display: flex; }
  .site-nav a,
  .nav-trigger { width: 100%; justify-content: space-between; padding: 13px 15px; border-radius: 12px; background: #f7f7fe; }
  .header-actions { justify-content: space-between; gap: 14px; }
  .login-link { display: none; }
  .header-cta { flex: 1; min-width: 0; }
  .mega-layer { position: static; width: 100%; transform: none; grid-column: 1 / -1; padding-top: 0; }
  .mega-panel,
  .mega-panel--solutions { grid-template-columns: 1fr; }
  .mega-panel article { min-height: auto; }
  .home-hero { height: auto; min-height: 0; padding-top: 34px; display: grid; gap: 16px; }
  .home-hero__copy { width: min(100%, 720px); }
  .home-hero h1 { font-size: clamp(42px, 7vw, 62px); }
  .home-hero h1 .accent { white-space: normal; font-size: clamp(31px, 5vw, 42px); }
  .hero-lead { width: min(100%, 680px); }
  .home-hero__visual { position: relative; left: auto; top: auto; width: min(100%, 968px); height: auto; aspect-ratio: 968 / 381; margin: -10px auto 0; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); height: auto; margin-top: 18px; }
  .feature-item:nth-child(2n)::after { display: none; }
  .feature-item:last-child { grid-column: 1 / -1; }
  .solution-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-strip { grid-template-columns: 1fr; }
  .why-title-card { min-height: 66px; }
  .why-item::after { display: none; }
  .diagnostic-banner { grid-template-columns: 70px 1fr; gap: 18px; padding: 18px 22px; }
  .diagnostic-banner__button { grid-column: 2; width: 220px; }
  .diagnostic-icon { justify-self: center; margin: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__logo { padding-top: 0; }
  .footer-legal { padding-bottom: 32px; }
  .socials { left: 0; right: auto; bottom: 0; }
}

@media (max-width: 760px) {
  :root { --header-container: min(calc(100% - 28px), 560px); --main-container: min(calc(100% - 28px), 560px); }
  body { background: radial-gradient(circle at 80% 12%, rgba(226,226,255,.72), transparent 38%), linear-gradient(180deg, #fff 0, #f8f8ff 100%); }
  .brand, .brand img, .site-footer__logo img { width: 184px; height: 25px; }
  .header-actions { align-items: stretch; }
  .language-select select { width: 68px; height: 42px; }
  .header-cta { min-height: 42px; padding-inline: 16px; font-size: 13px; }
  .hero-kicker { max-width: 100%; height: auto; min-height: 25px; padding-block: 5px; white-space: normal; font-size: 9.7px; letter-spacing: .045em; }
  .home-hero h1 { font-size: clamp(38px, 11.2vw, 52px); line-height: 1.03; letter-spacing: var(--cb-display-tracking); }
  .home-hero h1 .accent { font-size: clamp(29px, 8vw, 38px); }
  .hero-lead { font-size: 16px; line-height: 1.48; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn--large { width: 100%; min-width: 0; }
  .home-hero__visual { width: 108%; margin-left: -4%; overflow: hidden; }
  .home-hero__visual img { width: 112%; transform: translateX(-6%); object-fit: contain; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-item, .why-item { grid-template-columns: 56px 1fr; padding: 16px 18px; }
  .feature-item::after { display: none; }
  .solution-cards { grid-template-columns: 1fr; }
  .solution-card, .solution-card:nth-child(3) { height: auto; min-height: 126px; grid-template-columns: 126px 1fr; padding: 13px 18px; }
  .solution-card img { width: 124px; }
  .solution-card:nth-child(3) img { width: 108px; }
  .why-title-card { padding: 0 20px; }
  .diagnostic-banner { grid-template-columns: 1fr; text-align: left; padding: 20px; }
  .diagnostic-icon { justify-self: start; }
  .diagnostic-banner__button { grid-column: auto; width: 100%; }
  .footer-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .footer-legal p { flex-wrap: wrap; gap: 6px 10px; }
}

@media (max-width: 420px) {
  .menu-toggle b { display: none; }
  .home-hero h1 { font-size: 39px; }
  .home-hero h1 .accent { font-size: 30px; }
  .solution-card, .solution-card:nth-child(3) { grid-template-columns: 92px 1fr; gap: 13px; }
  .solution-card img { width: 96px; }
  .solution-card p { font-size: 13px; }
  .footer-columns { grid-template-columns: 1fr; }
}

/* Section rhythm reset: separate the page into readable blocks instead of one dense screenshot-like fold. */
.section-block {
  position: relative;
  width: var(--main-container);
  margin: 0 auto;
  padding: 98px 0;
  isolation: isolate;
}

.section-block::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.feature-section::before,
.why-section::before {
  background: linear-gradient(180deg, rgba(248, 249, 255, .2) 0%, rgba(255,255,255,.82) 44%, rgba(247,248,255,.58) 100%);
  border-top: 1px solid rgba(226, 229, 246, .66);
  border-bottom: 1px solid rgba(226, 229, 246, .58);
}

.solutions-section::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 88, 255, .08), transparent 31%),
    radial-gradient(circle at 86% 36%, rgba(37, 16, 243, .07), transparent 27%),
    linear-gradient(180deg, #ffffff 0%, #fafaff 100%);
}

.section-intro {
  max-width: 760px;
  margin: 0 0 34px;
}

.section-intro--center {
  margin-inline: auto;
  text-align: center;
}

.section-eyebrow {
  margin: 0 0 12px;
  color: var(--cb-primary);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .105em;
  text-transform: uppercase;
}

.section-intro h2 {
  max-width: 760px;
  margin: 0;
  color: var(--cb-ink);
  font-size: clamp(34px, 3.1vw, 52px);
  line-height: 1.02;
  letter-spacing: var(--cb-display-tracking);
  font-weight: var(--cb-display-weight);
}

.section-intro p:not(.section-eyebrow) {
  max-width: 640px;
  margin: 16px 0 0;
  color: #273580;
  font-size: 18px;
  line-height: 1.48;
  font-weight: 500;
  letter-spacing: -.016em;
}

.section-intro--center p:not(.section-eyebrow) { margin-inline: auto; }

@media (min-width: 1121px) {
  .home-hero {
    height: 660px;
    padding-top: 76px;
  }

  .home-hero__visual {
    top: 56px;
  }

  .feature-section { padding-top: 92px; }

  .feature-strip {
    height: 86px;
    margin-top: 34px;
    border-radius: 16px;
  }

  .feature-item {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 16px 28px;
  }

  .solution-cards {
    gap: 18px;
    margin-top: 34px;
  }

  .solution-card,
  .solution-card:nth-child(3) {
    height: 176px;
    grid-template-columns: 142px minmax(0, 1fr);
    gap: 24px;
    padding: 22px 28px;
    border-radius: 18px;
  }

  .solution-card h3 { font-size: 22px; }
  .solution-card p { font-size: 15px; min-height: 44px; }
  .solution-card a { font-size: 14px; margin-top: 12px; }

  .why-strip {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .why-item {
    min-height: 182px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    padding: 30px;
    border: 1px solid var(--cb-border);
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--cb-soft-shadow);
  }

  .why-item::after { display: none; }
  .why-item svg { width: 48px; height: 48px; }
  .why-item h3 { font-size: 18px; }
  .why-item p { max-width: none; margin-top: 10px; font-size: 14px; line-height: 1.45; }

  .diagnostic-banner {
    min-height: 132px;
    margin-top: 38px;
    margin-bottom: 70px;
    grid-template-columns: 116px minmax(0, 1fr) 300px;
    padding: 0 96px;
    border-radius: 18px;
  }

  .diagnostic-copy h2 { font-size: 30px; }
  .diagnostic-copy p { max-width: 760px; font-size: 17px; }
  .diagnostic-banner__button { width: 230px; min-height: 54px; font-size: 16px; }

  .site-footer {
    padding-top: 42px;
    padding-bottom: 54px;
    border-top: 1px solid rgba(226, 229, 246, .72);
  }
}

@media (max-width: 1500px) and (min-width: 1121px) {
  .home-hero { height: 620px; padding-top: 62px; }
  .home-hero__visual { top: 48px; }
  .section-block { padding: 82px 0; }
  .solution-card,
  .solution-card:nth-child(3) { grid-template-columns: 126px minmax(0, 1fr); gap: 18px; padding-inline: 20px; }
  .diagnostic-banner { grid-template-columns: 92px minmax(0, 1fr) 260px; padding-inline: 68px; }
}

@media (max-width: 1120px) {
  .section-block {
    padding: 66px 0;
  }

  .section-intro,
  .section-intro--center {
    max-width: 760px;
    margin: 0 0 26px;
    text-align: left;
  }

  .section-intro h2 { font-size: clamp(32px, 6vw, 48px); }
  .section-intro p:not(.section-eyebrow) { margin-inline: 0; font-size: 16px; }

  .feature-strip,
  .solution-cards,
  .why-strip {
    width: 100%;
    margin-top: 26px;
  }

  .why-strip {
    border-radius: 18px;
  }
}

@media (max-width: 760px) {
  .section-block { padding: 52px 0; }
  .home-hero { padding-top: 36px; }
  .section-eyebrow { font-size: 10.5px; letter-spacing: .075em; }
  .section-intro h2 { font-size: 31px; line-height: var(--cb-display-leading); }
  .feature-strip,
  .why-strip {
    border-radius: 16px;
  }
  .solution-card,
  .solution-card:nth-child(3) {
    border-radius: 16px;
  }
  .diagnostic-banner {
    margin-top: 16px;
    margin-bottom: 42px;
    border-radius: 18px;
  }
}

/* Balance correction after visual QA: remove the oversized blank hero gap and make sections feel like a real webpage. */
@media (min-width: 1121px) {
  .home-hero {
    height: 504px;
    padding-top: 58px;
  }

  .home-hero__visual {
    top: 42px;
  }

  .section-block {
    padding: 72px 0;
  }

  .section-intro h2 {
    font-size: clamp(36px, 2.65vw, 46px);
    line-height: 1.04;
  }

  .section-intro p:not(.section-eyebrow) {
    font-size: 16.5px;
    line-height: 1.48;
  }

  .feature-section {
    display: grid;
    grid-template-columns: minmax(330px, 424px) minmax(0, 1fr);
    align-items: center;
    gap: 38px;
    padding: 54px 0;
  }

  .feature-section .section-intro,
  .feature-section .section-intro--center {
    max-width: 424px;
    margin: 0;
    text-align: left;
  }

  .feature-section .section-intro p:not(.section-eyebrow) {
    margin-inline: 0;
  }

  .feature-section .feature-strip {
    width: 100%;
    height: auto;
    min-height: 132px;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
  }

  .feature-section .feature-item {
    grid-template-columns: 1fr;
    align-content: start;
    align-items: start;
    gap: 12px;
    padding: 22px 18px 18px;
  }

  .feature-section .feature-item svg {
    width: 38px;
    height: 38px;
  }

  .feature-section .feature-item h3 {
    font-size: 13.5px;
    line-height: 1.12;
  }

  .feature-section .feature-item p {
    font-size: 12.5px;
    line-height: 1.28;
  }

  .solutions-section,
  .why-section {
    padding: 76px 0;
  }

  .solutions-section .section-intro,
  .why-section .section-intro {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 720px) minmax(330px, 1fr);
    align-items: end;
    column-gap: 78px;
    margin-bottom: 36px;
  }

  .solutions-section .section-eyebrow,
  .why-section .section-eyebrow {
    grid-column: 1 / -1;
  }

  .solutions-section .section-intro p:not(.section-eyebrow),
  .why-section .section-intro p:not(.section-eyebrow) {
    grid-column: 2;
    grid-row: 2;
    max-width: 520px;
    margin: 0;
  }

  .solutions-section .solution-cards {
    margin-top: 0;
  }

  .solution-card,
  .solution-card:nth-child(3) {
    height: 166px;
    border-radius: 18px;
  }

  .why-strip {
    margin-top: 0;
  }

  .why-item {
    min-height: 164px;
  }

  .diagnostic-banner {
    margin-top: 18px;
    margin-bottom: 52px;
  }
}

@media (max-width: 1500px) and (min-width: 1121px) {
  .home-hero {
    height: 492px;
    padding-top: 50px;
  }

  .home-hero__visual {
    top: 36px;
  }

  .feature-section {
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    gap: 28px;
  }

  .feature-section .feature-item {
    padding-inline: 14px;
  }

  .solutions-section .section-intro,
  .why-section .section-intro {
    grid-template-columns: minmax(0, 640px) minmax(300px, 1fr);
    column-gap: 46px;
  }
}

/* Premium rebuild for the rejected Solutions / Why sections: larger cards, no clipped text, stronger hierarchy. */
@media (min-width: 1121px) {
  .solutions-section {
    padding: 94px 0 104px;
  }

  .solutions-section::before {
    background:
      radial-gradient(circle at 12% 8%, rgba(37, 16, 243, .08), transparent 30%),
      radial-gradient(circle at 86% 18%, rgba(124, 88, 255, .12), transparent 31%),
      linear-gradient(180deg, #ffffff 0%, #f8f7ff 52%, #ffffff 100%);
  }

  .solutions-section .section-intro,
  .why-section .section-intro {
    align-items: end;
    margin-bottom: 44px;
  }

  .solutions-section .section-intro h2,
  .why-section .section-intro h2 {
    max-width: 780px;
    font-size: clamp(42px, 3.35vw, 58px);
    line-height: .98;
    letter-spacing: var(--cb-display-tracking);
  }

  .solutions-section .section-intro p:not(.section-eyebrow),
  .why-section .section-intro p:not(.section-eyebrow) {
    max-width: 560px;
    padding-bottom: 6px;
    color: #1d2a78;
    font-size: 18px;
    line-height: 1.5;
  }

  .solutions-section .solution-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 0;
  }

  .solution-card,
  .solution-card:nth-child(3) {
    position: relative;
    min-height: 236px;
    height: auto;
    grid-template-columns: 200px minmax(0, 1fr);
    align-items: center;
    gap: 30px;
    padding: 30px 34px;
    border-radius: 28px;
    overflow: visible;
    background:
      linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(248,249,255,.96) 100%);
    border: 1px solid rgba(205, 211, 248, .9);
    box-shadow: 0 24px 70px rgba(28, 25, 99, .10), inset 0 1px 0 rgba(255,255,255,.92);
  }

  .solution-cards { counter-reset: solution-card; }

  .solution-card::before {
    content: "0" counter(solution-card);
    counter-increment: solution-card;
    position: absolute;
    top: auto;
    right: 24px;
    bottom: 20px;
    color: rgba(37, 16, 243, .10);
    font-size: 38px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.06em;
  }

  .solution-card::after {
    content: "";
    position: absolute;
    inset: 16px auto 16px 16px;
    width: 198px;
    border-radius: 22px;
    background:
      radial-gradient(circle at 70% 20%, rgba(124, 88, 255, .22), transparent 40%),
      linear-gradient(180deg, rgba(248,247,255,.96), rgba(240,241,255,.72));
    z-index: 0;
  }

  .solution-card img,
  .solution-card:nth-child(3) img {
    position: relative;
    z-index: 1;
    justify-self: center;
    width: 172px;
    height: 142px;
    object-fit: contain;
    filter: drop-shadow(0 16px 20px rgba(37, 16, 243, .14));
  }

  .solution-card:nth-child(3) img {
    width: 158px;
  }

  .solution-card > div {
    position: relative;
    z-index: 1;
    min-width: 0;
    display: flex;
    min-height: 166px;
    flex-direction: column;
    align-items: flex-start;
  }

  .solution-card h3 {
    max-width: 330px;
    color: #070735;
    font-size: clamp(25px, 1.8vw, 32px);
    line-height: 1;
    letter-spacing: -.055em;
  }

  .solution-card p {
    min-height: 0;
    max-width: 390px;
    margin-top: 12px;
    color: #25307c;
    font-size: 16.5px;
    line-height: 1.45;
  }

  .solution-card a {
    margin-top: auto;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 999px;
    background: rgba(37, 16, 243, .08);
    font-size: 14px;
  }

  .solution-card a:hover {
    background: var(--cb-primary);
    color: #fff;
  }

  .why-section {
    padding: 100px 0 96px;
  }

  .why-section::before {
    background:
      radial-gradient(circle at 18% 18%, rgba(124, 88, 255, .08), transparent 30%),
      linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
  }

  .why-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .why-item {
    position: relative;
    min-height: 232px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 34px 34px 32px;
    border-radius: 28px;
    border: 1px solid rgba(205, 211, 248, .88);
    background: rgba(255,255,255,.96);
    box-shadow: 0 22px 62px rgba(28, 25, 99, .085), inset 0 1px 0 rgba(255,255,255,.9);
    overflow: hidden;
  }

  .why-item::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, #2510f3, #8a63ff);
  }

  .why-item::after {
    display: none;
  }

  .why-item svg {
    width: 56px;
    height: 56px;
    padding: 12px;
    border-radius: 18px;
    color: var(--cb-primary);
    background: linear-gradient(180deg, rgba(242,241,255,.98), rgba(255,255,255,.86));
    box-shadow: inset 0 0 0 1px rgba(37, 16, 243, .12);
  }

  .why-item h3 {
    font-size: 23px;
    line-height: 1.05;
    letter-spacing: -.045em;
  }

  .why-item p {
    max-width: 360px;
    margin: 10px 0 0;
    color: #273580;
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 1500px) and (min-width: 1121px) {
  .solutions-section .section-intro,
  .why-section .section-intro {
    grid-template-columns: minmax(0, 610px) minmax(330px, 1fr);
    column-gap: 52px;
  }

  .solution-card,
  .solution-card:nth-child(3) {
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 22px;
    padding: 26px 28px;
  }

  .solution-card::after {
    width: 166px;
  }

  .solution-card img,
  .solution-card:nth-child(3) img {
    width: 146px;
    height: 122px;
  }
}

@media (max-width: 1120px) {
  .solutions-section .section-intro,
  .why-section .section-intro {
    display: block;
  }

  .solutions-section .solution-cards {
    gap: 18px;
  }

  .solution-card,
  .solution-card:nth-child(3) {
    height: auto;
    min-height: 180px;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    padding: 24px;
    border-radius: 24px;
    overflow: visible;
  }

  .solution-card img,
  .solution-card:nth-child(3) img {
    width: 138px;
    height: 108px;
  }

  .solution-card p {
    min-height: 0;
  }

  .why-strip {
    gap: 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .why-item {
    min-height: 0;
    border: 1px solid rgba(205, 211, 248, .88);
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 44px rgba(28, 25, 99, .08);
  }
}

@media (max-width: 760px) {
  .solutions-section,
  .why-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .solutions-section .section-intro,
  .why-section .section-intro {
    margin-bottom: 24px;
  }

  .solutions-section .solution-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .solution-card,
  .solution-card:nth-child(3) {
    min-height: 0;
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
  }

  .solution-card img,
  .solution-card:nth-child(3) img {
    width: 94px;
    height: 82px;
  }

  .solution-card h3 {
    font-size: 21px;
    line-height: 1.02;
  }

  .solution-card p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.38;
  }

  .solution-card a {
    margin-top: 12px;
  }

  .why-item {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 20px;
    border-radius: 20px;
  }

  .why-item h3 {
    font-size: 18px;
  }

  .why-item p {
    font-size: 14px;
    line-height: 1.42;
  }
}

/* 2026-06-29 homepage hard-rematch: new first fold + pleasant landing rhythm. */
@media (min-width: 1121px) {
  :root {
    --header-container: min(100% - 96px, 1520px);
    --main-container: min(100% - 190px, 1480px);
    --header-h: var(--cb-topbar-h);
  }

  body {
    background:
      radial-gradient(circle at 72% 16%, rgba(225, 224, 255, .68), transparent 32%),
      radial-gradient(circle at 94% 30%, rgba(237, 236, 255, .84), transparent 26%),
      linear-gradient(180deg, #ffffff 0, #fbfbff 64%, #f8f8ff 100%);
  }

  .site-header {
    height: var(--header-h);
    background: rgba(255,255,255,.98);
  }

  .site-header__inner {
    grid-template-columns: 300px 1fr auto;
  }

  .brand,
  .brand img {
    width: 204px;
    height: 28px;
  }

  .site-nav {
    gap: clamp(38px, 3.25vw, 59px);
    font-size: 14.5px;
  }

  .header-actions {
    gap: 31px;
  }

  .header-cta {
    min-width: 204px;
    min-height: 45px;
    border-radius: 9px;
    font-size: 15px;
  }

  .language-select select {
    width: 66px;
    height: 38px;
    border-radius: 10px;
  }

  .home-hero {
    height: 565px;
    padding-top: 44px;
  }

  .home-hero__copy {
    width: 600px;
  }

  .hero-kicker {
    height: 28px;
    margin-bottom: 28px;
    padding-inline: 12px 14px;
    border-color: #cacbff;
    font-size: 11.2px;
    letter-spacing: .075em;
  }

  .hero-kicker__dot {
    width: 14px;
    height: 14px;
  }

  .home-hero h1 {
    color: #090a43;
    font-size: 65px;
    line-height: .98;
    letter-spacing: var(--cb-display-tracking);
    font-weight: var(--cb-display-weight);
  }

  .home-hero h1 .accent {
    margin-top: 5px;
    color: #2815ff;
    font-size: 43px;
    line-height: 1;
    letter-spacing: -.061em;
  }

  html[lang="nl-BE"] .home-hero h1 .accent {
    font-size: 36px;
    letter-spacing: -.064em;
  }

  .hero-lead {
    width: 578px;
    margin-top: 21px;
    color: #182464;
    font-size: 19px;
    line-height: 1.43;
    letter-spacing: -.012em;
  }

  .hero-actions {
    gap: 22px;
    margin-top: 25px;
  }

  .btn--large {
    min-width: 256px;
    min-height: 57px;
    border-radius: 9px;
    font-size: 16px;
  }

  .btn--outline.btn--large {
    min-width: 260px;
  }

  .hero-proof {
    width: 610px;
    margin-top: 34px;
    display: flex;
    align-items: center;
    color: #253071;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -.01em;
  }

  .hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 30px;
    padding: 0 18px;
    border-right: 1px solid #dfe2f4;
    white-space: nowrap;
  }

  .hero-proof span:first-child { padding-left: 0; }
  .hero-proof span:last-child { border-right: 0; padding-right: 0; }
  .hero-proof svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: var(--cb-primary);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 23px;
  }
  .hero-proof .flag-inline {
    margin: 0;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(7,8,63,.12), 0 5px 12px rgba(7,8,63,.08);
  }

  .home-hero__visual {
    left: 560px;
    top: 36px;
    width: 1012px;
    height: 520px;
  }

  .home-hero__visual img {
    object-fit: contain;
    object-position: center top;
  }

  .feature-section {
    grid-template-columns: minmax(390px, 428px) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    padding: 39px 0 42px;
  }

  .feature-section::before {
    background: linear-gradient(180deg, #f9f9ff 0%, #f5f6ff 100%);
    border-top: 1px solid rgba(226,229,246,.92);
    border-bottom: 0;
  }

  .feature-section .section-intro,
  .feature-section .section-intro--center {
    max-width: 428px;
  }

  .feature-section .section-eyebrow {
    margin-bottom: 17px;
    font-size: 13px;
    letter-spacing: .12em;
  }

  .feature-section .section-intro h2 {
    max-width: 428px;
    font-size: 39px;
    line-height: var(--cb-display-leading);
    letter-spacing: -.055em;
  }

  .feature-section .section-intro p:not(.section-eyebrow) {
    max-width: 405px;
    margin-top: 19px;
    color: #293679;
    font-size: 20px;
    line-height: 1.43;
  }

  .feature-section .feature-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    height: auto;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .feature-section .feature-item {
    min-height: 223px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 28px 15px 24px;
    text-align: center;
    border: 1px solid rgba(225,228,245,.85);
    border-radius: 13px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 18px 44px rgba(22, 20, 96, .06), inset 0 1px 0 rgba(255,255,255,.85);
  }

  .feature-section .feature-item::after {
    display: none;
  }

  .feature-section .feature-item svg {
    width: 66px;
    height: 66px;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f0efff 0%, rgba(255,255,255,.92) 100%);
    stroke-width: 2.1;
  }

  .feature-section .feature-item h3 {
    font-size: 19px;
    line-height: 1.08;
    letter-spacing: -.033em;
  }

  .feature-section .feature-item p {
    max-width: 150px;
    margin-top: 12px;
    color: #253071;
    font-size: 16px;
    line-height: 1.45;
  }

  .feature-section .feature-item .flag-inline {
    display: block;
    width: 22px;
    height: 14px;
    margin: 13px auto 0;
  }
}

@media (max-width: 1500px) and (min-width: 1121px) {
  :root {
    --header-container: min(calc(100% - 80px), 1400px);
    --main-container: min(calc(100% - 80px), 1320px);
  }

  .site-header__inner { grid-template-columns: 210px 1fr auto; }
  .site-nav { gap: 28px; }
  .header-actions { gap: 18px; }
  .home-hero { height: 535px; }
  .home-hero__copy { width: 535px; }
  .home-hero h1 { font-size: 56px; }
  .home-hero h1 .accent { font-size: 36px; }
  .hero-lead { width: 520px; font-size: 17px; }
  .hero-proof { width: 560px; font-size: 12px; }
  .hero-proof span { padding-inline: 12px; }
  .home-hero__visual { left: 500px; width: 880px; height: 470px; }
  .feature-section { grid-template-columns: minmax(320px, 366px) minmax(0, 1fr); gap: 26px; }
  .feature-section .section-intro h2 { font-size: 35px; }
  .feature-section .section-intro p:not(.section-eyebrow) { font-size: 18px; }
  .feature-section .feature-strip { gap: 10px; }
  .feature-section .feature-item { min-height: 205px; padding-inline: 12px; }
  .feature-section .feature-item h3 { font-size: 16px; }
  .feature-section .feature-item p { font-size: 13.5px; }
}

@media (max-width: 760px) {
  .home-hero h1 {
    font-size: clamp(42px, 12vw, 56px);
    line-height: .98;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .hero-proof span {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid var(--cb-border);
    border-radius: 12px;
    background: rgba(255,255,255,.88);
    color: #253071;
    font-size: 12px;
    font-weight: 800;
  }

  .hero-proof svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--cb-primary);
    stroke-width: 2.2;
    flex: 0 0 22px;
  }

  .hero-proof .flag-inline {
    margin: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    flex: 0 0 22px;
  }

  .feature-section .feature-item {
    text-align: left;
  }
}

/* Screenshot-matched Solutions mega-menu — 2026-06-29. */
.site-nav a,
.nav-trigger {
  position: relative;
}

.site-header[data-mega-open="solutions"] .nav-trigger[data-mega-trigger="solutions"] {
  color: var(--cb-primary);
}

.site-header[data-mega-open="solutions"] .nav-trigger[data-mega-trigger="solutions"]::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -20px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--cb-primary);
}

.mega-layer[data-active-menu="solutions"] {
  width: min(calc(100vw - 48px), 1608px);
  padding-top: 25px;
}

.mega-layer[data-active-menu="solutions"]::before {
  content: "";
  position: absolute;
  z-index: 112;
  top: 11px;
  left: calc(50% - 212px);
  width: 30px;
  height: 30px;
  border-left: 1px solid rgba(217,222,246,.78);
  border-top: 1px solid rgba(217,222,246,.78);
  border-radius: 4px 0 0 0;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -8px -8px 16px rgba(16,10,116,.025);
}

.mega-solutions-exact {
  position: relative;
  z-index: 111;
  display: grid;
  grid-template-columns: minmax(380px, 480px) minmax(288px, 326px) minmax(254px, 295px) minmax(292px, 354px);
  gap: 26px;
  height: 660px;
  min-height: 0;
  padding: 31px 24px 36px 37px;
  border: 1px solid rgba(217,222,246,.86);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(13, 14, 76, .13), 0 6px 20px rgba(13,14,76,.055);
  overflow: hidden;
}

.mega-solutions-exact::before,
.mega-solutions-exact::after {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 40px;
  width: 1px;
  background: #e2e5f3;
  pointer-events: none;
}

.mega-solutions-exact::before { left: 33.1%; }
.mega-solutions-exact::after { left: 55.9%; }

.mega-solutions-exact a {
  color: inherit;
  text-decoration: none;
}

.mega-solutions-exact p,
.mega-solutions-exact .mega-section-title,
.mega-solutions-exact figure {
  margin: 0;
}

.mega-eyebrow,
.mega-solutions-exact .mega-eyebrow {
  margin: 0 0 22px;
  color: var(--cb-primary);
  font-family: 'Cerebri Sans', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mega-solutions__intro {
  min-width: 0;
  padding: 11px 31px 0 5px;
}

.mega-solutions__intro .mega-section-title {
  max-width: 430px;
  color: #07083f;
  font-size: 30px;
  line-height: .99;
  letter-spacing: -.056em;
  font-weight: 900;
}



/* Shared exact mega-menu components used by Solutions, Partners and Pricing. */
.mega-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(214,219,247,.92);
  border-radius: 13px;
  color: var(--cb-primary);
  background: linear-gradient(145deg, #fbfaff, #eeedff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 18px rgba(37,16,243,.07);
}

.mega-icon svg,
.mega-arrow,
.mega-diagnostic-btn svg,
.mega-ghost-link svg,
.mega-all-link svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-icon svg { width: 27px; height: 27px; stroke-width: 2.25; }
.mega-icon--word { color: var(--cb-primary); font-size: 15px; font-weight: 900; letter-spacing: -.05em; }
.mega-arrow { width: 18px; height: 18px; color: #07083f; stroke-width: 2.3; }

.mega-solutions__products,
.mega-solutions__paths {
  min-width: 0;
  padding: 5px 0 0 27px;
  border-left: 1px solid #e2e5f3;
}

.mega-product-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 17px;
  min-height: 104px;
  margin-bottom: 14px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(218,222,245,.92);
  border-radius: 12px;
  color: inherit;
  background: rgba(255,255,255,.96);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(18,16,104,.052);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mega-product-card:hover {
  transform: translateY(-1px);
  border-color: rgba(37,16,243,.25);
  box-shadow: 0 15px 32px rgba(18,16,104,.09);
}

.mega-product-card .mega-icon { width: 58px; height: 58px; border-radius: 14px; }
.mega-product-card strong { display: block; color: #090a43; font-size: 17px; line-height: 1.04; letter-spacing: -.038em; font-weight: 900; }
.mega-product-card small { display: block; max-width: 210px; margin-top: 8px; color: #253071; font-size: 13px; line-height: 1.3; font-weight: 600; letter-spacing: -.012em; }

.mega-path-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  border-bottom: 1px solid #dfe3f3;
  color: #07083f;
  text-decoration: none;
}

.mega-path-link .mega-icon { width: 42px; height: 42px; border-radius: 12px; }
.mega-path-link .mega-icon svg { width: 25px; height: 25px; }
.mega-path-link b { max-width: 230px; color: #11124f; font-size: 15px; line-height: 1.22; font-weight: 800; letter-spacing: -.018em; }
.mega-path-link:hover b,
.mega-path-link:hover .mega-arrow { color: var(--cb-primary); }

.mega-dashboard-card {
  width: min(100%, 410px);
  margin-top: 18px;
  border: 1px solid rgba(218,222,245,.72);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 36px rgba(18,16,104,.07);
}

.mega-dashboard-card img { display: block; width: 100%; height: auto; }

.mega-proof-row,
.mega-mini-proof {
  color: #17236f;
}

.mega-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 30px;
  padding: 0 13px;
  border: 1px solid #dfe3f8;
  border-radius: 999px;
  color: var(--cb-primary);
  background: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .02em;
}

.mega-solutions__cta {
  position: relative;
  min-height: 594px;
  padding: 58px 36px 38px 40px;
  border-radius: 17px;
  overflow: hidden;
  background: radial-gradient(circle at 86% 22%, rgba(99,75,255,.2), transparent 13%), linear-gradient(135deg, #f7f6ff 0%, #eeecff 51%, #f8f8ff 100%);
}

.mega-solutions__cta .mega-section-title {
  max-width: 280px;
  margin-top: 28px;
  color: #07083f;
  font-size: 30px;
  line-height: 1.04;
  letter-spacing: -.055em;
  font-weight: 900;
}

.mega-solutions__cta > p:not(.mega-pill):not(.mega-section-title) {
  max-width: 292px;
  margin-top: 22px;
  color: #253071;
  font-size: 16px;
  line-height: 1.43;
  font-weight: 500;
}

.mega-diagnostic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  color: #fff !important;
  font-weight: 900;
}

.mega-diagnostic-btn svg { width: 18px; height: 18px; stroke-width: 2.2; }
.mega-solutions__cta .mega-diagnostic-btn { width: 250px; margin-top: 42px; }

.mega-ghost-link,
.mega-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cb-primary);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  text-decoration: none;
}

.mega-ghost-link svg,
.mega-all-link svg { width: 18px; height: 18px; stroke-width: 2.3; }
.mega-solutions__cta .mega-ghost-link { margin-top: 28px; }
.mega-all-link { margin-top: 3px; }

@media (max-width: 1500px) and (min-width: 1121px) {
  .mega-product-card { grid-template-columns: 56px minmax(0, 1fr) 16px; gap: 13px; min-height: 94px; margin-bottom: 10px; padding: 10px 12px; }
  .mega-product-card .mega-icon { width: 50px; height: 50px; }
  .mega-product-card strong { font-size: 15.5px; }
  .mega-product-card small { font-size: 11.5px; line-height: 1.22; }
  .mega-path-link { min-height: 76px; gap: 14px; }
  .mega-solutions__cta { min-height: 556px; padding-inline: 30px; }
  .mega-solutions__cta .mega-section-title { font-size: 27px; }
  .mega-dashboard-card { max-width: 360px; }
}

@media (max-width: 1120px) {
  .mega-solutions__products,
  .mega-solutions__paths { padding: 0; border-left: 0; }
  .mega-solutions__cta { min-height: 0; padding: 28px; }
  .mega-solutions__cta .mega-diagnostic-btn { width: 100%; margin-top: 24px; }
  .mega-dashboard-card { max-width: 420px; }
}

/* Screenshot-matched Partners & Pricing mega-menus — 2026-06-30. */
.nav-link--chevron svg { width: 9px; height: 9px; }

.site-header[data-mega-open="partners"] .nav-trigger[data-mega-trigger="partners"],
.site-header[data-mega-open="pricing"] .nav-trigger[data-mega-trigger="pricing"] {
  color: var(--cb-primary);
}

.site-header[data-mega-open="partners"] .nav-trigger[data-mega-trigger="partners"]::after,
.site-header[data-mega-open="pricing"] .nav-trigger[data-mega-trigger="pricing"]::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -20px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--cb-primary);
}

.mega-layer[data-active-menu="partners"],
.mega-layer[data-active-menu="pricing"] {
  width: min(calc(100vw - 68px), 1606px);
  padding-top: 25px;
}

.mega-layer[data-active-menu="partners"]::before,
.mega-layer[data-active-menu="pricing"]::before {
  content: "";
  position: absolute;
  z-index: 112;
  top: 11px;
  width: 30px;
  height: 30px;
  border-left: 1px solid rgba(217,222,246,.78);
  border-top: 1px solid rgba(217,222,246,.78);
  border-radius: 4px 0 0 0;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -8px -8px 16px rgba(16,10,116,.025);
}

.mega-layer[data-active-menu="partners"]::before { left: calc(50% - 38px); }
.mega-layer[data-active-menu="pricing"]::before { left: calc(50% + 84px); }

.mega-ref-menu {
  position: relative;
  z-index: 111;
  display: grid !important;
  grid-template-columns: minmax(380px, 455px) minmax(330px, 365px) minmax(270px, 300px) minmax(315px, 352px) !important;
  gap: 27px;
  height: 650px;
  min-height: 0;
  padding: 28px 27px 28px 42px;
  border: 1px solid rgba(217,222,246,.86);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(13, 14, 76, .13), 0 6px 20px rgba(13,14,76,.055);
  overflow: hidden;
}

.mega-ref-menu a { color: inherit; text-decoration: none; }
.mega-ref-menu p,
.mega-ref-menu .mega-section-title,
.mega-ref-menu figure { margin: 0; }

.mega-ref__intro,
.mega-ref__cards,
.mega-ref__paths,
.mega-ref-cta { min-width: 0; }

.mega-ref__intro { padding: 5px 21px 0 0; }
.mega-ref__cards,
.mega-ref__paths {
  padding-top: 5px;
  border-left: 1px solid #e2e5f3;
}
.mega-ref__cards { padding-left: 27px; }
.mega-ref__paths { padding-left: 27px; }

.mega-ref__intro .mega-section-title {
  max-width: 410px;
  color: #07083f;
  font-size: 30px;
  line-height: .99;
  letter-spacing: -.056em;
  font-weight: 900;
}

.mega-ref__intro > p:not(.mega-eyebrow):not(.mega-section-title) {
  max-width: 405px;
  margin-top: 18px;
  color: #253071;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -.012em;
}

.mega-ref-card {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 20px;
  min-height: 122px;
  margin-bottom: 18px;
  padding: 12px 17px 12px 14px;
  border: 1px solid rgba(218,222,245,.92);
  border-radius: 11px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 8px 26px rgba(18,16,104,.055);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mega-ref-card:hover {
  transform: translateY(-1px);
  border-color: rgba(37,16,243,.25);
  box-shadow: 0 16px 36px rgba(18,16,104,.09);
}

.mega-ref-card .mega-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  color: var(--cb-primary);
}

.mega-ref-card .mega-icon svg,
.mega-ref-path .mega-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-ref-card strong {
  display: block;
  color: #090a43;
  font-size: 18px;
  line-height: 1.02;
  letter-spacing: -.038em;
  font-weight: 900;
}

.mega-ref-card small {
  display: block;
  max-width: 206px;
  margin-top: 10px;
  color: #253071;
  font-size: 13.4px;
  line-height: 1.32;
  font-weight: 600;
  letter-spacing: -.012em;
}

.mega-ref-card em {
  display: block;
  margin-top: 9px;
  color: var(--cb-primary);
  font-style: normal;
  font-size: 13.3px;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -.012em;
}

.mega-ref-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 16px;
  background: linear-gradient(145deg, #f9f8ff, #ecebff);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 24px rgba(37,16,243,.08);
}

.mega-ref-card__visual::before,
.mega-ref-card__visual::after,
.mega-ref-card__visual i,
.mega-ref-card__visual b { position: absolute; content: ""; }
.mega-ref-card__visual--reseller::before { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(37,16,243,.22), rgba(255,255,255,.86)); transform: rotate(4deg); }
.mega-ref-card__visual--reseller::after { width: 46px; height: 30px; background: radial-gradient(circle at 12px 10px, #2a16ff 0 7px, transparent 8px), radial-gradient(circle at 28px 8px, #7968ff 0 6px, transparent 7px), radial-gradient(circle at 36px 22px, #b4afff 0 8px, transparent 9px), linear-gradient(135deg, #3122ff, #8e82ff); border-radius: 11px; transform: translateY(7px) rotate(-8deg); box-shadow: 0 12px 18px rgba(42,22,255,.18); }
.mega-ref-card__visual--white::before { width: 55px; height: 55px; border-radius: 13px; background: #fff; box-shadow: 12px 12px 0 #3422ff, 0 18px 30px rgba(37,16,243,.20); }
.mega-ref-card__visual--white b { inset: auto; z-index: 1; color: #2510f3; font-size: 10px; line-height: 1.05; font-weight: 900; letter-spacing: .04em; text-align: center; }
.mega-ref-card__visual--referral::before { width: 50px; height: 35px; background: radial-gradient(circle at 17px 11px, #4634ff 0 11px, transparent 12px), radial-gradient(circle at 34px 12px, #aaa3ff 0 10px, transparent 11px), radial-gradient(ellipse at 18px 31px, #2a16ff 0 17px, transparent 18px), radial-gradient(ellipse at 39px 32px, #c7c3ff 0 15px, transparent 16px); }
.mega-ref-card__visual--tech::before { width: 52px; height: 46px; background: radial-gradient(circle at 10px 11px, #786bff 0 9px, transparent 10px), radial-gradient(circle at 27px 9px, #2510f3 0 9px, transparent 10px), radial-gradient(circle at 43px 15px, #b9b4ff 0 9px, transparent 10px), radial-gradient(circle at 17px 31px, #3122ff 0 10px, transparent 11px), radial-gradient(circle at 36px 33px, #7c70ff 0 10px, transparent 11px); filter: drop-shadow(0 11px 12px rgba(37,16,243,.16)); }

.mega-ref-path {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 20px;
  min-height: 91px;
  border-bottom: 1px solid #dfe3f3;
  color: #07083f;
}

.mega-ref-path .mega-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--cb-primary);
}
.mega-ref-path .mega-icon svg { width: 25px; height: 25px; stroke-width: 2.25; }
.mega-ref-path b { max-width: 228px; color: #11124f; font-size: 15px; line-height: 1.22; font-weight: 700; letter-spacing: -.018em; }
.mega-ref-path:hover b,
.mega-ref-path:hover .mega-arrow { color: var(--cb-primary); }

.mega-ref-cta {
  position: relative;
  min-height: 596px;
  margin: -3px 0 0 1px;
  padding: 60px 39px 42px 44px;
  border-radius: 17px;
  overflow: hidden;
  background: radial-gradient(circle at 93% 31%, rgba(99,75,255,.20), transparent 9%), radial-gradient(circle at 88% 58%, rgba(99,75,255,.24), transparent 9%), radial-gradient(circle at 7% 88%, rgba(99,75,255,.16), transparent 12%), linear-gradient(135deg, #f7f6ff 0%, #eeecff 47%, #f7f7ff 100%);
}

.mega-ref-cta::before,
.mega-ref-cta::after { content: ""; position: absolute; left: -26%; right: -10%; border-radius: 50%; border-top: 1px solid rgba(255,255,255,.96); border-bottom: 1px solid rgba(114,92,255,.11); transform: rotate(-11deg); pointer-events: none; }
.mega-ref-cta::before { top: 190px; height: 245px; }
.mega-ref-cta::after { top: 238px; height: 380px; transform: rotate(-15deg); }
.mega-ref-cta .mega-section-title { position: relative; z-index: 1; max-width: 278px; margin-top: 31px; color: #07083f; font-size: 31px; line-height: 1.04; letter-spacing: -.055em; font-weight: 900; }
.mega-ref-cta > p:not(.mega-pill):not(.mega-section-title) { position: relative; z-index: 1; max-width: 292px; margin-top: 24px; color: #253071; font-size: 17px; line-height: 1.45; font-weight: 500; letter-spacing: -.014em; }
.mega-ref-cta .mega-diagnostic-btn { width: 254px; margin-top: 47px; }
.mega-ref-cta--partners .mega-diagnostic-btn { width: 292px; margin-top: 95px; }
.mega-ref-cta .mega-ghost-link { margin-top: 46px; }
.mega-ref-cta--partners .mega-ghost-link { margin-top: 28px; }
.mega-ref-cta--partners .mega-pill,
.mega-ref-cta--pricing .mega-pill { margin: 0; }

.mega-ref-menu .mega-diagnostic-btn,
.mega-ref-menu .mega-diagnostic-btn span,
.mega-ref-menu .mega-diagnostic-btn svg { color: #fff !important; stroke: currentColor; }

.mega-cta-cubes { position: absolute; right: 40px; bottom: 178px; z-index: 1; width: 110px; height: 80px; pointer-events: none; }
.mega-cta-cubes i { position: absolute; width: 56px; height: 56px; border: 13px solid #3924f6; border-radius: 15px; transform: rotate(18deg); box-shadow: inset 0 0 18px rgba(255,255,255,.65), 0 14px 24px rgba(37,16,243,.24); }
.mega-cta-cubes i:first-child { left: 6px; top: 18px; }
.mega-cta-cubes i:last-child { right: 5px; top: 1px; opacity: .68; }
.mega-ref-cta--partners .mega-cta-cubes { right: 36px; top: 356px; bottom: auto; }
.mega-ref-cta--partners .mega-diagnostic-btn { position: relative; z-index: 2; }

.partner-orbit { position: relative; width: min(100%, 410px); height: 250px; margin: 18px 0 0 -2px; }
.partner-orbit__rings,
.partner-orbit__rings span,
.partner-orbit__center { position: absolute; inset: 0; margin: auto; }
.partner-orbit__rings { width: 248px; height: 190px; }
.partner-orbit__rings span { border: 1px solid rgba(112,96,255,.18); border-radius: 50%; }
.partner-orbit__rings span:nth-child(1) { width: 116px; height: 116px; }
.partner-orbit__rings span:nth-child(2) { width: 168px; height: 168px; }
.partner-orbit__rings span:nth-child(3) { width: 236px; height: 184px; }
.partner-orbit__center { display: grid; place-items: center; width: 112px; height: 112px; border: 1px solid rgba(184,186,255,.7); border-radius: 999px; color: #07083f; background: rgba(255,255,255,.84); box-shadow: 0 12px 30px rgba(37,16,243,.08); font-size: 18px; font-weight: 900; letter-spacing: -.05em; }
.partner-orbit__node { position: absolute; display: grid; justify-items: center; gap: 8px; width: 100px; color: #17236f; font-size: 10px; line-height: 1.12; font-weight: 900; text-align: center; }
.partner-orbit__node span { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid rgba(213,217,246,.9); border-radius: 999px; color: var(--cb-primary); background: rgba(255,255,255,.88); box-shadow: 0 10px 22px rgba(37,16,243,.07); }
.partner-orbit__node svg,
.partner-orbit__handshake { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.partner-orbit__node svg { width: 25px; height: 25px; stroke-width: 2.25; }
.partner-orbit__node--reseller { left: 0; top: 47px; }
.partner-orbit__node--white { right: 2px; top: 46px; }
.partner-orbit__node--referral { left: 3px; bottom: 18px; }
.partner-orbit__node--tech { right: 0; bottom: 16px; }
.partner-orbit__handshake { position: absolute; left: 122px; bottom: -4px; width: 145px; height: 66px; color: #2510f3; stroke-width: 8; filter: drop-shadow(0 12px 16px rgba(37,16,243,.18)); }

.mega-mini-proof,
.mega-pricing-chips { display: grid; gap: 10px; }
.mega-mini-proof span,
.mega-pricing-chips span { display: inline-flex; align-items: center; min-width: 0; gap: 9px; min-height: 46px; padding: 9px 12px; border: 1px solid rgba(218,222,245,.86); border-radius: 9px; color: #17236f; background: rgba(255,255,255,.86); font-size: 10.5px; line-height: 1.12; font-weight: 800; }
.mega-mini-proof svg,
.mega-pricing-chips svg { width: 22px; height: 22px; flex: 0 0 22px; fill: none; stroke: var(--cb-primary); stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.mega-mini-proof .flag-inline { width: 24px; height: 24px; flex: 0 0 24px; border-radius: 999px; box-shadow: 0 0 0 1px rgba(7,8,63,.1), 0 6px 14px rgba(7,8,63,.08); }
.mega-mini-proof--partners { grid-template-columns: repeat(4, 1fr); margin-top: 19px; }

.pricing-estimator { width: min(100%, 406px); margin-top: 20px; padding: 13px 18px 15px; border: 1px solid rgba(218,222,245,.9); border-radius: 11px; background: rgba(255,255,255,.94); box-shadow: 0 10px 26px rgba(18,16,104,.055); }
.pricing-estimator__tabs { display: grid; grid-template-columns: 1fr 1fr 64px; align-items: center; height: 28px; color: #17236f; font-size: 11px; font-weight: 800; text-align: center; }
.pricing-estimator__tabs span,
.pricing-estimator__tabs em { display: inline-grid; place-items: center; height: 28px; font-style: normal; }
.pricing-estimator__tabs .is-active { color: var(--cb-primary); border-bottom: 2px solid var(--cb-primary); }
.pricing-estimator__tabs em { justify-self: center; min-width: 36px; height: 18px; border: 1px solid #dbe0fa; border-radius: 999px; color: var(--cb-primary); font-size: 10px; }
.pricing-estimator__head { position: relative; margin-top: 16px; }
.pricing-estimator__head small { display: block; color: #576096; font-size: 11px; font-weight: 800; }
.pricing-estimator__head strong { display: block; margin-top: 6px; color: #07083f; font-size: 22px; font-weight: 900; letter-spacing: -.04em; }
.pricing-estimator__head b { position: absolute; right: 6px; bottom: 5px; min-width: 88px; height: 22px; display: inline-grid; place-items: center; border-radius: 999px; color: #6b629d; background: #efedff; font-size: 10px; font-weight: 800; }
.pricing-estimator__slider { position: relative; height: 18px; margin: 10px 6px 11px; border-top: 4px solid #eeeefd; }
.pricing-estimator__slider span { position: absolute; top: -4px; left: 0; width: 55%; border-top: 4px solid var(--cb-primary); }
.pricing-estimator__slider span::after { content: ""; position: absolute; right: -5px; top: -7px; width: 11px; height: 11px; border-radius: 999px; background: var(--cb-primary); box-shadow: 0 0 0 3px rgba(37,16,243,.12); }
.pricing-estimator__rows span,
.pricing-estimator__total { display: grid; grid-template-columns: 16px minmax(0, 1fr) 88px 54px; align-items: center; min-height: 25px; color: #344077; font-size: 10.5px; font-weight: 800; }
.pricing-estimator__rows i { width: 12px; height: 12px; border: 1px solid #bfc5f2; border-radius: 4px; }
.pricing-estimator__rows em { color: #6a6797; font-style: normal; text-align: right; }
.pricing-estimator__rows strong { color: #07083f; text-align: right; }
.pricing-estimator__total { grid-template-columns: minmax(0, 1fr) 132px; margin-top: 8px; padding-top: 10px; border-top: 1px solid #dfe3f3; color: #07083f; }
.pricing-estimator__total strong { color: var(--cb-primary); text-align: right; font-size: 15px; font-weight: 900; }

.mega-pricing-chips { grid-template-columns: repeat(3, 1fr); margin-top: 11px; }
.mega-pricing-chips span { min-height: 35px; justify-content: center; font-size: 11px; white-space: nowrap; }
.mega-pricing-chips svg { width: 18px; height: 18px; flex-basis: 18px; }
.mega-mini-proof--pricing { grid-template-columns: repeat(3, 1fr); margin-top: 20px; padding-top: 20px; border-top: 1px solid #dfe3f3; }
.mega-mini-proof--pricing span { border: 0; background: transparent; padding: 0; }

@media (min-width: 1121px) {
  #mega-partners .mega-ref-card {
    grid-template-columns: 64px minmax(0, 1fr) 18px;
    gap: 17px;
    min-height: 106px;
    margin-bottom: 12px;
    padding: 9px 15px 9px 14px;
  }
  #mega-partners .mega-ref-card__visual {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }
  #mega-partners .mega-ref-card strong { font-size: 17px; line-height: 1.02; }
  #mega-partners .mega-ref-card small { margin-top: 7px; font-size: 12.2px; line-height: 1.22; }
  #mega-partners .mega-all-link { margin-top: 2px; }

  #mega-pricing .mega-ref-card {
    grid-template-columns: 60px minmax(0, 1fr) 18px;
    gap: 18px;
    min-height: 102px;
    margin-bottom: 11px;
    padding: 9px 15px 9px 14px;
  }
  #mega-pricing .mega-ref-card .mega-icon {
    width: 60px;
    height: 60px;
    border-radius: 13px;
  }
  #mega-pricing .mega-ref-card strong { font-size: 17px; line-height: 1; }
  #mega-pricing .mega-ref-card small { margin-top: 7px; font-size: 12.2px; line-height: 1.22; }
  #mega-pricing .mega-ref-card em { margin-top: 6px; font-size: 12.4px; line-height: 1.14; }
  #mega-pricing .mega-all-link { margin-top: 2px; }
}

@media (max-width: 1500px) and (min-width: 1121px) {
  .mega-layer[data-active-menu="partners"],
  .mega-layer[data-active-menu="pricing"] { width: min(calc(100vw - 40px), 1358px); }
  .mega-layer[data-active-menu="partners"]::before { left: calc(50% - 28px); }
  .mega-layer[data-active-menu="pricing"]::before { left: calc(50% + 74px); }
  .mega-ref-menu { grid-template-columns: minmax(300px, 400px) minmax(270px, 306px) minmax(230px, 270px) minmax(260px, 318px) !important; gap: 20px; height: 650px; padding: 24px 20px 26px 28px; }
  .mega-ref__intro .mega-section-title { font-size: 27px; }
  .mega-ref__intro > p:not(.mega-eyebrow):not(.mega-section-title) { font-size: 15.5px; }
  .partner-orbit { transform: scale(.9); transform-origin: left top; height: 222px; }
  .mega-mini-proof--partners span { font-size: 9.5px; padding-inline: 8px; }
  .mega-ref-card { min-height: 110px; gap: 16px; margin-bottom: 15px; grid-template-columns: 66px minmax(0, 1fr) 18px; }
  #mega-pricing .mega-ref-card { min-height: 111px; margin-bottom: 14px; padding-block: 10px; }
  .mega-ref-card__visual,
  .mega-ref-card .mega-icon { width: 66px; height: 66px; }
  .mega-ref-card strong { font-size: 16.5px; }
  .mega-ref-card small { font-size: 12.2px; }
  #mega-pricing .mega-ref-card small { margin-top: 8px; line-height: 1.25; }
  #mega-pricing .mega-ref-card em { margin-top: 7px; line-height: 1.18; }
  .mega-ref-path { min-height: 82px; gap: 15px; }
  .mega-ref-cta { min-height: 556px; padding-inline: 32px; }
  .mega-ref-cta .mega-section-title { font-size: 28px; }
  .pricing-estimator { padding-inline: 13px; }
  .mega-pricing-chips span { font-size: 9.5px; }
  .mega-ref-cta--partners .mega-diagnostic-btn { width: 100%; }
}

@media (max-width: 1320px) {
  .site-header[data-mega-open="partners"] .nav-trigger[data-mega-trigger="partners"]::after,
  .site-header[data-mega-open="pricing"] .nav-trigger[data-mega-trigger="pricing"]::after,
  .mega-layer[data-active-menu="partners"]::before,
  .mega-layer[data-active-menu="pricing"]::before { display: none; }
  .mega-layer[data-active-menu="partners"],
  .mega-layer[data-active-menu="pricing"] { width: 100%; padding-top: 8px; }
  .mega-ref-menu { display: grid !important; grid-template-columns: 1fr !important; gap: 18px; height: auto; min-height: 0; max-height: min(76vh, 780px); overflow: auto; padding: 18px; border-radius: 20px; }
  .mega-solutions-exact { grid-template-columns: 1fr; height: auto; min-height: 0; max-height: min(76vh, 780px); overflow: auto; }
  .mega-ref__intro,
  .mega-ref__cards,
  .mega-ref__paths,
  .mega-ref-cta { padding: 0; margin: 0; border-left: 0; }
  .mega-ref__intro .mega-section-title,
  .mega-ref__intro > p:not(.mega-eyebrow):not(.mega-section-title),
  .mega-ref-cta .mega-section-title,
  .mega-ref-cta > p:not(.mega-pill):not(.mega-section-title) { max-width: none; }
  .partner-orbit { max-width: 410px; }
  .mega-mini-proof--partners,
  .mega-mini-proof--pricing,
  .mega-pricing-chips { grid-template-columns: 1fr 1fr; }
  .mega-ref-card small,
  .mega-ref-path b { max-width: none; }
  .mega-ref-cta { min-height: 0; padding: 28px; }
  .mega-ref-cta .mega-diagnostic-btn,
  .mega-ref-cta--partners .mega-diagnostic-btn { width: 100%; margin-top: 24px; }
  .mega-ref-cta .mega-ghost-link,
  .mega-ref-cta--partners .mega-ghost-link { margin-top: 22px; }
  .mega-cta-cubes { display: none; }
}

@media (max-width: 520px) {
  .mega-ref-menu { padding: 14px; gap: 14px; }
  .partner-orbit { display: none; }
  .pricing-estimator { padding-inline: 12px; }
  .pricing-estimator__tabs { grid-template-columns: 1fr 1fr 58px; }
  .pricing-estimator__head b { position: static; margin-top: 8px; width: max-content; }
  .pricing-estimator__rows span { grid-template-columns: 14px minmax(0, 1fr) 66px 48px; font-size: 9.5px; }
  .mega-ref-card { grid-template-columns: 54px minmax(0, 1fr) 16px; gap: 12px; min-height: 92px; padding: 12px; }
  .mega-ref-card__visual,
  .mega-ref-card .mega-icon { width: 50px; height: 50px; border-radius: 12px; }
  .mega-ref-card strong { font-size: 16px; }
  .mega-ref-card small,
  .mega-ref-card em { font-size: 12px; }
  .mega-ref-path { grid-template-columns: 38px minmax(0, 1fr) 16px; gap: 10px; min-height: 62px; }
  .mega-mini-proof--partners,
  .mega-mini-proof--pricing,
  .mega-pricing-chips { grid-template-columns: 1fr; }
  .mega-ref-cta { padding: 22px; }
  .mega-ref-cta .mega-section-title { font-size: 26px; }
}

.section-anchor {
  position: relative;
  top: calc(var(--header-h, 72px) * -1);
  height: 0;
  pointer-events: none;
}

@media (min-width: 1121px) {
  .home-hero__visual {
    width: min(1012px, calc(100% - 560px));
    height: auto;
    aspect-ratio: 1012 / 470;
  }
}

@media (max-width: 1500px) and (min-width: 1121px) {
  .home-hero__visual {
    width: min(880px, calc(100% - 500px));
    height: auto;
    aspect-ratio: 880 / 470;
  }
}

/* Logo 2026: the wider supplied wordmark needs the tablet header/footer to
   switch to the compact layout before the old 1120px breakpoint. */
@media (min-width: 761px) and (max-width: 1320px) {
  :root {
    --header-container: min(calc(100% - 40px), 980px);
    --main-container: min(calc(100% - 40px), 980px);
    --header-h: auto;
  }

  .site-header {
    height: auto;
    min-height: 72px;
  }

  .site-header__inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding-block: 16px;
  }

  .brand { justify-self: start; }

  .menu-toggle {
    display: inline-grid;
    grid-template-columns: 20px auto;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid var(--cb-border);
    border-radius: 10px;
    background: #fff;
    color: var(--cb-ink);
    font-weight: 900;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--cb-primary);
    border-radius: 99px;
  }

  .menu-toggle span:nth-child(2) { margin-top: 4px; }
  .menu-toggle span:nth-child(3) { margin-top: 8px; }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding-top: 6px;
  }

  .site-nav.is-open { display: flex; }

  .site-nav a,
  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 13px 15px;
    border-radius: 12px;
    background: #f7f7fe;
  }

  .header-actions {
    justify-content: space-between;
    gap: 14px;
  }

  .login-link { display: none; }
  .header-cta { flex: 1; min-width: 0; }

  .mega-layer {
    position: static;
    width: 100%;
    transform: none;
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .mega-panel,
  .mega-panel--solutions { grid-template-columns: 1fr; }
  .mega-panel article { min-height: auto; }

  .home-hero {
    height: auto;
    min-height: 0;
    padding-top: 34px;
    display: grid;
    gap: 16px;
  }

  .home-hero__copy { width: min(100%, 720px); }
  .hero-lead { width: min(100%, 680px); }

  .home-hero__visual {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 968px);
    height: auto;
    aspect-ratio: 968 / 381;
    margin: -10px auto 0;
  }

  .feature-strip { grid-template-columns: repeat(2, 1fr); height: auto; margin-top: 18px; }
  .feature-item:nth-child(2n)::after { display: none; }
  .feature-item:last-child { grid-column: 1 / -1; }
  .solution-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-strip { grid-template-columns: 1fr; }
  .why-title-card { min-height: 66px; }
  .why-item::after { display: none; }
  .diagnostic-banner { grid-template-columns: 70px 1fr; gap: 18px; padding: 18px 22px; }
  .diagnostic-banner__button { grid-column: 2; width: 220px; }
  .diagnostic-icon { justify-self: center; margin: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__logo { padding-top: 0; }
  .footer-legal { padding-bottom: 32px; }
  .socials { left: 0; right: auto; bottom: 0; }
}

/* Restored Neoo exact page styles — required by neoo.html. */
body.neoo-page--dark {
  --neoo-dark: #02051d;
  --neoo-ink: #ffffff;
  min-width: 320px;
  margin: 0;
  color: var(--neoo-ink);
  background: #02051d;
  font-family: var(--font-family, 'Cerebri Sans'), Inter, system-ui, sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.neoo-page--dark .skip-link { color: #fff; }
.neoo-dark-main { min-height: 100vh; background: #02051d; }
.neoo-dark-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.neoo-dark-hero::before,
.neoo-dark-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.neoo-dark-hero::before { inset: 0; z-index: 0; }
.neoo-dark-hero::after {
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(34,74,255,.6), transparent 68%);
  filter: blur(10px);
}
.neoo-dark-bg,
.neoo-dark-bg span { position: absolute; pointer-events: none; }
.neoo-dark-bg { inset: 0; z-index: 0; overflow: hidden; }
.neoo-dark-bg span { border-radius: 999px; filter: blur(58px); opacity: .62; }
.neoo-dark-bg span:nth-child(3) { left: -120px; bottom: -120px; width: 420px; height: 220px; background: rgba(44,48,255,.34); }
.neoo-dark-header { position: absolute; inset: 0 0 auto; z-index: 30; height: 108px; }
.neoo-brand--dark { position: absolute; display: inline-flex; align-items: center; text-decoration: none; }
.neoo-brand--dark img { display: block; height: auto; object-fit: contain; }
.neoo-dark-copy { position: absolute; color: #fff; }
.neoo-dark-copy h1 {
  margin: 0;
  color: #fff;
  font-family: inherit;
  text-wrap: balance;
}
.neoo-dark-copy h1 span { color: transparent; -webkit-text-fill-color: transparent; }
.neoo-dark-lead { margin: 0; font-weight: 500; letter-spacing: -.018em; }
.neoo-dark-actions { display: flex; align-items: center; }
.neoo-dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
  white-space: nowrap;
}
.neoo-dark-btn svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.neoo-dark-btn--primary { background: linear-gradient(135deg, #6f5cff 0%, #392cff 100%); box-shadow: 0 18px 38px rgba(49,45,255,.36); }
.neoo-dark-btn--ghost { border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.05); }
.neoo-dark-modules {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 560;
  letter-spacing: -.018em;
}
.neoo-dark-modules li { position: relative; display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.neoo-dark-modules svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.neoo-dark-modules li:not(:last-child)::after { content: ""; display: inline-block; width: 2px; height: 18px; border-radius: 999px; opacity: .8; }
.neoo-dark-visual { position: absolute; }
.neoo-reference-device { position: absolute; margin: 0; }
.neoo-reference-device img { display: block; object-fit: contain; }
.neoo-float-card { display: none; }
.neoo-crm-device,
.neoo-device-glass { display: none; }

/* Neoo exact localized visual reset — user references 2026-06-29 21:08. */
body.neoo-page--exact { background: #020519; }
.neoo-page--exact .neoo-dark-hero {
  min-height: 100vh;
  background:
    radial-gradient(720px 420px at 91% 14%, rgba(50,65,255,.88), transparent 66%),
    radial-gradient(820px 420px at 77% 88%, rgba(16,54,230,.78), transparent 64%),
    radial-gradient(570px 250px at 57% 96%, rgba(41,77,255,.74), transparent 68%),
    linear-gradient(105deg, #020517 0%, #030622 44%, #06125a 68%, #08145b 100%);
}
.neoo-page--exact .neoo-dark-hero::before { background: linear-gradient(90deg, rgba(255,255,255,.035), transparent 24%, rgba(255,255,255,.02) 80%, transparent); opacity: .8; }
.neoo-page--exact .neoo-dark-hero::after { left: 520px; right: 10px; bottom: -86px; height: 250px; opacity: .78; }
.neoo-page--exact .neoo-dark-bg span:nth-child(1) { right: -76px; top: 90px; width: 600px; height: 240px; background: rgba(46, 62, 255, .58); }
.neoo-page--exact .neoo-dark-bg span:nth-child(2) { left: 560px; bottom: 72px; width: 700px; height: 100px; background: rgba(20, 65, 255, .6); }
.neoo-page--exact .neoo-dark-header { position: absolute; inset: 0 0 auto; z-index: 30; height: 108px; pointer-events: none; }
.neoo-page--exact .neoo-brand--dark { left: 40px; top: 37px; width: 147px; height: 40px; filter: drop-shadow(0 12px 22px rgba(0,0,0,.26)); }
.neoo-page--exact .neoo-brand--dark img { width: 147px; }
.neoo-exact-nav,
.neoo-exact-header__actions,
.neoo-exact-nav a,
.neoo-exact-login,
.neoo-exact-demo,
.neoo-exact-lang { pointer-events: auto; }
.neoo-exact-nav { position: absolute; left: 458px; top: 46px; display: flex; align-items: center; gap: 49px; }
.neoo-exact-nav a,
.neoo-exact-login { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.96); text-decoration: none; font-size: 18px; line-height: 1; font-weight: 560; letter-spacing: -.022em; white-space: nowrap; }
.neoo-exact-nav svg,
.neoo-exact-lang svg,
.neoo-exact-demo svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.neoo-exact-header__actions { position: absolute; right: 38px; top: 29px; display: flex; align-items: center; gap: 40px; }
.neoo-exact-lang { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 108px; height: 49px; border: 1px solid rgba(255,255,255,.28); border-radius: 10px; color: #fff; background: rgba(5,9,39,.26); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); font: inherit; font-size: 16px; font-weight: 600; }
.neoo-exact-lang svg:first-child { width: 21px; height: 21px; }
.neoo-exact-lang svg:last-child { width: 15px; height: 15px; }
.neoo-exact-login { font-size: 18px; font-weight: 560; }
.neoo-exact-demo { display: inline-flex; align-items: center; justify-content: center; gap: 21px; min-width: 232px; height: 51px; padding: 0 21px 0 25px; border-radius: 9px; color: #fff; text-decoration: none; font-size: 19px; font-weight: 650; letter-spacing: -.02em; background: linear-gradient(135deg, #6f5cff 0%, #422eff 100%); box-shadow: 0 18px 36px rgba(49,45,255,.36), inset 0 1px 0 rgba(255,255,255,.18); white-space: nowrap; }
.neoo-page--exact .neoo-dark-copy { left: 56px; top: 192px; width: 558px; z-index: 8; }
.neoo-page--exact .neoo-dark-copy h1 { max-width: 548px; font-size: 82px; line-height: 1.14; letter-spacing: -.066em; font-weight: 850; }
.neoo-page--exact .neoo-dark-copy h1 span { background: linear-gradient(180deg, #6958ff 0%, #513cff 46%, #3429d9 100%); -webkit-background-clip: text; background-clip: text; }
.neoo-page--exact .neoo-dark-lead { margin-top: 22px; max-width: 560px; font-size: 24px; line-height: 1.42; color: rgba(255,255,255,.89); }
.neoo-page--exact .neoo-dark-actions { margin-top: 31px; gap: 32px; }
.neoo-page--exact .neoo-dark-btn { min-height: 62px; border-radius: 8px; font-size: 20px; font-weight: 620; }
.neoo-page--exact .neoo-dark-btn--primary { min-width: 252px; }
.neoo-page--exact .neoo-dark-btn--ghost { min-width: 216px; }
.neoo-page--exact .neoo-dark-modules { width: 650px; flex-wrap: nowrap; margin-top: 47px; gap: 21px; font-size: 20px; color: rgba(255,255,255,.9); }
html[lang="en"] .neoo-page--exact .neoo-dark-actions { margin-top: 62px; }
.neoo-page--exact .neoo-dark-modules svg { width: 25px; height: 25px; stroke: #5f79ff; }
.neoo-page--exact .neoo-dark-modules li:not(:last-child)::after { margin-left: 10px; background: #516cff; }
.neoo-page--exact .neoo-dark-visual { position: absolute; inset: 0; z-index: 4; pointer-events: none; transform: none; }
.neoo-page--exact .neoo-reference-device { position: absolute; left: 555px; top: 82px; width: 1117px; height: 859px; margin: 0; z-index: 5; }
.neoo-page--exact .neoo-reference-device img { display: block; width: 1117px; height: 859px; object-fit: contain; }
.neoo-page--exact .neoo-reference-device ~ .neoo-float-card { display: none; }
.neoo-page--exact .neoo-crm-device,
.neoo-page--exact .neoo-device-glass { display: none; }
@media (max-width: 1440px) {
  .neoo-page--exact .neoo-brand--dark { left: 34px; top: 34px; width: 158px; transform: none; }
  .neoo-page--exact .neoo-brand--dark img { width: 158px; }
  .neoo-page--exact .neoo-exact-nav { left: 390px; gap: 36px; }
  .neoo-page--exact .neoo-exact-header__actions { right: 28px; gap: 27px; }
  .neoo-page--exact .neoo-dark-copy { left: 48px; top: 185px; transform: scale(.92); transform-origin: left top; }
  .neoo-page--exact .neoo-reference-device { left: 505px; top: 90px; transform: scale(.9); transform-origin: left top; }
}
@media (max-width: 1120px) {
  .neoo-page--exact .neoo-dark-header { height: auto; }
  .neoo-page--exact .neoo-brand--dark { left: 16px; top: 26px; width: 126px; }
  .neoo-page--exact .neoo-brand--dark img { width: 126px; }
  .neoo-page--exact .neoo-exact-nav,
  .neoo-page--exact .neoo-exact-header__actions { display: none; }
  .neoo-page--exact .neoo-dark-hero { padding: 104px 14px 28px; min-height: 100svh; }
  .neoo-page--exact .neoo-dark-copy { position: relative; left: auto; top: auto; width: 100%; transform: none; }
  .neoo-page--exact .neoo-dark-copy h1 { font-size: clamp(47px, 13.5vw, 58px); line-height: 1.02; }
  .neoo-page--exact .neoo-dark-lead { max-width: none; margin-top: 22px; font-size: 16px; line-height: 1.45; }
  .neoo-page--exact .neoo-dark-actions { flex-direction: column; align-items: stretch; gap: 13px; margin-top: 24px; }
  .neoo-page--exact .neoo-dark-btn { width: 100%; min-height: 56px; font-size: 17px; }
  .neoo-page--exact .neoo-dark-modules { width: 100%; flex-wrap: initial; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 24px; font-size: 15px; }
  .neoo-page--exact .neoo-dark-modules li:not(:last-child)::after { display: none; }
  .neoo-page--exact .neoo-dark-visual { position: relative; inset: auto; width: 100%; height: 445px; margin-top: 18px; }
  .neoo-page--exact .neoo-reference-device { left: 50%; top: 0; width: 660px; height: auto; transform: translateX(-50%); }
  .neoo-page--exact .neoo-reference-device img { width: 660px; height: auto; }
}
@media (max-width: 520px) {
  .neoo-page--exact .neoo-dark-visual { height: 356px; }
  .neoo-page--exact .neoo-reference-device { width: 540px; }
  .neoo-page--exact .neoo-reference-device img { width: 540px; }
}

/* ---- Mega menu Plateforme (2026-07-02, UX) ---- */
.mega-layer[data-active-menu="platform"] {
  width: min(calc(100vw - 68px), 1606px);
  padding-top: 25px;
}

.mega-layer[data-active-menu="platform"]::before {
  content: "";
  position: absolute;
  z-index: 112;
  top: 11px;
  left: calc(50% - 330px);
  width: 30px;
  height: 30px;
  border-left: 1px solid rgba(217,222,246,.78);
  border-top: 1px solid rgba(217,222,246,.78);
  border-radius: 4px 0 0 0;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -8px -8px 16px rgba(16,10,116,.025);
}

.site-header[data-mega-open="platform"] .nav-trigger[data-mega-trigger="platform"] {
  color: var(--cb-primary);
}

.site-header[data-mega-open="platform"] .nav-trigger[data-mega-trigger="platform"]::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -20px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--cb-primary);
}

@media (max-width: 1320px) {
  .site-header[data-mega-open="platform"] .nav-trigger[data-mega-trigger="platform"]::after,
  .mega-layer[data-active-menu="platform"]::before { display: none; }
}

/* ---- Confort de lecture & accessibilité (2026-07-02, UX) ---- */
html { scroll-behavior: smooth; }

:where(section[id], footer[id], div[id], article[id], h2[id], li[id]) { scroll-margin-top: 116px; }

@media (max-width: 760px) {
  :where(section[id], footer[id], div[id], article[id], h2[id], li[id]) { scroll-margin-top: 152px; }
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid rgba(37, 16, 243, .55);
  outline-offset: 2px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---- Fil d'Ariane pages produit (2026-07-02, UX) ---- */
.page-breadcrumb {
  width: var(--main-container);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px auto -34px;
  position: relative;
  z-index: 6;
  color: #5a639e;
  font-size: 13px;
  font-weight: 600;
}
.page-breadcrumb a { display: inline-flex; align-items: center; gap: 6px; color: inherit; text-decoration: none; }
.page-breadcrumb a:hover { color: var(--cb-primary); text-decoration: underline; }
.page-breadcrumb a svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.page-breadcrumb span[aria-hidden] { color: #b3b8dd; }
.page-breadcrumb b { color: #10124d; font-weight: 800; }
@media (max-width: 640px) {
  .page-breadcrumb { margin-bottom: -22px; }
}

/* Fil d'Ariane produit : Accueil / Solutions / Produit / Action,
   posé juste sous la topbar unifiée, lisible sur hero sombre. */
main:has(> .page-breadcrumb--product) { position: relative; }
.page-breadcrumb--product {
  position: absolute;
  top: var(--breadcrumb-top, 14px);
  left: var(--cb-topbar-pad-x);
  right: auto;
  z-index: 50;
  width: max-content;
  max-width: calc(100% - 2 * var(--cb-topbar-pad-x));
  margin: 0;
  padding: 8px 18px;
  border: 1px solid rgba(146, 176, 216, .16);
  border-radius: 999px;
  background: rgba(4, 10, 22, .52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(214, 224, 246, .78);
}
.page-breadcrumb--product b { color: #fff; }
.page-breadcrumb--product span[aria-hidden] { color: rgba(214, 224, 246, .42); }
.page-breadcrumb--product a:hover { color: #fff; }
.page-breadcrumb--product .page-breadcrumb__action { color: #9fc2ff; font-weight: 700; }
.page-breadcrumb--product .page-breadcrumb__action:hover { color: #cfe3ff; }
/* Topbars absolues (hero plein écran) : décaler sous la bande de 100px */
.serenity-page main:has(> .page-breadcrumb--product),
.neoo-page--dark-hero main:has(> .page-breadcrumb--product) {
  --breadcrumb-top: calc(var(--cb-topbar-h) + 14px);
}
@media (min-width: 1321px) {
  .solution-page--deskio main:has(> .page-breadcrumb--product) {
    --breadcrumb-top: calc(var(--cb-topbar-h) + 14px);
  }
}
@media (max-width: 760px) {
  .page-breadcrumb--product { display: none; }
}

.mega-ref-menu--platform .mega-dashboard-card { max-height: 236px; overflow: hidden; border-radius: 14px; }
.mega-ref-menu--platform .mega-dashboard-card img { width: 100%; height: 236px; object-fit: cover; object-position: center 38%; }
.mega-ref-menu--platform .mega-mini-proof { margin-top: 14px; }

/* ===== Sections Tarifs & Partenaires (home) — 2026-07-08 ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(217, 222, 246, 0.86);
  border-radius: 20px;
  padding: 26px 24px;
  transition: transform 0.18s ease;
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card h3 { margin: 0; font-size: 19px; }
.pricing-card__price { margin: 0; font-variant-numeric: tabular-nums; }
.pricing-card__price strong { font-size: 26px; font-weight: 800; }
.pricing-card__unit { color: #5c5f7d; font-size: 14px; }
.pricing-card > p:not(.pricing-card__price) { margin: 0; color: #5c5f7d; line-height: 1.55; }
.pricing-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cb-primary, #2510f3);
  font-weight: 700;
  text-decoration: none;
}
.pricing-card__link:hover span { text-decoration: underline; }
.pricing-card__link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.pricing-legal { margin-top: 22px; color: #5c5f7d; font-size: 14px; }
.pricing-legal a { color: var(--cb-primary, #2510f3); }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}
.partners-card {
  background: #fff;
  border: 1px solid rgba(217, 222, 246, 0.86);
  border-radius: 20px;
  padding: 26px 24px;
}
.partners-card svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--cb-primary, #2510f3);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 12px;
}
.partners-card h3 { margin: 0 0 8px; font-size: 19px; }
.partners-card p { margin: 0; color: #5c5f7d; line-height: 1.55; }
.partners-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

@media (max-width: 1120px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partners-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ===== Finitions transverses — 2026-07-08 ===== */
a,
button { touch-action: manipulation; }

.site-nav a:hover,
.nav-trigger:hover,
.login-link:hover { color: var(--cb-primary, #2510f3); }

.site-nav a[aria-current="location"] {
  color: var(--cb-primary, #2510f3);
}

.site-nav a[aria-current="location"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.footer-columns a:hover,
.footer-legal a:hover { color: var(--cb-primary, #2510f3); text-decoration: underline; }

.mega-ghost-link:hover span,
.mega-all-link:hover span { text-decoration: underline; }

.mega-layer,
.mega-ref-menu { overscroll-behavior: contain; }

h1,
.section-intro h2 { text-wrap: balance; }

.pricing-estimator { font-variant-numeric: tabular-nums; }

/* ===== Contrôle mobile compact — navigation responsive 2026-07-18 ===== */
@media (max-width: 1120px) {
  .menu-toggle {
    position: relative;
    display: block;
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 12px;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
  }

  .menu-toggle span,
  .menu-toggle span:nth-child(2),
  .menu-toggle span:nth-child(3) {
    position: absolute;
    left: 14px;
    display: block;
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 99px;
    background: var(--cb-primary);
    transition: top .2s ease, opacity .16s ease, transform .2s ease;
  }

  .menu-toggle span:nth-child(1) { top: 16px; }
  .menu-toggle span:nth-child(2) { top: 23px; }
  .menu-toggle span:nth-child(3) { top: 30px; }
  .menu-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }

  .menu-toggle[aria-expanded="true"] {
    border-color: rgba(37, 16, 243, .32);
    background: #f3f2ff;
    box-shadow: 0 10px 24px rgba(37, 16, 243, .12);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 23px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 23px; transform: rotate(-45deg); }
}

/* ===== Homepage solution-first conversion layer — 2026-07-09 ===== */
.home-page .site-header {
  position: sticky;
  top: 0;
  z-index: 150;
  transition: box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.home-page .site-header.is-scrolled {
  border-bottom-color: rgba(202, 207, 239, .92);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 38px rgba(16, 10, 116, .08);
}

.home-page .hero-visual-note {
  position: absolute;
  z-index: 2;
  right: 78px;
  bottom: 12px;
  margin: 0;
  padding: 5px 9px;
  border: 1px solid rgba(203, 208, 241, .8);
  border-radius: 999px;
  color: #52609a;
  background: rgba(255, 255, 255, .82);
  font-size: 9px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .01em;
  backdrop-filter: blur(8px);
}

.solution-finder::before {
  background:
    radial-gradient(circle at 14% 20%, rgba(100, 79, 255, .10), transparent 31%),
    radial-gradient(circle at 92% 58%, rgba(37, 16, 243, .08), transparent 29%),
    linear-gradient(180deg, #ffffff 0%, #f8f8ff 52%, #ffffff 100%);
  border-top: 1px solid rgba(226, 229, 246, .72);
  border-bottom: 1px solid rgba(226, 229, 246, .72);
}

.solution-finder__intro {
  max-width: 860px;
  margin-bottom: 38px;
}

.solution-finder__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.solution-tab {
  min-width: 0;
  min-height: 112px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(205, 211, 248, .92);
  border-radius: 20px;
  color: #11124f;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 36px rgba(28, 25, 99, .055);
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, color .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.solution-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 16, 243, .35);
  box-shadow: 0 18px 44px rgba(28, 25, 99, .085);
}

.solution-tab.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #19105f 0%, #2510f3 100%);
  box-shadow: 0 18px 42px rgba(37, 16, 243, .22);
}

.solution-tab__index {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: var(--cb-primary);
  background: #efedff;
  font-size: 12px;
  font-weight: 900;
}

.solution-tab.is-active .solution-tab__index {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.solution-tab strong,
.solution-tab small { display: block; }
.solution-tab strong { font-size: 17px; line-height: 1.12; font-weight: 900; letter-spacing: -.025em; }
.solution-tab small { margin-top: 9px; color: #52609a; font-size: 13px; line-height: 1.32; font-weight: 600; }
.solution-tab.is-active small { color: rgba(255, 255, 255, .76); }

.solution-panel[hidden] { display: none !important; }
.solution-panel {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  grid-template-rows: 1fr auto;
  gap: 32px 56px;
  padding: 48px;
  border: 1px solid rgba(111, 95, 255, .35);
  border-radius: 32px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 8%, rgba(130, 110, 255, .42), transparent 28%),
    radial-gradient(circle at 24% 110%, rgba(58, 42, 255, .46), transparent 35%),
    linear-gradient(135deg, #08083f 0%, #151066 50%, #2413d9 100%);
  box-shadow: 0 30px 80px rgba(18, 16, 104, .20);
}

.solution-panel::before,
.solution-panel::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .10);
}
.solution-panel::before { width: 620px; height: 280px; right: -220px; top: -170px; transform: rotate(-10deg); }
.solution-panel::after { width: 780px; height: 320px; right: -120px; bottom: -265px; transform: rotate(8deg); }

.solution-panel__copy,
.solution-panel__route,
.solution-panel__actions { position: relative; z-index: 1; }
.solution-panel__copy { grid-row: 1 / 3; }
.solution-panel__kicker {
  margin: 0 0 16px;
  color: #bdb6ff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.solution-panel h3 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(36px, 3vw, 54px);
  line-height: .98;
  letter-spacing: -.058em;
  font-weight: 900;
  text-wrap: balance;
}
.solution-panel__copy > p:not(.solution-panel__kicker) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.52;
}
.solution-panel__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.solution-panel__copy li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .07);
  font-size: 13px;
  font-weight: 700;
}

.solution-panel__route {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  align-items: center;
  gap: 10px;
  align-self: end;
}
.solution-node {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(12px);
}
.solution-node small { color: #bdb6ff; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.solution-node strong { margin-top: 8px; color: #fff; font-size: 20px; line-height: 1; font-weight: 900; letter-spacing: -.035em; }
.solution-route-arrow { color: #8f85ff; font-size: 22px; text-align: center; }
.solution-panel__actions { display: flex; align-items: center; gap: 20px; }
.btn--light { min-height: 50px; color: var(--cb-primary); background: #fff; box-shadow: 0 14px 30px rgba(0, 0, 0, .14); }
.solution-panel__diagnostic { color: #fff; font-size: 14px; font-weight: 900; text-underline-offset: 5px; }

.solution-card,
.pricing-card { position: relative; }
.solution-card__verb {
  display: inline-flex;
  width: max-content;
  margin-bottom: 9px;
  color: var(--cb-primary);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.solution-card a::after,
.pricing-card__link::after { content: ''; position: absolute; inset: 0; border-radius: inherit; }
.solution-card:has(a:hover),
.pricing-card:has(a:hover) { transform: translateY(-3px); border-color: rgba(37, 16, 243, .28); }
.solution-card { transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.solution-card:has(a:hover) { box-shadow: 0 28px 74px rgba(28, 25, 99, .14); }

.home-page .why-item::after {
  content: attr(data-step);
  display: block !important;
  position: absolute;
  top: 26px;
  right: 28px;
  width: auto;
  height: auto;
  color: rgba(37, 16, 243, .14);
  background: transparent;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.06em;
}

.faq-section::before {
  background:
    radial-gradient(circle at 12% 14%, rgba(124, 88, 255, .08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f8ff 100%);
  border-top: 1px solid rgba(226, 229, 246, .72);
}
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  border: 1px solid rgba(205, 211, 248, .9);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 34px rgba(28, 25, 99, .055);
}
.faq-list summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  color: #090a43;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.025em;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { width: 24px; height: 24px; flex: 0 0 24px; fill: none; stroke: var(--cb-primary); stroke-width: 2.2; stroke-linecap: round; transition: transform .18s ease; }
.faq-list details[open] summary svg { transform: rotate(45deg); }
.faq-list details > p { max-width: 850px; margin: -2px 64px 0 24px; padding: 0 0 24px; color: #344077; font-size: 16px; line-height: 1.55; }

.home-page .diagnostic-banner {
  min-height: 286px;
  grid-template-columns: 96px minmax(0, 1fr) 300px;
  gap: 28px;
  margin-top: 68px;
  margin-bottom: 70px;
  padding: 48px 70px;
  border-radius: 28px;
}
.home-page .diagnostic-icon { align-self: start; justify-self: start; margin: 2px 0 0; }
.diagnostic-eyebrow { margin: 0 0 10px !important; color: #c8c3ff; font-size: 11px !important; line-height: 1; font-weight: 900 !important; letter-spacing: .12em !important; text-transform: uppercase; }
.home-page .diagnostic-copy h2 { font-size: var(--cb-title-cta, 30px); line-height: 1; }
.home-page .diagnostic-copy > p:not(.diagnostic-eyebrow) { max-width: 760px; margin-top: 14px; font-size: 17px; line-height: 1.45; }
.diagnostic-points { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 22px 0 0; padding: 0; list-style: none; }
.diagnostic-points li { position: relative; padding-left: 21px; color: rgba(255, 255, 255, .88); font-size: 13px; font-weight: 800; }
.diagnostic-points li::before { content: '✓'; position: absolute; left: 0; color: #c8c3ff; }
.diagnostic-actions { position: relative; z-index: 1; display: grid; align-content: center; gap: 18px; }
.home-page .diagnostic-banner__button { width: 100%; min-height: 54px; justify-self: stretch; font-size: 15px; }
.diagnostic-secondary { color: #fff; text-align: center; font-size: 14px; font-weight: 900; text-underline-offset: 5px; }

@media (min-width: 1321px) {
  .home-page { --header-h: var(--cb-topbar-h); }
  .home-page .site-header,
  .home-page .site-header__inner { height: var(--cb-topbar-h); }
  .faq-section { display: grid; grid-template-columns: minmax(340px, 470px) minmax(0, 1fr); gap: 76px; align-items: start; }
  .faq-section .section-intro { position: sticky; top: 122px; margin: 0; }
}

@media (max-width: 1320px) {
  .home-page .site-header { height: auto; min-height: 72px; }
  .home-page .site-header__inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding-block: 16px;
  }
  .home-page .menu-toggle {
    display: inline-grid;
    grid-template-columns: 20px auto;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid var(--cb-border);
    border-radius: 10px;
    background: #fff;
    color: var(--cb-ink);
    font-weight: 900;
  }
  .home-page .menu-toggle span { display: block; width: 20px; height: 2px; background: var(--cb-primary); border-radius: 99px; }
  .home-page .menu-toggle span:nth-child(2) { margin-top: 4px; }
  .home-page .menu-toggle span:nth-child(3) { margin-top: 8px; }
  .home-page .site-nav,
  .home-page .header-actions { grid-column: 1 / -1; }
  .home-page .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 6px; padding-top: 6px; }
  .home-page .site-nav.is-open { display: flex; }
  .home-page .site-nav a,
  .home-page .nav-trigger { width: 100%; justify-content: space-between; padding: 13px 15px; border-radius: 12px; background: #f7f7fe; }
  .home-page .header-actions { justify-content: space-between; gap: 14px; }
  .home-page .login-link { display: none; }
  .home-page .header-cta { flex: 1; min-width: 0; }
  .home-page .mega-layer { position: static; width: 100%; transform: none; padding-top: 0; }
  .home-page .mega-panel,
  .home-page .mega-panel--solutions { grid-template-columns: 1fr; }
  .home-page .mega-panel article { min-height: auto; }
  .home-page .site-nav:not(.is-open) + .header-actions { display: none; }
  .home-page .site-nav.is-open + .header-actions { display: flex; }
  .home-page .site-header__inner { transition: padding .18s ease; }
  .home-page .site-header.has-mobile-menu-open .site-header__inner { padding-bottom: 18px; }
  .solution-finder__tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-panel { grid-template-columns: 1fr; grid-template-rows: auto; }
  .solution-panel__copy { grid-row: auto; }
  .solution-panel__route { max-width: 680px; }
  .solution-panel__actions { margin-top: 4px; }
  .home-page .diagnostic-banner { grid-template-columns: 76px minmax(0, 1fr); padding: 38px 42px; }
  .diagnostic-actions { grid-column: 2; grid-template-columns: minmax(220px, 300px) auto; align-items: center; justify-content: start; }
}

@media (min-width: 761px) and (max-width: 1120px) {
  .home-page .hero-visual-note { right: 22px; bottom: 8px; }
  .home-page .hero-proof {
    max-width: 720px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 24px;
    color: #253071;
    font-size: 12px;
    font-weight: 800;
  }
  .home-page .hero-proof span {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border-right: 1px solid #dfe2f4;
    white-space: nowrap;
  }
  .home-page .hero-proof span:first-child { padding-left: 0; }
  .home-page .hero-proof span:last-child { border-right: 0; padding-right: 0; }
  .home-page .hero-proof svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    fill: none;
    stroke: var(--cb-primary);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .home-page .hero-proof .flag-inline {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin: 0;
    border-radius: 999px;
  }
}

@media (max-width: 760px) {
  .home-page .hero-visual-note { right: 18px; bottom: 7px; max-width: calc(100% - 36px); font-size: 8px; }
  .home-page .brand,
  .home-page .brand img.cb-logo-2026,
  .home-page .site-footer__logo img.cb-logo-2026 {
    width: 187px !important;
    min-width: 187px !important;
    height: 28px !important;
  }
  .home-page .site-header__inner { min-height: 72px; padding-block: 14px; }
  .solution-finder { padding-top: 62px; padding-bottom: 62px; }
  .solution-finder__intro { margin-bottom: 24px; }
  .solution-finder__tabs { grid-template-columns: 1fr; gap: 10px; }
  .solution-tab { min-height: 82px; grid-template-columns: 34px minmax(0, 1fr); padding: 15px 16px; border-radius: 16px; }
  .solution-tab__index { width: 32px; height: 32px; border-radius: 10px; }
  .solution-tab strong { font-size: 15px; }
  .solution-tab small { margin-top: 5px; font-size: 12px; }
  .solution-panel { min-height: 0; gap: 28px; padding: 26px 22px; border-radius: 24px; }
  .solution-panel h3 { font-size: 34px; line-height: 1.02; }
  .solution-panel__copy > p:not(.solution-panel__kicker) { margin-top: 16px; font-size: 15px; line-height: 1.48; }
  .solution-panel__copy ul { gap: 8px; margin-top: 20px; }
  .solution-panel__copy li { min-height: 31px; padding-inline: 11px; font-size: 11px; }
  .solution-panel__route { grid-template-columns: 1fr; justify-items: stretch; gap: 8px; }
  .solution-node { min-height: 76px; padding: 14px 16px; }
  .solution-route-arrow { transform: rotate(90deg); font-size: 18px; }
  .solution-panel__actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .solution-panel__actions .btn { width: 100%; }
  .solution-panel__diagnostic { text-align: center; }
  .solution-card__verb { margin-bottom: 6px; font-size: 9px; }
  .home-page .why-item::after { top: 18px; right: 18px; font-size: 28px; }
  .faq-section { padding-top: 62px; }
  .faq-list summary { min-height: 68px; padding: 18px; font-size: 16px; }
  .faq-list details > p { margin: -2px 18px 0; padding-bottom: 20px; font-size: 14px; }
  .home-page .diagnostic-banner { grid-template-columns: 1fr; gap: 22px; margin-top: 48px; margin-bottom: 42px; padding: 28px 20px; }
  .home-page .diagnostic-icon { grid-column: auto; }
  .home-page .diagnostic-copy h2 { font-size: 30px; }
  .diagnostic-points { display: grid; gap: 9px; }
  .diagnostic-actions { grid-column: auto; grid-template-columns: 1fr; width: 100%; }
  .diagnostic-secondary { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; }
}

/* ===== Homepage pricing — reference match 2026-07-14 ===== */
.home-page .pricing-section {
  width: min(calc(100% - 96px), 1738px);
  margin-inline: auto;
  padding: 36px 0 27px;
  font-family: var(--font-family, 'Cerebri Sans'), Inter, system-ui, sans-serif;
}

.home-page .pricing-section::before {
  border-radius: 32px 32px 0 0;
  background:
    radial-gradient(ellipse 76% 88% at 96% 83%, transparent 71.8%, rgba(48, 100, 255, .055) 72%, transparent 72.35%),
    radial-gradient(ellipse 70% 74% at 91% 76%, transparent 68.8%, rgba(48, 100, 255, .045) 69%, transparent 69.35%),
    radial-gradient(ellipse 82% 104% at 3% 96%, transparent 72.2%, rgba(48, 100, 255, .05) 72.4%, transparent 72.75%),
    radial-gradient(circle at 56% 76%, rgba(225, 238, 255, .66), transparent 34%),
    radial-gradient(circle at 13% 38%, rgba(247, 249, 255, .9), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 47%, #f8fbff 100%);
  border-top: 1px solid rgba(226, 231, 247, .72);
  border-bottom: 1px solid rgba(224, 230, 246, .72);
}

.home-page .pricing-header {
  display: grid;
  grid-template-columns: minmax(600px, 700px) minmax(620px, 1fr);
  column-gap: clamp(72px, 10.6vw, 202px);
  align-items: start;
}

.home-page .pricing-header .section-intro {
  max-width: 700px;
  margin: 0;
}

.home-page .pricing-section .section-eyebrow {
  margin: 0 0 15px;
  color: #3d34e8;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .19em;
}

.home-page .pricing-section .section-intro h2 {
  max-width: 700px;
  margin: 0;
  color: #07083f;
  font-size: clamp(50px, 2.9vw, 56px);
  line-height: 1.01;
  font-weight: var(--cb-display-weight);
  letter-spacing: var(--cb-display-tracking);
  text-wrap: balance;
}

.home-page .pricing-section .section-intro p:not(.section-eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: #4e5880;
  font-size: 18px;
  line-height: 1.52;
  font-weight: 500;
  letter-spacing: -.012em;
}

.pricing-proof-strip {
  min-width: 0;
  min-height: 63px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  margin: 51px 0 0;
  padding: 0;
  border: 1px solid rgba(217, 224, 244, .9);
  border-radius: 15px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 28px rgba(15, 28, 101, .055);
  list-style: none;
}

.pricing-proof-strip li {
  min-width: 0;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 18px;
  color: #596281;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
}

.pricing-proof-strip li + li { border-left: 1px solid #e1e5f2; }

.pricing-proof-strip svg {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  fill: none;
  stroke: #0759ff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 32px;
  margin-top: 24px;
}

.home-page .pricing-card {
  --pricing-accent: #0759ff;
  --pricing-soft: rgba(7, 89, 255, .075);
  --pricing-icon-bg: linear-gradient(145deg, #f9fbff, #edf3ff);
  min-width: 0;
  min-height: 443px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 22px 28px 28px;
  border: 1px solid rgba(222, 227, 241, .92);
  border-radius: 20px;
  color: #07114e;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 17px 42px rgba(21, 35, 94, .055);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.home-page .pricing-card--serenia {
  --pricing-accent: #6d35df;
  --pricing-soft: rgba(109, 53, 223, .08);
  --pricing-icon-bg: linear-gradient(145deg, #fbf9ff, #f1ebff);
}

.home-page .pricing-card--ovastack {
  --pricing-accent: #008e98;
  --pricing-soft: rgba(0, 142, 152, .08);
  --pricing-icon-bg: linear-gradient(145deg, #f8ffff, #e9f8f8);
}

.home-page .pricing-card--neoo {
  --pricing-accent: #ff5b0b;
  --pricing-soft: rgba(255, 91, 11, .085);
  --pricing-icon-bg: linear-gradient(145deg, #fffaf7, #fff0e8);
}

.home-page .pricing-card:hover,
.home-page .pricing-card:has(a:hover) {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--pricing-accent) 30%, #dfe4f2);
  box-shadow: 0 22px 50px rgba(21, 35, 94, .09);
}

.pricing-card__brand {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 27px;
}

.pricing-card__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--pricing-accent) 32%, #e8ebf5);
  border-radius: 15px;
  color: var(--pricing-accent);
  background: var(--pricing-icon-bg);
  box-shadow: 0 7px 16px color-mix(in srgb, var(--pricing-accent) 12%, transparent);
}

.pricing-card__icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card__icon .icon-fill { fill: currentColor; stroke: none; }

.home-page .pricing-card h3 {
  margin: 0;
  color: var(--pricing-accent);
  font-size: 19px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.025em;
}

.home-page .pricing-card__price {
  min-height: 44px;
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 17px 0 0;
  color: var(--pricing-accent);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.home-page .pricing-card__price strong {
  color: var(--pricing-accent);
  font-size: 37px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.045em;
  white-space: nowrap;
}

.home-page .pricing-card__price--text strong {
  font-size: 31px;
  line-height: 1.05;
}

.home-page .pricing-card__unit {
  color: #5b6381;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.home-page .pricing-card > .pricing-card__description {
  min-height: 69px;
  margin: 10px 0 0;
  color: #596281;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -.005em;
}

.pricing-card__divider {
  width: 100%;
  height: 1px;
  flex: 0 0 1px;
  margin-top: 12px;
  background: #e1e5ee;
}

.pricing-card__features {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  color: #172052;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  list-style: none;
}

.pricing-card__features li {
  min-width: 0;
  min-height: 22px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.pricing-card__features svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--pricing-accent);
}

.pricing-card__features circle { fill: currentColor; }
.pricing-card__features path {
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .pricing-card__link {
  width: 100%;
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--pricing-accent);
  background: var(--pricing-soft);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.home-page .pricing-card__link::after { display: none; }
.home-page .pricing-card__link:hover {
  color: #fff;
  background: var(--pricing-accent);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--pricing-accent) 24%, transparent);
}
.home-page .pricing-card__link:hover span { text-decoration: none; }
.home-page .pricing-card__link svg {
  width: 20px;
  height: 20px;
  margin-left: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .pricing-legal {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 21px;
  padding: 14px 22px;
  border: 1px solid rgba(214, 222, 242, .88);
  border-radius: 14px;
  color: #5c6583;
  background: rgba(255, 255, 255, .7);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
}

.home-page .pricing-legal > svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: none;
  stroke: #5d6684;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.home-page .pricing-legal p { margin: 0; }
.home-page .pricing-legal a {
  margin-left: 16px;
  color: #2c22ef;
  text-underline-offset: 2px;
}

@media (max-width: 1500px) {
  .home-page .pricing-section { width: min(calc(100% - 64px), 1320px); padding-block: 58px 36px; }
  .home-page .pricing-header { grid-template-columns: 1fr; }
  .home-page .pricing-header .section-intro { max-width: 760px; }
  .home-page .pricing-section .section-intro h2 { max-width: 760px; }
  .pricing-proof-strip { width: 100%; margin-top: 28px; }
  .home-page .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .home-page .pricing-card { min-height: 438px; }
}

@media (max-width: 760px) {
  .home-page .pricing-section {
    width: min(calc(100% - 32px), 620px);
    padding: 54px 0 34px;
  }
  .home-page .pricing-section::before { border-radius: 24px 24px 0 0; }
  .home-page .pricing-section .section-eyebrow { margin-bottom: 12px; font-size: 11px; }
  .home-page .pricing-section .section-intro h2 {
    font-size: clamp(34px, 10.2vw, 43px);
    line-height: 1.02;
  }
  .home-page .pricing-section .section-intro p:not(.section-eyebrow) {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }
  .pricing-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
    padding: 8px 0;
  }
  .pricing-proof-strip li {
    min-height: 48px;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 14px;
    font-size: 12px;
    white-space: normal;
  }
  .pricing-proof-strip li + li { border-left: 0; }
  .pricing-proof-strip li:nth-child(even) { border-left: 1px solid #e1e5f2; }
  .pricing-proof-strip li:nth-child(n + 3) { border-top: 1px solid #e1e5f2; }
  .pricing-proof-strip svg { width: 23px; height: 23px; flex-basis: 23px; }
  .home-page .pricing-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 24px; }
  .home-page .pricing-card { min-height: 0; padding: 22px; }
  .pricing-card__brand { gap: 20px; }
  .home-page .pricing-card__price { flex-wrap: wrap; min-height: 0; margin-top: 18px; }
  .home-page .pricing-card__price strong { font-size: 35px; }
  .home-page .pricing-card__price--text strong { font-size: 30px; }
  .home-page .pricing-card > .pricing-card__description { min-height: 0; margin-top: 8px; font-size: 15px; }
  .pricing-card__divider { margin-top: 18px; }
  .pricing-card__features { margin-top: 18px; }
  .home-page .pricing-card__link { margin-top: 24px; }
  .home-page .pricing-legal { align-items: flex-start; gap: 12px; margin-top: 18px; padding: 16px; font-size: 12.5px; }
  .home-page .pricing-legal a { display: inline-block; margin: 5px 0 0; }
}

@media (max-width: 420px) {
  .pricing-proof-strip { grid-template-columns: 1fr; }
  .pricing-proof-strip li:nth-child(even) { border-left: 0; }
  .pricing-proof-strip li + li { border-top: 1px solid #e1e5f2; }
}

@media (min-width: 1501px) {
  .home-page .pricing-header { min-height: 212px; }

  html[lang="nl-BE"] .home-page .pricing-section .section-intro h2 {
    font-size: 50px;
    letter-spacing: -.055em;
  }
}
