/* ============ Fonts ============ */
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ============ Tokens ============ */
:root {
  /* Brand */
  --blue-50:  #EAF3FF;
  --blue-100: #D6E7FF;
  --blue-200: #A7CBFF;
  --blue-300: #6BA8FF;
  --blue-400: #3D8FFF;
  --blue-500: #007CFF;   /* primary */
  --blue-600: #0064D6;
  --blue-700: #004DA8;
  --blue-900: #0B2447;

  --green-50:  #E6FBEC;
  --green-100: #C7F4D4;
  --green-500: #00CF3E;   /* accent */
  --green-600: #00A832;

  /* Neutrals */
  --ink-900: #0B1220;
  --ink-800: #131A2B;
  --ink-700: #1E2740;
  --ink-600: #3A4566;
  --ink-500: #5B6786;
  --ink-400: #8893B2;
  --ink-300: #B4BDD3;
  --ink-200: #D9DEEC;
  --ink-100: #EEF1F8;
  --ink-50:  #F6F8FC;
  --white: #FFFFFF;

  --border: #E6EAF2;
  --border-strong: #D2D8E5;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;

  --shadow-sm: 0 1px 2px rgba(11,18,32,.06), 0 1px 1px rgba(11,18,32,.04);
  --shadow-md: 0 8px 24px -8px rgba(11,18,32,.12), 0 2px 6px rgba(11,18,32,.05);
  --shadow-lg: 0 24px 60px -20px rgba(11,18,32,.22), 0 8px 16px -8px rgba(11,18,32,.08);
  --shadow-blue: 0 24px 60px -16px rgba(0,124,255,.35);

  --container: 1240px;
  --gutter: 32px;

  --ease: cubic-bezier(.2,.6,.2,1);
}

/* ============ Reset ============ */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-feature-settings: "ss01", "cv11";
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink-900);
}

/* ============ Layout ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-wide {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ Eyebrow / kicker ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter";
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--blue-100);
}
.eyebrow.green {
  color: var(--green-600);
  background: var(--green-50);
  border-color: var(--green-100);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: currentColor;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-500);
  color: white;
  box-shadow: 0 8px 24px -8px rgba(0,124,255,.5), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-primary:hover {
  background: var(--blue-600);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -10px rgba(0,124,255,.6), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-ghost {
  background: white;
  color: var(--ink-900);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--ink-700); }
.btn-dark {
  background: var(--ink-900);
  color: white;
}
.btn-dark:hover { background: var(--ink-800); }
.btn-link {
  height: auto;
  padding: 0;
  background: transparent;
  color: var(--blue-600);
  font-weight: 600;
}
.btn-link:hover { color: var(--blue-700); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 14px; }
.btn-lg { height: 56px; padding: 0 28px; font-size: 16px; }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255,255,255,.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo svg { height: 28px; width: auto; }
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-600);
}
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--ink-900); }
.nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: -240px; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 1200px;
  background: radial-gradient(closest-side, rgba(0,124,255,.10), transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,18,32,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,18,32,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-head {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}
.hero h1 {
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.hero h1 .accent {
  background: linear-gradient(180deg, var(--blue-500), var(--blue-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .strike {
  position: relative;
  white-space: nowrap;
}
.hero h1 .underline {
  background-image: linear-gradient(transparent 80%, rgba(0,207,62,.35) 80%);
}
.hero-sub {
  font-size: 17px; line-height: 1.55;
  color: var(--ink-500);
  max-width: 460px;
  margin: 0;
}
.hero-actions { display: flex; gap: 12px; margin-top: 24px; }

/* Hero trust strip (replaces the single ettn-badge image) */
.hero-trust {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 4px;
  box-shadow: var(--shadow-sm);
  max-width: 540px;
}
.hero-trust-cell {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 16px;
  position: relative;
  min-width: 0;
}
.hero-trust-cell + .hero-trust-cell::before {
  content: "";
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 70%;
  background: var(--border);
}
.hero-trust-glyph {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  background: white;
}
.hero-trust-glyph-double {
  width: 56px;
  gap: 4px;
}
.hero-trust-text { min-width: 0; }
.hero-trust-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.3;
}
.hero-trust-sub {
  margin-top: 3px;
  font-size: 10.5px;
  color: var(--ink-500);
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-trust-chip {
  display: inline-block;
  padding: 1px 7px;
  background: var(--blue-50);
  color: var(--blue-600);
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .01em;
}

@media (max-width: 720px) {
  .hero-trust { flex-direction: column; gap: 12px; max-width: none; padding: 14px; }
  .hero-trust-cell + .hero-trust-cell::before { display: none; }
  .hero-trust-cell { padding: 0; }
}
.hero-meta {
  margin-top: 20px;
  display: flex; gap: 22px; align-items: center;
  color: var(--ink-500); font-size: 13px;
}
.hero-meta .check { color: var(--green-500); }

/* Trust badges */
.trust-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding: 22px 30px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.trust-stat {
  display: flex; align-items: center; gap: 18px;
  min-width: 0;
}
.trust-num {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}
.trust-text {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-600);
}
.trust-text strong { color: var(--ink-900); font-weight: 600; }
.trust-chips {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.trust-chips .chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  background: var(--ink-50);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-700);
}
.trust-chips .dot {
  width: 7px; height: 7px; border-radius: 999px;
}
.trust-chips .dot-green { background: var(--green-500); }
.trust-chips .dot-blue { background: var(--blue-500); }
.trust-chips .dot-orange { background: #FF8020; }
.trust-chips .dot-purple { background: #8A4FFF; }

/* Stats */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.stat {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: white;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.stat:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat .num {
  font-family: "Montserrat";
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
}
.stat .num .pct { font-size: 28px; color: var(--ink-400); }
.stat .lbl { margin-top: 10px; font-size: 13.5px; color: var(--ink-500); line-height: 1.4; }
.stat--blue .num { color: var(--blue-500); }
.stat--green .num { color: var(--green-600); }
.stat--ink .num { color: var(--ink-900); }
.stat--blue { background: linear-gradient(180deg, var(--blue-50) 0%, white 60%); }
.stat--green { background: linear-gradient(180deg, var(--green-50) 0%, white 60%); }
.stat--dark { background: var(--ink-900); color: white; border-color: var(--ink-800); }
.stat--dark .num { color: white; }
.stat--dark .lbl { color: var(--ink-300); }
.stat .glyph {
  position: absolute; top: 18px; right: 18px;
  width: 22px; height: 22px;
  color: currentColor; opacity: .25;
}

/* ============ Section ============ */
.section { padding: 110px 0; position: relative; }
.section-tight { padding: 88px 0; }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head.left { text-align: left; margin: 0 0 56px; }
.section-head h2 {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.section-head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-500);
  line-height: 1.55;
}

/* ============ What is ============ */
.whatis {
  background: var(--ink-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.whatis-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 56px; align-items: center;
}
.whatis-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px;
  margin-top: 28px;
}
.whatis-list-col h4 {
  font-size: 13px;
  font-family: "Inter";
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
  margin-bottom: 14px;
}
.whatis-list ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.whatis-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--ink-700);
}
.whatis-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green-500);
}

/* ============ How it works ============ */
.flow {
  position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.flow-step {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: white;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  z-index: 1;
}
.flow-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.flow-step .step-num {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-600);
  font-weight: 700;
  font-family: "Montserrat";
  font-size: 13px;
  margin-bottom: 16px;
}
.flow-step h4 {
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.flow-step p {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.5;
  margin: 0;
}
.flow-arrow {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translate(-6px,-50%);
  color: var(--ink-300);
}

/* ============ Sticky walkthrough ============ */
.walk-section {
  padding: 110px 0;
  position: relative;
  border-top: 1px solid var(--border);
}
/* Static-all mode: cards permanently open, no chevron, no active highlight */
.walk-section.static-all .walk-grid {
  grid-template-columns: .75fr 1fr;
  gap: 48px;
}
.walk-section.static-all .walk-features {
  gap: 18px;
}
.walk-section.static-all .walk-feature {
  cursor: default;
  padding: 26px 32px;
  border-radius: 22px;
  border-color: var(--border);
  box-shadow: 0 1px 2px rgba(11,18,32,.03);
}
.walk-section.static-all .walk-feature .head { gap: 16px; }
.walk-section.static-all .walk-feature h3 {
  font-size: 19px;
  letter-spacing: -.015em;
}
.walk-section.static-all .walk-feature .head > .icon {
  width: 44px; height: 44px;
  background: white;
  color: var(--blue-500);
  border: 1px solid var(--ink-200);
  box-shadow: 0 1px 2px rgba(11,18,32,.04);
}
.walk-section.static-all .walk-feature .expand {
  max-height: none !important;
  opacity: 1 !important;
  margin-top: 18px !important;
  overflow: visible;
}
.walk-section.static-all .walk-feature .expand .intro {
  font-size: 14.5px;
  color: var(--ink-600);
  margin: 0 0 14px;
}
.walk-section.static-all .walk-feature .expand ul {
  gap: 10px;
  margin: 0 0 20px;
  font-size: 14.5px;
  color: var(--ink-700);
  padding-left: 4px;
}
.walk-section.static-all .walk-feature .expand li::before {
  width: 5px; height: 5px;
  background: var(--ink-700);
  margin-top: 9px;
}
.walk-section.static-all .walk-feature .result {
  padding-top: 16px;
  font-size: 13.5px;
  color: var(--ink-700);
  gap: 10px;
}
.walk-section.static-all .walk-feature .result .tick {
  width: 22px; height: 22px;
}
@media (max-width: 1100px) {
  .walk-section.static-all .walk-grid { grid-template-columns: 1fr; gap: 40px; }
}
.walk-feature .head > .icon.tone-yellow {
  background: rgba(255, 176, 32, 0.10);
  color: #FFB020;
  border: 1px solid rgba(255, 176, 32, 0.30);
}
.walk-feature .head > .icon.tone-green {
  background: rgba(0, 207, 62, 0.10);
  color: #00CF3E;
  border: 1px solid rgba(0, 207, 62, 0.30);
}
.walk-feature .head > .icon.tone-red {
  background: rgba(229, 62, 92, 0.10);
  color: #FF4D6D;
  border: 1px solid rgba(229, 62, 92, 0.32);
}
.walk-feature .head > .icon.tone-blue {
  background: rgba(0, 124, 255, 0.10);
  color: #007CFF;
  border: 1px solid rgba(0, 124, 255, 0.30);
}
.walk-feature .head > .icon.tone-purple {
  background: rgba(138, 79, 255, 0.10);
  color: #8A4FFF;
  border: 1px solid rgba(138, 79, 255, 0.30);
}
.walk-feature .head > .icon.tone-orange {
  background: rgba(255, 128, 32, 0.10);
  color: #FF8020;
  border: 1px solid rgba(255, 128, 32, 0.30);
}

.walk-feature .expand .highlight {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--blue-400);
  margin: 14px 0 14px;
  font-weight: 500;
}

/* Progressive walk: one-shot staggered reveal triggered on viewport entry */
.walk-section.progressive .walk-grid {
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
}
.walk-section.progressive .walk-features {
  gap: 16px;
  align-items: flex-end;   /* right-align cards in their column */
  justify-self: end;       /* and right-align the column itself in its grid cell */
}
.walk-section.progressive .walk-feature {
  padding: 24px 26px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 4px 20px rgba(16,24,40,0.06);
}
.walk-section.progressive .walk-feature .head > .icon {
  width: 44px; height: 44px;
  background: white;
  color: var(--blue-500);
  border: 1px solid var(--ink-200);
  box-shadow: 0 1px 2px rgba(11,18,32,.04);
}
.walk-section.progressive .walk-feature .head .chev {
  background: transparent;
  color: var(--ink-400);
}
.walk-section.progressive .walk-feature.active {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(16,24,40,0.06);
}
.walk-section.progressive .walk-feature.active .head > .icon {
  background: white;
  color: var(--blue-500);
  border-color: var(--ink-200);
}
.walk-section.progressive .walk-feature.active .chev {
  background: transparent;
  color: var(--ink-700);
}
.walk-section.progressive .walk-feature .expand {
  transition:
    max-height .65s cubic-bezier(.22,1,.36,1),
    margin-top .55s cubic-bezier(.22,1,.36,1),
    opacity .55s cubic-bezier(.22,1,.36,1);
}
.walk-section.progressive .walk-feature.active .expand {
  max-height: 520px;
}
@media (max-width: 1100px) {
  .walk-section.progressive .walk-grid { grid-template-columns: 1fr; gap: 40px; }
}
.walk-section.dark {
  background: var(--ink-900);
  border-top-color: var(--ink-800);
  color: white;
}
.walk-section.dark h2,
.walk-section.dark h3,
.walk-section.dark h4 { color: white; }
.walk-section.dark .walk-feature p { color: var(--ink-300); }
.walk-section.dark .walk-feature {
  background: var(--ink-800);
  border-color: var(--ink-700);
}
.walk-section.dark .walk-feature.active {
  background: linear-gradient(180deg, #1A2440, #131A2B);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 1px var(--blue-500), 0 30px 60px -20px rgba(0,124,255,.3);
}
.walk-section.dark .eyebrow {
  background: rgba(0,124,255,.15);
  color: var(--blue-300);
  border-color: rgba(0,124,255,.3);
}
.walk-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}
.walk-sticky {
  position: sticky;
  top: 96px;
  display: flex; align-items: center; justify-content: center;
  min-height: 600px;
}
.walk-screens {
  position: relative;
  width: 100%;
}
.walk-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px) scale(.985);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.walk-screen.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.walk-screen-wrap {
  position: relative;
  width: 100%;
  /* set by inner content */
}
.walk-features { display: flex; flex-direction: column; gap: 16px; }
.walk-feature {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: white;
  cursor: pointer;
  transition: all .35s var(--ease);
  box-shadow: 0 1px 2px rgba(11,18,32,.03);
}
.walk-feature .head {
  display: flex; align-items: center; gap: 14px;
}
.walk-feature h3 {
  font-size: 17px;
  line-height: 1.3;
  margin: 0;
  flex: 1;
}
.walk-feature .head > .icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #F5F0FF, #FFF0F8);
  color: #5A3A8C;
  border: 1px solid #EFE6FF;
  flex-shrink: 0;
}
.walk-feature .chev {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--ink-100);
  color: var(--ink-500);
  transition: transform .35s var(--ease), background .25s, color .25s;
  flex-shrink: 0;
}
.walk-feature.active .chev {
  transform: rotate(180deg);
  background: var(--blue-500);
  color: white;
}
.walk-feature p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-500);
  line-height: 1.55;
}
.walk-feature.active {
  border-color: var(--blue-500);
  background: white;
  box-shadow: 0 0 0 1px var(--blue-500), 0 20px 50px -16px rgba(0,124,255,.18);
}
.walk-feature.active .head > .icon {
  background: linear-gradient(135deg, var(--blue-500), #6BA8FF);
  color: white;
  border-color: transparent;
}
.walk-feature .expand {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height .68s cubic-bezier(.22,1,.36,1),
    margin-top .55s cubic-bezier(.22,1,.36,1),
    opacity .55s cubic-bezier(.22,1,.36,1);
  opacity: 0;
  margin-top: 0;
}
.walk-feature.active .expand {
  max-height: 480px;
  margin-top: 16px;
  opacity: 1;
}
.walk-feature .expand .intro {
  font-size: 14px;
  color: var(--ink-600);
  margin: 0 0 10px;
}
.walk-feature .expand ul {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: grid; gap: 8px;
  font-size: 14px; color: var(--ink-700);
}
.walk-feature .expand li {
  display: flex; align-items: flex-start; gap: 10px;
}
.walk-feature .expand li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--ink-400);
  margin-top: 8px;
  flex-shrink: 0;
}
.walk-feature .result {
  display: flex; align-items: flex-start; gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-700);
  line-height: 1.5;
}
.walk-feature .result .tick {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green-600);
  flex-shrink: 0;
  margin-top: -1px;
}
/* dark variant tweaks */
.walk-section.dark .walk-feature .chev { background: rgba(255,255,255,.08); color: var(--ink-300); }
.walk-section.dark .walk-feature.active .chev { background: var(--blue-500); color: white; }
.walk-section.dark .walk-feature .head > .icon {
  background: rgba(167,203,255,.10);
  color: #C9DCFF;
  border-color: rgba(167,203,255,.18);
}
.walk-section.dark .walk-feature.active .head > .icon {
  background: linear-gradient(135deg, var(--blue-500), #6BA8FF);
  color: white;
}
.walk-section.dark .walk-feature .expand .intro { color: var(--ink-300); }
.walk-section.dark .walk-feature .expand ul { color: var(--ink-200); }
.walk-section.dark .walk-feature .expand li::before { background: var(--ink-400); }
.walk-section.dark .walk-feature .result { border-top-color: rgba(255,255,255,.08); color: var(--ink-200); }
.walk-section.dark .walk-feature .result .tick { background: rgba(0,207,62,.15); color: #6BE889; }
.walk-section.dark .walk-feature .head > .icon { background: rgba(0,124,255,.18); color: var(--blue-300); }
.walk-section.dark .walk-feature.active .head > .icon { background: var(--blue-500); color: white; }
.walk-section.dark .walk-feature .expand ul { color: var(--ink-300); }

/* Section intro (left) */
.walk-intro { max-width: 540px; margin-bottom: 48px; }
.walk-intro h2 {
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.1;
  margin: 16px 0;
}
.walk-intro p { color: var(--ink-500); font-size: 16.5px; line-height: 1.55; }
.walk-section.dark .walk-intro p { color: var(--ink-300); }

/* ============ Product mock primitives ============ */
.mock {
  position: relative;
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  font-family: "Inter";
}
.mock-toolbar {
  display: flex; align-items: center; gap: 10px;
  height: 40px;
  padding: 0 14px;
  background: var(--ink-50);
  border-bottom: 1px solid var(--border);
}
.mock-toolbar .dots { display: flex; gap: 6px; }
.mock-toolbar .dot { width: 10px; height: 10px; border-radius: 999px; background: var(--ink-200); }
.mock-toolbar .url {
  margin-left: 16px;
  flex: 1;
  height: 22px;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 10px;
  font-size: 11px; color: var(--ink-400);
}
.mock-body { display: flex; min-height: 460px; }
.mock-side {
  width: 200px;
  background: white;
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  flex-shrink: 0;
}
.mock-side .logo {
  display: flex; align-items: center; gap: 8px;
  font-family: "Montserrat"; font-weight: 700; font-size: 14px;
  margin-bottom: 22px;
}
.mock-side .logo .glyph {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--blue-500);
}
.mock-nav { display: flex; flex-direction: column; gap: 2px; }
.mock-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--ink-600);
}
.mock-nav-item.active { background: var(--blue-50); color: var(--blue-700); font-weight: 600; }
.mock-nav-item .dot-ico { width: 14px; height: 14px; border-radius: 4px; background: currentColor; opacity: .25; }
.mock-main { flex: 1; padding: 18px 20px; background: var(--ink-50); }
.mock-h1 { font-family: "Montserrat"; font-weight: 700; font-size: 18px; letter-spacing: -.01em; }
.mock-sub { font-size: 12px; color: var(--ink-500); margin-top: 4px; }

/* Highlight pulse around active screen area */
.spotlight {
  position: absolute;
  border-radius: 14px;
  box-shadow: 0 0 0 2px var(--blue-500), 0 0 0 6px rgba(0,124,255,.18), 0 20px 40px -10px rgba(0,124,255,.4);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.spotlight.show { opacity: 1; animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--blue-500), 0 0 0 6px rgba(0,124,255,.18), 0 20px 40px -10px rgba(0,124,255,.4); }
  50%      { box-shadow: 0 0 0 2px var(--blue-500), 0 0 0 12px rgba(0,124,255,.10), 0 20px 40px -10px rgba(0,124,255,.4); }
}

/* ============ Integrations — Hub & Spoke ============ */
.hub-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 56px;
  align-items: center;
  padding: 40px 8px 0;
  min-height: 540px;
}
.hub-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Columns */
.hub-col {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hub-col-head { margin-bottom: 6px; }
.hub-col-eyebrow {
  display: inline-block;
  font-family: "Inter";
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.hub-eyebrow-blue { background: var(--blue-50); color: var(--blue-600); border: 1px solid var(--blue-100); }
.hub-eyebrow-green { background: var(--green-50); color: var(--green-600); border: 1px solid var(--green-100); }
.hub-col-sub {
  margin: 0;
  font-size: 14px;
  color: var(--ink-500);
}
.hub-col-r .hub-col-head { text-align: right; }

.hub-nodes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hub-node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-900);
  box-shadow: 0 4px 14px -8px rgba(11,18,32,.10);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.hub-node:hover { transform: translateX(4px); border-color: var(--blue-200); }
.hub-node-r { flex-direction: row-reverse; }
.hub-node-r:hover { transform: translateX(-4px); border-color: rgba(0,207,62,.4); }

.hub-node-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--ink-50);
  flex-shrink: 0;
  overflow: hidden;
}
.hub-node-label { flex: 1; line-height: 1.3; }
.hub-node-pulse {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--green-500);
  flex-shrink: 0;
  position: relative;
}
.hub-node-pulse::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 999px;
  border: 1.5px solid var(--green-500);
  opacity: .5;
  animation: hubRing 2.2s ease-out infinite;
}
@keyframes hubRing {
  0% { transform: scale(.6); opacity: .55; }
  100% { transform: scale(2); opacity: 0; }
}

/* Brand marks (clean, monochrome-tinted) */
.brand-mark {
  font-family: "Inter";
  font-weight: 800;
  font-size: 10.5px;
  line-height: 1;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
}
.brand-mark.brand-bas { background: #E50000; color: white; padding: 4px 6px; }
.brand-mark.brand-1c { padding: 0; }
.brand-mark.brand-1c b { background: #FFCC00; color: #0B1220; padding: 4px 4px; font-weight: 800; font-style: normal; }
.brand-mark.brand-1c i { background: #E50000; color: white; padding: 4px 4px; font-weight: 800; font-style: normal; }
.brand-mark.brand-medoc { padding: 0; border: 1px solid #F0D200; }
.brand-mark.brand-medoc b { background: #FCE415; color: #0B1220; padding: 4px 4px; font-weight: 800; font-style: normal; }
.brand-mark.brand-medoc i { background: white; color: #0B1220; padding: 4px 4px; font-weight: 800; font-style: normal; }
.brand-mark.brand-sap { background: linear-gradient(180deg, #008FD3, #007CC3); color: white; padding: 4px 6px; }
.brand-mark.brand-dyn {
  background: linear-gradient(135deg, #0078D4, #50E6FF);
  color: white;
  padding: 4px 9px;
  font-weight: 800;
}

.hub-result {
  margin-top: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(0,124,255,.06);
  border: 1px solid var(--blue-100);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-700);
}
.hub-result strong { color: var(--blue-600); font-weight: 700; font-family: "Montserrat"; font-size: 16px; }
.hub-result.hub-result-green {
  background: rgba(0,207,62,.06);
  border-color: var(--green-100);
}
.hub-result.hub-result-green strong { color: var(--green-600); }
.hub-result-tick {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: white;
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  border: 1px solid var(--blue-100);
}
.hub-result-green .hub-result-tick { color: var(--green-600); border-color: var(--green-100); }

/* Center hub — Inn.Logist core */
.hub-core {
  position: relative;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 240px; height: 240px;
}
.hub-core-orbit {
  position: absolute; inset: 0;
  border-radius: 999px;
  border: 1px dashed rgba(0,124,255,.25);
  animation: hubSpin 60s linear infinite;
  will-change: transform;
}
.hub-core-orbit-2 {
  inset: 16px;
  border-color: rgba(0,124,255,.15);
  animation-duration: 90s;
  animation-direction: reverse;
}
@keyframes hubSpin { to { transform: rotate(360deg); } }

.hub-core-card {
  position: relative;
  z-index: 1;
  width: 180px; height: 180px;
  border-radius: 999px;
  background: linear-gradient(160deg, white 0%, #F5F9FF 100%);
  border: 1px solid var(--border);
  box-shadow:
    0 30px 60px -20px rgba(0,124,255,.30),
    0 0 0 8px rgba(255,255,255,.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 22px 18px;
  text-align: center;
}
.hub-core-card img { height: 24px; width: auto; }
.hub-core-label {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 2px;
}
.hub-core-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  margin-top: 6px;
}
.hub-core-stack span {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-700);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.hub-core-stack .dot { width: 6px; height: 6px; border-radius: 999px; }
.hub-core-stack .dot-blue { background: var(--blue-500); }
.hub-core-stack .dot-green { background: var(--green-500); }
.hub-core-stack .dot-orange { background: #FF8020; }
.hub-core-stack .dot-purple { background: #8A4FFF; }

/* Inline callout inside right column */
.hub-callout {
  margin-top: 4px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(90deg, rgba(0,124,255,.06), rgba(0,207,62,.06));
  border: 1px solid var(--blue-100);
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-700);
}
.hub-callout svg { color: var(--blue-500); flex-shrink: 0; margin-top: 2px; }
.hub-callout strong { color: var(--ink-900); font-weight: 600; }

/* Bottom strip — removed */
.hub-strip { display: none; }

@media (max-width: 1100px) {
  .hub-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 0 0;
    min-height: 0;
  }
  .hub-lines { display: none; }
  .hub-col-r .hub-col-head { text-align: left; }
  .hub-node-r { flex-direction: row; }
  .hub-core { margin: 0 auto; }
}

/* ============ Comparison ============ */
.compare-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-md);
  /* overflow: hidden removed so sticky thead can escape rounded corners */
}
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.compare-table th, .compare-table td {
  padding: 22px 24px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table thead th {
  position: sticky;
  top: 72px;            /* nav height */
  z-index: 5;
  background: white;
  font-weight: 600;
  color: var(--ink-500);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  padding-top: 26px;
  padding-bottom: 26px;
  vertical-align: top;
  line-height: 1.4;
  /* fake border-bottom that stays visible while sticky */
  box-shadow: inset 0 -1px 0 var(--border);
  border-bottom: 0;
}
.compare-table th:first-child { border-top-left-radius: var(--radius-xl); }
.compare-table th:last-child { border-top-right-radius: var(--radius-xl); }
.compare-table thead th:first-child { color: var(--ink-900); font-weight: 700; }
.compare-table thead th.us {
  background: white;
  color: var(--blue-500);
  font-family: "Inter";
  font-size: 14px;
  font-weight: 700;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--ink-900);
  font-size: 14px;
  line-height: 1.4;
}
.compare-table td.us { background: white; }

.compare-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-700);
}
.compare-cell .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 999px;
  flex-shrink: 0;
}
.compare-cell.yes .badge { background: #E6FBEC; color: #00A832; }
.compare-cell.partial .badge { background: rgba(224,165,0,.12); color: #E0A500; }
.compare-cell.no .badge { background: rgba(180,189,211,.20); color: #B4BDD3; }
.compare-cell.partial { color: #E0A500; }
.compare-cell.partial .lbl { font-weight: 500; }
.compare-cell .lbl { line-height: 1.3; font-size: 13px; }
.compare-table .yes,
.compare-table .partial,
.compare-table .no { /* legacy — keep no-op for safety */ }

/* ============ Pricing section ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
}
.pricing-left { padding-top: 8px; }
.pricing-title {
  font-family: "Montserrat";
  font-weight: 800;
  font-size: clamp(56px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 18px 0 12px;
}
.pricing-sub {
  font-size: 16px;
  color: var(--ink-500);
  margin: 0 0 24px;
}

.pricing-chips {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 14px;
  margin-bottom: 36px;
}
.pricing-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 10px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--ink-200);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  white-space: nowrap;
}
.pricing-chip .chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  flex-shrink: 0;
}
.pricing-chip.tone-blue   .chip-icon { background: rgba(0,124,255,.10);   color: var(--blue-500); }
.pricing-chip.tone-orange .chip-icon { background: rgba(255,128,32,.12);  color: #FF8020; }
.pricing-chip.tone-green  .chip-icon { background: rgba(0,207,62,.12);    color: var(--green-500); }
.pricing-chip.tone-purple .chip-icon { background: rgba(138,79,255,.12);  color: #8A4FFF; }

.pricing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pricing-feature {
  position: relative;
  padding: 32px 22px 22px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
}
.pricing-feature-check {
  position: absolute;
  top: 18px; left: 18px;
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--blue-500);
  color: white;
  display: flex; align-items: center; justify-content: center;
}
.pricing-feature-body { margin-top: 22px; }
.pricing-feature-title {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--ink-900);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.pricing-feature-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-500);
}

/* Right column — blue calculator */
.pricing-right {
  background: var(--blue-500);
  border-radius: 22px;
  padding: 36px;
  color: white;
  box-shadow: var(--shadow-blue);
}
.pricing-form-title {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
  color: white;
  margin: 0 0 22px;
}
.pricing-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.pricing-field label {
  font-size: 13.5px;
  font-weight: 500;
  color: white;
}
.pricing-field .req {
  color: #FF8A8A;
  margin-left: 2px;
}
.pricing-field input,
.pricing-field select,
.pricing-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: white;
  transition: border-color .15s, background .15s;
  appearance: none;
  -webkit-appearance: none;
  resize: vertical;
}
.pricing-field textarea { line-height: 1.4; }
.pricing-field input::placeholder,
.pricing-field textarea::placeholder { color: rgba(255,255,255,.55); }
.pricing-field input:focus,
.pricing-field select:focus,
.pricing-field textarea:focus {
  outline: none;
  border-color: white;
  background: rgba(255,255,255,.16);
}

/* Contact modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11,18,32,.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modalFade .2s ease;
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--blue-500);
  border-radius: 22px;
  padding: 32px;
  color: white;
  box-shadow: var(--shadow-blue), 0 50px 80px -20px rgba(0,0,0,.5);
  max-height: 90vh;
  overflow: auto;
  animation: modalRise .25s cubic-bezier(.22,1,.36,1);
}
@keyframes modalRise { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s;
}
.modal-close:hover { background: rgba(255,255,255,.18); }
.pricing-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.pricing-field select option { background: var(--blue-700); color: white; }

/* Two-column row inside pricing form */
.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pricing-row > .pricing-field { margin-bottom: 16px; }

/* Role segmented tabs */
.role-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 4px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
}
.role-tab {
  height: 36px;
  background: transparent;
  border: 0;
  border-radius: 7px;
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s;
  padding: 0 6px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.role-tab:hover { color: white; }
.role-tab.is-active {
  background: white;
  color: var(--blue-700);
}

/* Checkbox row */
.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 8px 2px;
  cursor: pointer;
  user-select: none;
}
.check-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0; height: 0;
}
.check-box {
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.check-row input:checked ~ .check-box,
.check-row:has(input:checked) .check-box {
  background: white;
  border-color: white;
  color: var(--blue-700);
}
.check-label {
  font-size: 13.5px;
  font-weight: 500;
  color: white;
  line-height: 1.3;
}
.pricing-submit {
  width: 100%;
  height: 44px;
  margin-top: 6px;
  background: rgba(255,255,255,.18);
  color: white;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  transition: background .2s;
}
.pricing-submit:hover { background: rgba(255,255,255,.28); }
.pricing-legal {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
}

.pricing-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.pricing-success .success-icon {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.pricing-success h3 { color: white; font-family: "Montserrat"; font-size: 26px; margin: 0 0 8px; }
.pricing-success p { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.55; margin: 0; }

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-features { grid-template-columns: 1fr; }
  .pricing-chips { grid-template-columns: 1fr; }
}
.lead {
  background: var(--ink-900);
  color: white;
  border-radius: var(--radius-2xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.lead::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(0,124,255,.4), transparent 70%);
  pointer-events: none;
}
.lead h2 { color: white; font-size: 38px; line-height: 1.1; }
.lead p { color: var(--ink-300); font-size: 16px; margin-top: 14px; }
.lead-bullets { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.lead-bullets li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-200); font-size: 14.5px; }
.lead-bullets li svg { color: var(--green-500); flex-shrink: 0; margin-top: 3px; }
.lead-form {
  background: white;
  color: var(--ink-900);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  z-index: 1;
}
.lead-form h3 { font-size: 22px; }
.lead-form .field { display: grid; gap: 6px; margin-top: 16px; }
.lead-form label { font-size: 12.5px; font-weight: 600; color: var(--ink-700); }
.lead-form input, .lead-form select {
  height: 44px; padding: 0 14px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font: inherit; font-size: 14px;
  background: white;
  color: var(--ink-900);
  transition: border-color .15s, box-shadow .15s;
}
.lead-form input:focus, .lead-form select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(0,124,255,.15);
}
.lead-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form button { margin-top: 22px; width: 100%; }
.lead-form .legal { font-size: 11.5px; color: var(--ink-400); margin-top: 12px; line-height: 1.5; }

/* ============ Enterprise section ============ */
.enterprise { background: linear-gradient(180deg, var(--ink-50) 0%, white 100%); }
.ent-card {
  position: relative;
  background: var(--ink-900);
  color: white;
  border-radius: 28px;
  padding: 56px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(11,18,32,.45);
}
.ent-bg-orb {
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(0,124,255,.35), transparent 70%);
  pointer-events: none;
}
.ent-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 20% 0%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 20% 0%, black 30%, transparent 70%);
  pointer-events: none;
}
.ent-head {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}
.ent-title {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: white;
  margin: 14px 0 16px;
}
.ent-title .accent {
  background: linear-gradient(135deg, #6BA8FF, #007CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ent-sub {
  font-size: 17px;
  color: var(--ink-300);
  margin: 0;
  max-width: 560px;
  line-height: 1.55;
}
.ent-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.ent-badge svg { color: #6BA8FF; }

.ent-divider {
  position: relative; z-index: 1;
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 0 0 36px;
}
.ent-cols {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 56px;
  margin-bottom: 36px;
}
.ent-col-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.ent-col-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0,124,255,.16);
  color: #6BA8FF;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ent-col h3 {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 19px;
  color: white;
  margin: 0;
  letter-spacing: -.015em;
}
.ent-col ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.ent-col li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-200);
}
.ent-col li strong { color: white; font-weight: 600; }
.ent-tick {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--blue-500);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

.ent-footer {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}
.ent-tagline {
  margin: 0;
  display: flex; align-items: center; gap: 12px;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  color: #6BA8FF;
  letter-spacing: -.005em;
}
.ent-tagline svg { color: #00CF3E; flex-shrink: 0; }
.ent-cta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.ent-cta-label {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-300);
  text-align: right;
}

@media (max-width: 1100px) {
  .ent-card { padding: 36px; border-radius: 22px; }
  .ent-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .ent-badges { flex-direction: row; flex-wrap: wrap; }
  .ent-cols { grid-template-columns: 1fr; gap: 28px; }
  .ent-footer { grid-template-columns: 1fr; gap: 20px; }
  .ent-cta { align-items: stretch; }
  .ent-cta-label { text-align: left; }
}
@media (max-width: 720px) {
  .ent-card { padding: 28px 22px; }
}
.faq-list { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item.open { border-color: var(--blue-500); box-shadow: 0 0 0 1px var(--blue-500); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  background: none; border: 0;
  text-align: left;
  font-family: "Montserrat"; font-weight: 600; font-size: 16.5px;
  color: var(--ink-900);
}
.faq-q .chev {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--ink-100);
  transition: transform .25s var(--ease), background .25s;
}
.faq-item.open .faq-q .chev { transform: rotate(45deg); background: var(--blue-500); color: white; }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 24px;
  color: var(--ink-500);
  font-size: 14.5px; line-height: 1.6;
  transition: max-height .35s var(--ease), padding .25s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }

/* ============ Final CTA ============ */
.final-cta {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-radius: var(--radius-2xl);
  padding: 64px;
  color: white;
  position: relative;
  overflow: hidden;
}
.final-cta::before, .final-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.final-cta::before {
  width: 500px; height: 500px;
  background: radial-gradient(closest-side, rgba(255,255,255,.18), transparent 70%);
  top: -250px; left: -100px;
}
.final-cta::after {
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(0,207,62,.20), transparent 70%);
  bottom: -300px; right: -150px;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { color: white; font-size: clamp(34px, 4vw, 54px); line-height: 1.05; max-width: 720px; }
.final-cta p { font-size: 17px; color: rgba(255,255,255,.85); max-width: 580px; margin: 18px 0 0; }
.final-cta-stats { display: grid; grid-template-columns: repeat(3, auto); gap: 56px; margin-top: 48px; }
.final-cta-stat .n { font-family: "Montserrat"; font-weight: 700; font-size: 44px; line-height: 1; }
.final-cta-stat .l { font-size: 13px; color: rgba(255,255,255,.7); margin-top: 6px; }
.final-cta-actions { margin-top: 40px; display: flex; gap: 18px; align-items: center; }
.final-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: white;
}
.final-cta-note svg { color: #00CF3E; }

/* ============ Footer ============ */
.footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 72px 0 36px;
  margin-top: 100px;
}
.footer h4 { color: white; font-size: 14px; font-family: "Inter"; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  margin-top: 28px; padding-top: 28px;
  border-top: 1px solid var(--ink-800);
  font-size: 13px; color: var(--ink-400);
}

/* Footer trust strip — rendered from social.svg image */
.footer-trust {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--ink-800);
}
.footer-trust img { max-width: 100%; }
.footer-logo svg { height: 26px; }
.footer-tag { margin-top: 16px; max-width: 320px; font-size: 14px; line-height: 1.55; color: var(--ink-400); }

/* ============ e-ТТН Walkthrough popup ============ */
.ettn-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11,18,32,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: ettnFade .25s var(--ease);
}
@keyframes ettnFade { from { opacity: 0; } to { opacity: 1; } }
.ettn-modal {
  width: 100%;
  max-width: 760px;
  background: white;
  border-radius: 22px;
  box-shadow: 0 40px 100px -30px rgba(11,18,32,.5);
  overflow: hidden;
  animation: ettnPop .3s var(--ease);
}
@keyframes ettnPop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }

.ettn-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.ettn-head-l { display: flex; align-items: center; gap: 12px; }
.ettn-head-r { display: flex; align-items: center; gap: 14px; }
.ettn-toggle {
  display: inline-flex;
  padding: 3px;
  background: var(--ink-50);
  border: 1px solid var(--border);
  border-radius: 999px;
  gap: 2px;
}
.ettn-toggle-btn {
  border: 0;
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-500);
  cursor: pointer;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.ettn-toggle-btn.is-active {
  background: var(--blue-500);
  color: white;
  box-shadow: 0 4px 12px -4px rgba(0,124,255,.5);
}
.ettn-head-tag { font-size: 12.5px; color: var(--ink-500); font-weight: 500; }
.ettn-close {
  width: 34px; height: 34px; border-radius: 999px;
  border: 1px solid var(--border); background: white;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-600); transition: background .15s, color .15s;
}
.ettn-close:hover { background: var(--ink-50); color: var(--ink-900); }

/* Actor chain */
.ettn-chain {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; padding: 26px 22px 8px;
}
.ettn-actor {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: 84px; flex-shrink: 0;
  opacity: .4; transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.ettn-actor.is-done { opacity: .7; }
.ettn-actor.is-active { opacity: 1; transform: translateY(-2px); }
.ettn-actor-ico {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink-50); color: var(--ink-500);
  border: 1px solid var(--border);
  transition: all .4s var(--ease);
}
.ettn-actor.is-active .ettn-actor-ico {
  background: var(--blue-500); color: white; border-color: var(--blue-500);
  box-shadow: 0 12px 28px -10px rgba(0,124,255,.6);
  transform: scale(1.08);
}
.ettn-actor.is-done .ettn-actor-ico { background: var(--blue-50); color: var(--blue-600); border-color: var(--blue-100); }
.ettn-actor-label {
  font-size: 10.5px; font-weight: 600; color: var(--ink-700);
  text-align: center; line-height: 1.25;
  display: flex; flex-direction: column;
}
.ettn-link {
  flex: 1; height: 2px; margin-top: 23px; min-width: 18px;
  background: var(--border); position: relative; border-radius: 2px;
  overflow: hidden;
}
.ettn-link.is-done { background: var(--blue-200); }
.ettn-link-dot {
  position: absolute; top: 50%; left: 0; width: 7px; height: 7px;
  border-radius: 999px; background: var(--blue-500);
  transform: translate(-50%, -50%); opacity: 0;
}
.ettn-link.is-active .ettn-link-dot {
  opacity: 1;
  animation: ettnFlow 1.4s linear infinite;
}
@keyframes ettnFlow { from { left: 0; } to { left: 100%; } }

/* Step card */
.ettn-body { padding: 14px 22px 4px; }
.ettn-card {
  background: var(--ink-50);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  animation: ettnCard .4s var(--ease);
}
@keyframes ettnCard { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.ettn-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.ettn-phase {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.ettn-phase-dot { width: 7px; height: 7px; border-radius: 999px; }
.ettn-step-no { font-size: 12px; color: var(--ink-400); font-weight: 600; }
.ettn-card-main { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.ettn-card-ico {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ettn-card-title {
  font-family: "Montserrat"; font-weight: 700; font-size: 22px;
  letter-spacing: -.02em; margin: 0; color: var(--ink-900);
}
.ettn-triad { display: grid; gap: 1px; background: var(--border); border-radius: 10px; overflow: hidden; }
.ettn-triad-row {
  display: grid; grid-template-columns: 92px 1fr; gap: 14px;
  background: white; padding: 12px 16px;
  align-items: baseline;
}
.ettn-triad-k {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--ink-400);
}
.ettn-triad-v { font-size: 14px; color: var(--ink-900); font-weight: 500; line-height: 1.4; }

/* Progress strip */
.ettn-progress {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 22px;
}
.ettn-play, .ettn-nav button {
  width: 34px; height: 34px; border-radius: 999px;
  border: 1px solid var(--border); background: white;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-700); transition: background .15s, border-color .15s;
  flex-shrink: 0;
}
.ettn-play:hover, .ettn-nav button:hover:not(:disabled) { background: var(--ink-50); border-color: var(--ink-400); }
.ettn-nav { display: flex; gap: 8px; }
.ettn-nav button:disabled { opacity: .35; cursor: default; }
.ettn-dots { flex: 1; display: flex; gap: 6px; align-items: center; }
.ettn-dot {
  flex: 1; height: 6px; border-radius: 999px;
  background: var(--ink-200); border: 0; padding: 0; cursor: pointer;
  position: relative; overflow: hidden;
  transition: background .2s;
}
.ettn-dot-fill {
  position: absolute; inset: 0; width: 0;
  border-radius: 999px;
  animation: ettnDotFill 3.6s linear forwards;
}
@keyframes ettnDotFill { from { width: 0; } to { width: 100%; } }

/* Footer */
.ettn-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 22px;
  background: var(--ink-50);
  border-top: 1px solid var(--border);
  font-size: 14px; color: var(--ink-700); font-weight: 500;
}

@media (max-width: 640px) {
  .ettn-head { flex-wrap: wrap; gap: 10px; }
  .ettn-head-tag { display: none; }
  .ettn-chain { padding: 20px 12px 4px; overflow-x: auto; }
  .ettn-actor { width: 64px; }
  .ettn-actor-ico { width: 40px; height: 40px; }
  .ettn-card-title { font-size: 18px; }
  .ettn-triad-row { grid-template-columns: 72px 1fr; gap: 8px; padding: 10px 12px; }
  .ettn-foot { flex-direction: column; align-items: stretch; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .ettn-dot-fill { animation: none; width: 100%; }
  .ettn-link.is-active .ettn-link-dot { animation: none; }
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============ e-ТТН Scene mode (realistic screens) ============ */
.ettn-modal-scene { max-width: 1080px; }
.ettn-dot-fill-scene { animation-duration: 5s; }
.ettn-chain-compact {
  padding: 18px 32px 6px;
  border-bottom: 1px solid var(--border);
}
.ettn-chain-compact .ettn-actor { width: 96px; }
.ettn-chain-compact .ettn-actor-ico { width: 40px; height: 40px; border-radius: 12px; }
.ettn-chain-compact .ettn-actor-label { font-size: 10px; }
.ettn-chain-compact .ettn-link { margin-top: 19px; }
.ettn-scene-body {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 24px;
  padding: 22px;
  align-items: stretch;
}
.ettn-scene-screen { min-height: 360px; display: flex; animation: ettnCard .45s var(--ease); }
.ettn-scene-info { display: flex; flex-direction: column; justify-content: center; padding: 8px 4px; }
.ettn-scene-title {
  font-family: "Montserrat"; font-weight: 700; font-size: 23px;
  line-height: 1.18; letter-spacing: -.02em; color: var(--ink-900); margin: 14px 0 12px;
}
.ettn-scene-sub { font-size: 14.5px; line-height: 1.55; color: var(--ink-500); margin: 0; }
.ettn-scene-count { margin-top: 18px; font-size: 12px; font-weight: 600; color: var(--ink-400); }

.sc-frame {
  flex: 1; display: flex; flex-direction: column;
  background: white; border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; box-shadow: 0 18px 40px -20px rgba(11,18,32,.25);
}
.sc-bar {
  display: flex; align-items: center; gap: 12px;
  height: 36px; padding: 0 12px; background: var(--ink-50);
  border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.sc-dots { display: flex; gap: 5px; }
.sc-dots i { width: 9px; height: 9px; border-radius: 999px; background: var(--ink-200); }
.sc-dots i:nth-child(1) { background: #FF5F57; }
.sc-dots i:nth-child(2) { background: #FEBC2E; }
.sc-dots i:nth-child(3) { background: #28C840; }
.sc-url {
  display: flex; align-items: center; gap: 5px;
  font-size: 10.5px; color: var(--ink-400);
  background: white; border: 1px solid var(--border); border-radius: 6px; padding: 3px 9px;
}
.sc-acct { margin-left: auto; font-size: 10.5px; font-weight: 600; }
.sc-canvas { flex: 1; background: var(--ink-50); overflow: hidden; }
.sc-pad { padding: 16px 18px; }
.sc-h { font-family: "Montserrat"; font-weight: 700; font-size: 14px; color: var(--ink-900); margin-bottom: 12px; letter-spacing: -.01em; }
.sc-foot-note { margin-top: 14px; display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--blue-600); font-weight: 500; }
.sc-foot-note svg { color: var(--blue-500); }

.sc-api-banner {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; margin-bottom: 12px;
  background: linear-gradient(90deg, var(--blue-50), white);
  border: 1px solid var(--blue-100); border-radius: 10px;
}
.sc-api-ico { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; background: var(--blue-500); color: white; display: flex; align-items: center; justify-content: center; }
.sc-api-banner b { display: block; font-size: 12.5px; color: var(--ink-900); }
.sc-api-banner span { font-size: 11px; color: var(--ink-500); }
.sc-live { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 600; color: var(--green-600); }
.sc-live i { width: 7px; height: 7px; border-radius: 999px; background: var(--green-500); box-shadow: 0 0 0 3px rgba(0,207,62,.18); }
.sc-rows { display: grid; gap: 7px; }
.sc-row {
  display: grid; grid-template-columns: 86px 1fr auto auto; gap: 12px;
  align-items: center; padding: 10px 13px; background: white;
  border: 1px solid var(--border); border-radius: 9px; font-size: 11.5px;
  opacity: 0; animation: scRowIn .5s var(--ease) forwards;
}
@keyframes scRowIn { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }
.sc-row-sys { font-weight: 700; color: var(--ink-600); }
.sc-row-doc { color: var(--ink-900); font-weight: 500; }
.sc-row-cargo { color: var(--ink-500); }
.sc-row-tag { font-size: 10px; font-weight: 700; color: var(--blue-600); background: var(--blue-50); border: 1px solid var(--blue-100); padding: 3px 8px; border-radius: 999px; white-space: nowrap; }

.sc-ai-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 14px; }
.sc-drop {
  position: relative; overflow: hidden;
  border: 2px dashed var(--blue-200); border-radius: 12px; background: var(--blue-50);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 20px; min-height: 200px;
}
.sc-drop-files { display: flex; gap: 8px; }
.sc-file { width: 44px; height: 54px; border-radius: 6px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 6px; font-size: 9px; font-weight: 800; color: white; box-shadow: 0 6px 14px -6px rgba(11,18,32,.3); }
.sc-file-pdf { background: #E5484D; transform: rotate(-5deg); }
.sc-file-xls { background: #16A34A; transform: translateY(-6px); }
.sc-file-img { background: #6B7280; transform: rotate(5deg); }
.sc-drop-text { font-size: 12px; color: var(--ink-600); font-weight: 600; }
.sc-scan-line { position: absolute; left: 0; right: 0; height: 30px; background: linear-gradient(180deg, transparent, rgba(0,124,255,.22), transparent); animation: scScan 2.2s ease-in-out infinite; }
@keyframes scScan { 0%,100% { top: 0; } 50% { top: calc(100% - 30px); } }
.sc-ai-out { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.sc-ai-head { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--ink-900); margin-bottom: 10px; }
.sc-ai-badge { font-size: 9.5px; font-weight: 800; color: white; background: var(--blue-500); padding: 2px 7px; border-radius: 4px; }
.sc-ai-field { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--ink-50); font-size: 11.5px; opacity: 0; animation: scRowIn .5s var(--ease) forwards; }
.sc-ai-field span { color: var(--ink-500); }
.sc-ai-field b { color: var(--ink-900); font-weight: 600; }
.sc-ai-field svg { color: var(--green-500); }
.sc-ai-result { margin-top: 10px; padding: 8px 10px; background: var(--green-50); border: 1px solid var(--green-100); border-radius: 8px; font-size: 11.5px; font-weight: 600; color: var(--green-600); text-align: center; }

.sc-docs { display: grid; gap: 7px; margin-bottom: 14px; }
.sc-doc { display: flex; align-items: center; gap: 11px; padding: 10px 13px; background: white; border: 1px solid var(--border); border-radius: 9px; opacity: 0; animation: scRowIn .5s var(--ease) forwards; }
.sc-doc-ic { width: 28px; height: 28px; border-radius: 7px; background: var(--blue-50); color: var(--blue-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sc-doc-n { flex: 1; font-size: 12px; font-weight: 500; color: var(--ink-900); }
.sc-doc-ok { width: 20px; height: 20px; border-radius: 999px; background: var(--green-50); color: var(--green-600); display: flex; align-items: center; justify-content: center; }
.sc-send { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; background: white; border: 1px solid var(--border); border-radius: 10px; }
.sc-send-to { display: flex; gap: 7px; }
.sc-send-chip { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--ink-700); background: var(--ink-50); border: 1px solid var(--border); padding: 5px 10px; border-radius: 999px; }
.sc-send-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: white; background: var(--blue-500); border: 0; border-radius: 8px; padding: 8px 14px; cursor: default; }

.sc-assign { display: grid; gap: 12px; margin-bottom: 12px; }
.sc-assign-route { padding: 13px 15px; background: white; border: 1px solid var(--border); border-radius: 10px; }
.sc-pt { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--ink-900); font-weight: 500; }
.sc-pt i { width: 9px; height: 9px; border-radius: 999px; flex-shrink: 0; }
.sc-pt-a { background: var(--green-500); }
.sc-pt-b { background: var(--blue-500); }
.sc-pt-line { width: 1.5px; height: 16px; background: var(--border); margin: 4px 0 4px 4px; }
.sc-assign-pick { padding: 13px 15px; background: white; border: 1px solid var(--blue-200); border-radius: 10px; }
.sc-assign-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-400); margin-bottom: 8px; }
.sc-assign-sel { display: flex; align-items: center; gap: 10px; }
.sc-plate { font-family: "Montserrat"; font-weight: 700; font-size: 11px; padding: 3px 7px; background: #FFE600; border: 1.5px solid #0B1220; border-radius: 4px; color: #0B1220; }
.sc-assign-driver { font-size: 11.5px; color: var(--ink-600); }
.sc-route-made { display: flex; align-items: center; gap: 8px; padding: 11px 14px; background: rgba(255,138,61,.10); border: 1px solid rgba(255,138,61,.25); border-radius: 9px; font-size: 12px; font-weight: 600; color: #D4621A; }

.sc-phone-wrap { flex: 1; display: flex; align-items: center; gap: 22px; padding: 8px; justify-content: center; }
.sc-phone { width: 214px; height: 340px; flex-shrink: 0; background: #0B1220; border-radius: 30px; padding: 9px; box-shadow: 0 24px 50px -18px rgba(11,18,32,.5); position: relative; }
.sc-phone-notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 80px; height: 18px; background: #0B1220; border-radius: 999px; z-index: 2; }
.sc-phone-screen { width: 100%; height: 100%; background: white; border-radius: 22px; overflow: hidden; padding: 30px 14px 14px; }
.sc-ph-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.sc-ph-badge { font-size: 8.5px; font-weight: 800; color: white; background: var(--blue-500); padding: 3px 7px; border-radius: 999px; }
.sc-ph-ttn { font-size: 9px; color: var(--ink-400); font-weight: 600; }
.sc-ph-route { background: var(--ink-50); border-radius: 10px; padding: 10px; margin-bottom: 12px; display: grid; gap: 7px; }
.sc-ph-pt { display: flex; align-items: center; gap: 7px; font-size: 10px; color: var(--ink-900); font-weight: 500; }
.sc-ph-pt i { width: 7px; height: 7px; border-radius: 999px; flex-shrink: 0; }
.sc-ph-status-lbl { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-400); margin-bottom: 8px; }
.sc-ph-steps { display: grid; gap: 6px; }
.sc-ph-step { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 8px; font-size: 10.5px; font-weight: 500; color: var(--ink-500); background: var(--ink-50); border: 1px solid transparent; }
.sc-ph-step svg { color: var(--green-500); }
.sc-ph-step.done { color: var(--ink-900); }
.sc-ph-step.active { background: var(--blue-50); border-color: var(--blue-200); color: var(--blue-700); font-weight: 600; }
.sc-ph-dot { width: 10px; height: 10px; border-radius: 999px; border: 2px solid currentColor; flex-shrink: 0; }
.sc-side { max-width: 200px; }
.sc-side-h { display: flex; align-items: center; gap: 9px; font-family: "Montserrat"; font-weight: 700; font-size: 15px; color: var(--ink-900); margin-bottom: 10px; }
.sc-side-h svg { color: var(--blue-500); }
.sc-side p { font-size: 13px; line-height: 1.55; color: var(--ink-500); margin: 0; }

.sc-sign-screen { display: flex; flex-direction: column; gap: 12px; }
.sc-sign-doc { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 16px; background: var(--ink-50); border-radius: 12px; color: var(--blue-500); }
.sc-sign-doc b { font-size: 13px; color: var(--ink-900); }
.sc-sign-doc span { font-size: 10px; color: var(--ink-500); }
.sc-sign-opts { display: grid; gap: 7px; }
.sc-sign-opt { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 10px; border-radius: 9px; font-size: 11.5px; font-weight: 600; background: white; border: 1px solid var(--border); color: var(--ink-800); cursor: default; }
.sc-sign-diia { background: #0B1220; color: white; border-color: #0B1220; }
.sc-sign-offline { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 10px; color: var(--ink-500); }
.sc-sign-done { display: flex; align-items: center; justify-content: center; gap: 7px; padding: 9px; border-radius: 9px; margin-top: auto; background: var(--green-50); color: var(--green-600); font-size: 11.5px; font-weight: 700; }

.sc-recv-status { display: flex; align-items: center; gap: 9px; padding: 12px 15px; margin-bottom: 12px; background: var(--green-50); border: 1px solid var(--green-100); border-radius: 10px; font-size: 13px; font-weight: 700; color: var(--green-600); }
.sc-recv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.sc-recv-cell { padding: 11px 13px; background: white; border: 1px solid var(--border); border-radius: 9px; }
.sc-recv-cell span { display: block; font-size: 10px; color: var(--ink-400); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.sc-recv-cell b { font-size: 13px; color: var(--ink-900); }
.sc-recv-analytics { display: flex; align-items: center; gap: 8px; padding: 11px 14px; background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: 9px; font-size: 12px; font-weight: 500; color: var(--blue-700); }
.sc-sign-trio {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  padding: 11px 14px; margin-bottom: 12px;
  background: rgba(0,184,74,.07); border: 1px solid var(--green-100); border-radius: 9px;
}
.sc-trio-step {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: var(--green-600);
  background: white; border: 1px solid var(--green-100);
  padding: 4px 9px; border-radius: 999px;
}
.sc-trio-label { font-size: 11px; font-weight: 500; color: var(--ink-500); margin-left: auto; }

@media (max-width: 860px) {
  .ettn-scene-body { grid-template-columns: 1fr; }
  .ettn-scene-screen { min-height: 300px; }
}

/* Scene 1 — registration chain */
.sc-chain {
  display: flex; align-items: stretch; gap: 8px;
  margin-top: 12px; flex-wrap: wrap;
}
.sc-chain-step {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 11px; border-radius: 9px;
  font-size: 11px; font-weight: 600;
  opacity: 0; animation: scRowIn .5s var(--ease) forwards;
}
.sc-chain-step.done { background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-700); }
.sc-chain-step.gov { background: rgba(0,184,74,.10); border: 1px solid var(--green-100); color: var(--green-600); flex: 1; }
.sc-chain-step.gov svg { color: var(--green-600); }
.sc-chain-step.done svg { color: var(--blue-500); }
.sc-chain-step.sign { background: rgba(138,79,255,.10); border: 1px solid rgba(138,79,255,.22); color: #6B3FD4; }
.sc-chain-step.sign svg { color: #8A4FFF; }
.sc-chain-arrow {
  display: flex; align-items: center;
  color: var(--ink-300); font-weight: 700; font-size: 14px;
  opacity: 0; animation: scRowIn .5s var(--ease) forwards;
}

/* ============ Map mock specifics ============ */
.map-mock {
  position: relative;
  height: 520px;
  background:
    radial-gradient(at 20% 30%, rgba(0,124,255,.05), transparent 50%),
    radial-gradient(at 80% 70%, rgba(0,207,62,.05), transparent 50%),
    #F1F5FB;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,124,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,124,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ============ Driver app frame ============ */
.phone-frame {
  width: 280px; height: 580px;
  background: #0B1220;
  border-radius: 44px;
  padding: 14px;
  margin: 0 auto;
  box-shadow: 0 30px 80px -20px rgba(11,18,32,.45), 0 10px 24px -8px rgba(11,18,32,.2);
  position: relative;
}
.phone-screen {
  width: 100%; height: 100%;
  background: white;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px;
  background: #0B1220;
  border-radius: 999px;
  z-index: 2;
}

/* ============ Cargo Exchanges (redesigned) ============ */
.ex-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Left — feed mock */
.ex-mock {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.ex-mock-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: var(--ink-50);
  border-bottom: 1px solid var(--border);
}
.ex-mock-title { font-family: "Montserrat"; font-weight: 700; font-size: 14px; color: var(--ink-900); letter-spacing: -.01em; }
.ex-mock-sub { font-size: 11.5px; color: var(--ink-500); margin-top: 2px; }
.ex-live {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px;
  background: white;
  border: 1px solid var(--green-100);
  border-radius: 999px;
  font-size: 11.5px; font-weight: 600; color: var(--green-600);
}
.ex-live-dot {
  width: 7px; height: 7px; border-radius: 999px; background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(0,207,62,.18);
}

.ex-incoming { padding: 10px 12px 6px; display: grid; gap: 6px; }
.ex-row {
  display: grid;
  grid-template-columns: 1.4fr auto 90px 76px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  transition: background .2s, border-color .2s;
}
.ex-row:hover { background: var(--ink-50); }
.ex-row-hot {
  background: var(--blue-50);
  border-color: var(--blue-100);
}
.ex-route-line {
  display: flex; align-items: center; gap: 6px;
  font-weight: 600;
  color: var(--ink-900);
}
.ex-route-line svg { color: var(--ink-400); }
.ex-cargo { font-size: 11.5px; color: var(--ink-500); margin-top: 3px; }
.ex-price {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-900);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.ex-src {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  text-align: center;
}
.ex-margin {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700;
  color: var(--green-600);
  justify-content: flex-end;
}
.ex-margin .ai {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .04em;
  background: var(--blue-500);
  color: white;
  padding: 2px 5px;
  border-radius: 4px;
}

.ex-divider {
  margin: 4px 18px 6px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.ex-divider::before, .ex-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.ex-divider-label {
  padding: 0 14px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink-400);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ex-outgoing { padding: 0 12px 14px; display: grid; gap: 6px; }
.ex-out-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  padding: 10px 14px;
  background: var(--ink-50);
  border-radius: 10px;
  font-size: 12.5px;
  gap: 14px;
  align-items: center;
}
.ex-out-plate {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 11px;
  padding: 3px 7px;
  background: #FFE600;
  border: 1.5px solid #0B1220;
  border-radius: 4px;
  color: #0B1220;
}
.ex-out-route { font-weight: 600; color: var(--ink-900); }
.ex-out-free { font-size: 11.5px; color: var(--ink-500); }
.ex-out-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  color: var(--blue-600);
}
.ex-out-status-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(0,124,255,.18);
}

/* Right — content */
.ex-content { display: grid; gap: 16px; }
.ex-block {
  padding: 26px 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
}
.ex-block-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.ex-block-icon {
  width: 40px; height: 40px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ex-icon-blue  { background: var(--blue-50);  color: var(--blue-500); }
.ex-icon-green { background: var(--green-50); color: var(--green-600); }
.ex-block-head h3 {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.015em;
  margin: 0;
}
.ex-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
  font-size: 14.5px;
  color: var(--ink-700);
}
.ex-list li {
  display: flex; gap: 12px; align-items: flex-start;
  line-height: 1.5;
}
.ex-list li::before {
  content: "";
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--blue-500);
  margin-top: 9px;
}
.ex-list strong { font-weight: 600; color: var(--ink-900); }

.ex-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 18px;
  background: var(--ink-50);
  border-radius: 12px;
  margin-bottom: 18px;
}
.ex-flow-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 8px;
}
.ex-flow-col ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
  font-size: 14px;
  color: var(--ink-900);
}
.ex-flow-col li {
  display: flex; align-items: center; gap: 10px;
  line-height: 1.3;
}
.ex-flow-col li::before { content: none; }
.ex-flow-ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue-500);
  flex-shrink: 0;
}
.ex-flow-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  color: var(--blue-500);
  margin-top: 16px;
}

.ex-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ex-metric {
  padding: 14px 14px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--border);
}
.ex-metric-up { background: rgba(0,207,62,.07); border-color: var(--green-100); }
.ex-metric-down { background: rgba(0,124,255,.06); border-color: var(--blue-100); }
.ex-metric-num {
  font-family: "Montserrat";
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.025em;
  line-height: 1;
  margin-bottom: 6px;
}
.ex-metric-up .ex-metric-num { color: var(--green-600); }
.ex-metric-down .ex-metric-num { color: var(--blue-600); }
.ex-metric-lbl {
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.35;
}

.ex-final {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 24px;
  background: linear-gradient(90deg, var(--blue-50), var(--green-50));
  border: 1px solid var(--blue-100);
  border-radius: 14px;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--blue-700);
  letter-spacing: -.005em;
}
.ex-final svg { color: var(--green-500); flex-shrink: 0; margin-top: 1px; }
.ex-final strong { color: var(--ink-900); font-weight: 700; }

@media (max-width: 1100px) {
  .ex-grid { grid-template-columns: 1fr; gap: 32px; }
  .ex-row { grid-template-columns: 1fr auto; gap: 8px; }
  .ex-row .ex-src, .ex-row .ex-margin { grid-column: 1 / -1; justify-self: start; }
}

/* ============ Util ============ */
.divider {
  height: 1px; background: var(--border); margin: 0;
}
.center { text-align: center; }
.muted { color: var(--ink-500); }

@media (max-width: 1100px) {
  .hero-head { grid-template-columns: 1fr; gap: 32px; }
  .walk-grid { grid-template-columns: 1fr; gap: 40px; }
  .walk-sticky { position: relative; top: 0; min-height: auto; }
  .integrations-grid { grid-template-columns: 1fr; }
  .lead { grid-template-columns: 1fr; padding: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .whatis-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .section { padding: 72px 0; }
  .walk-section { padding: 80px 0; }
  .hero { padding: 32px 0 56px; }
  .nav-links { display: none; }
  .lead, .final-cta { padding: 32px 24px; }
  .final-cta-stats { gap: 28px; grid-template-columns: repeat(3, 1fr); }
  .final-cta-stat .n { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .whatis-list { grid-template-columns: 1fr; }
}

/* Accessibility: respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
}
