*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette */
  --blue-900: #0C1B46;
  --blue-700: #013C74;
  --blue-500: #03588F;
  --blue-300: #6FA9D2;
  --blue-200: #A3C9E4;
  --blue-100: #CFE3F1;
  --blue-50:  #E9F2F9;
  --orange-500: #FA7C3F;
  --orange-600: #E2621F;
  --amber-500: #FFA200;
  --neutral-800: #243047;
  --neutral-500: #61748F;
  --neutral-400: #8496AF;
  --neutral-200: #CDD8E5;
  --neutral-100: #E1E8F0;
  --neutral-50:  #EFF3F8;
  --neutral-25:  #F7F9FC;

  /* Semantic aliases (used by existing CSS) */
  --yellow: var(--blue-100);
  --coral:  var(--blue-500);
  --sky:    var(--blue-700);
  --sand:   var(--blue-50);
  --dark:   var(--blue-900);
  --white:  #ffffff;
  --bg:     var(--neutral-25);
  --border: var(--neutral-100);
  --text:   var(--neutral-800);
  --muted:  var(--neutral-500);
  --accent: var(--orange-500);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

h1, h2, h3, h4, .nav-logo, .hero h1, .sec-title, .cta-title, .feat-title, .step-title, .pain-title, .faq-q, .result-num {
  font-family: 'Avenir Next', 'Avenir', 'Helvetica Neue', system-ui, sans-serif;
}

body {
  counter-reset: sec;
  font-family: 'Avenir Next', 'Avenir', 'Helvetica Neue', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .2s, box-shadow .2s;
}
nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Avenir Next', 'Avenir', 'Helvetica Neue', system-ui, sans-serif;
  font-weight: 700; font-size: 1.05rem; letter-spacing: -.02em; color: var(--dark);
}
.nav-logo-tld { color: var(--neutral-400); font-weight: 600; }
nav.scrolled .nav-logo-tld { color: var(--neutral-400); }
.footer-logo-tld { opacity: .5; font-weight: 600; }
nav.scrolled .nav-logo { color: var(--dark); }
/* nav links already styled via default dark color — no dark-hero overrides needed */
.nav-links { display: flex; gap: 2px; }
.nav-links a {
  padding: 7px 13px; border-radius: 7px; font-size: .875rem;
  font-weight: 500; color: var(--muted); transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--dark); background: var(--bg); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn-ghost { padding: 8px 16px; border-radius: 7px; font-size: .875rem; font-weight: 600; color: var(--muted); }
.btn-ghost:hover { background: var(--bg); color: var(--dark); }
.btn-primary {
  padding: 9px 20px; border-radius: 7px; font-size: .875rem; font-weight: 700;
  background: var(--accent); color: var(--blue-900);
  transition: background .15s;
}
.btn-primary:hover { background: var(--orange-600); color: white; }
.nav-mobile-btn { display: none; width: 36px; height: 36px; border-radius: 7px; align-items: center; justify-content: center; color: var(--muted); }
.nav-mobile-btn:hover { background: var(--bg); }
.nav-drawer {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background: white; border-bottom: 1px solid var(--border);
  padding: 12px 24px 20px; flex-direction: column; gap: 2px;
  box-shadow: 0 8px 24px rgba(42,37,32,.08);
}
.nav-drawer.open { display: flex; }
.nav-drawer a { padding: 11px 12px; border-radius: 7px; font-size: .95rem; font-weight: 600; color: var(--muted); }
.nav-drawer a:hover { background: var(--bg); color: var(--dark); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: #F4F5F7;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.hero-grid { display: none; }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.hero-inner > * { min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0; margin-bottom: 26px;
  font-size: .72rem; font-weight: 600; color: var(--muted);
  letter-spacing: .16em; text-transform: uppercase;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange-500); }

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -.035em; color: var(--dark);
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--orange-500); }
.hero p {
  font-size: 1.05rem; line-height: 1.7; color: var(--muted);
  max-width: 480px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero {
  padding: 13px 26px; border-radius: 6px; font-size: .95rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px; transition: all .18s;
}
.btn-hero-primary { background: var(--orange-500); color: white; font-weight: 700; }
.btn-hero-primary:hover { background: #e86a2b; }
.btn-hero-secondary {
  background: white; border: 1px solid var(--border);
  color: var(--dark);
}
.btn-hero-secondary:hover { border-color: var(--dark); }
.hero-stats { display: flex; gap: 28px; margin-top: 48px; }
.hero-stat-val {
  font-size: 1.55rem; font-weight: 900; letter-spacing: -.04em; color: var(--dark);
}
.hero-stat-label { font-size: .7rem; color: var(--muted); margin-top: 3px; font-weight: 500; line-height: 1.4; }
.hero-stat + .hero-stat { border-left: 1px solid var(--border); padding-left: 28px; }

/* Dashboard mockup — light theme matching the app */
.mockup {
  background: white;
  border: 1px solid #D8DCE6;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(12,27,70,.12), 0 4px 16px rgba(12,27,70,.06);
}
.mockup-bar {
  display: flex; align-items: center; gap: 6px; padding: 10px 16px;
  background: #F0F1F4; border-bottom: 1px solid #D8DCE6;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r{background:#ff5f57} .dot-y{background:#ffbd2e} .dot-g{background:#28c840}
.mockup-url {
  margin-left: 10px; flex: 1; background: white; border: 1px solid #D8DCE6; border-radius: 5px;
  padding: 3px 10px; font-size: .65rem; color: #6B7280; font-family: 'IBM Plex Mono', monospace;
}
.mockup-body { display: flex; height: 380px; }
.mockup-side {
  width: 160px; padding: 12px 8px; background: white;
  border-right: 1px solid #E2E4E9; flex-shrink: 0;
}
.side-logo { display: flex; align-items: center; gap: 7px; padding: 4px 8px; margin-bottom: 16px; }
.side-logo-mark { width: 22px; height: 22px; border-radius: 6px; background: var(--dark); display: flex; align-items: center; justify-content: center; }
.side-logo-text { font-size: .78rem; font-weight: 700; color: var(--dark); }
.side-org { display: flex; align-items: center; gap: 6px; padding: 6px 8px; margin: 0 0 10px; border: 1px solid #E2E4E9; border-radius: 7px; }
.side-org-av { width: 20px; height: 20px; border-radius: 5px; background: var(--dark); color: white; font-size: .5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.side-org-name { font-size: .68rem; font-weight: 600; color: var(--dark); flex: 1; }
.side-label { font-size: .55rem; text-transform: uppercase; letter-spacing: .08em; color: #9CA3AF; padding: 0 10px; margin: 8px 0 4px; font-weight: 700; }
.side-item { display: flex; align-items: center; gap: 7px; padding: 6px 10px; border-radius: 7px; font-size: .7rem; color: #6B7280; margin-bottom: 1px; font-weight: 500; }
.side-item.active { background: #EEF2FF; color: var(--dark); font-weight: 600; position: relative; }
.side-item.active::before { content: ''; position: absolute; left: -8px; top: 50%; transform: translateY(-50%); width: 3px; height: 18px; background: var(--orange-500); border-radius: 0 2px 2px 0; }
.side-dot { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.mockup-main { flex: 1; padding: 16px; background: #F7F8FA; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.m-header { display: flex; align-items: center; justify-content: space-between; }
.m-title { font-size: .82rem; font-weight: 700; color: var(--dark); font-family: 'Avenir Next', 'Avenir', system-ui; }
.m-sub { font-size: .6rem; color: #9CA3AF; margin-top: 2px; }
.m-btn { padding: 5px 11px; background: var(--dark); border-radius: 6px; font-size: .62rem; font-weight: 600; color: white; white-space: nowrap; }
.m-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.m-kpi { background: white; border: 1px solid #E2E4E9; border-radius: 8px; padding: 9px 10px; position: relative; overflow: hidden; }
.m-kpi::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
.m-kpi:nth-child(1)::before { background: #1D4ED8; }
.m-kpi:nth-child(2)::before { background: #03588F; }
.m-kpi:nth-child(3)::before { background: var(--orange-500); }
.m-kpi-val { font-size: 1.1rem; font-weight: 800; letter-spacing: -.03em; color: var(--dark); }
.m-kpi:nth-child(2) .m-kpi-val { color: #03588F; }
.m-kpi:nth-child(3) .m-kpi-val { color: var(--orange-500); }
.m-kpi-label { font-size: .58rem; color: #9CA3AF; margin-top: 2px; }
.m-kpi-trend { font-size: .58rem; color: #059669; margin-top: 4px; font-weight: 600; }
.m-kpi:nth-child(3) .m-kpi-trend { color: var(--orange-500); }
.m-table { flex: 1; background: white; border: 1px solid #E2E4E9; border-radius: 8px; overflow: hidden; }
.m-th { display: grid; grid-template-columns: 2fr 1fr 1fr 70px; padding: 6px 10px; font-size: .56rem; color: #9CA3AF; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; border-bottom: 1px solid #E2E4E9; background: #F9FAFB; }
.m-tr { display: grid; grid-template-columns: 2fr 1fr 1fr 70px; padding: 7px 10px; border-bottom: 1px solid #F3F4F6; align-items: center; font-size: .65rem; }
.m-tr:last-child { border-bottom: none; }
.m-name { color: var(--dark); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-type { color: #9CA3AF; font-weight: 500; }
.m-prog { display: flex; align-items: center; gap: 5px; }
.m-bar { flex: 1; height: 4px; background: #E5E7EB; border-radius: 100px; overflow: hidden; }
.m-fill { height: 100%; border-radius: 100px; background: var(--blue-500); }
.m-pct { font-size: .58rem; color: #9CA3AF; min-width: 24px; }
.chip { display: inline-flex; align-items: center; padding: 2px 7px; border-radius: 100px; font-size: .58rem; font-weight: 700; }
.chip-green { background: #DCFCE7; color: #15803D; }
.chip-blue  { background: #DBEAFE; color: #1D4ED8; }
.chip-amber { background: #FEF9C3; color: #854D0E; }
.chip-gray  { background: #F3F4F6; color: #6B7280; }

/* Float cards — light */
.float-card {
  position: absolute; background: white;
  border: 1px solid #D8DCE6; border-radius: 12px; padding: 12px 15px;
  box-shadow: 0 8px 32px rgba(12,27,70,.1);
}
.float-card-1 { right: -16px; bottom: 90px; width: 185px; }
.float-card-2 { left: -20px; top: 60px; width: 165px; }
.fc-label { font-size: .6rem; color: #9CA3AF; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-bottom: 5px; }
.fc-val { font-size: 1.3rem; font-weight: 900; letter-spacing: -.04em; color: var(--dark); }
.fc-sub { font-size: .65rem; color: #9CA3AF; margin-top: 2px; }

/* ── SECTIONS ── */
section { padding: 112px 0; }
.section-gray { background: var(--bg); }
.section-dark { background: var(--dark); }

/* Numbered editorial eyebrow instead of pill tag */
.tag {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0; border-radius: 0; background: none;
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.tag::before {
  counter-increment: sec;
  content: counter(sec, decimal-leading-zero);
  font-family: 'Avenir Next', 'Avenir', 'Helvetica Neue', system-ui, sans-serif;
  font-weight: 700; color: var(--orange-500); letter-spacing: 0;
}
.tag::after { content: ''; width: 40px; height: 1px; background: var(--neutral-200); }
.section-dark .tag { background: none; color: rgba(255,255,255,.45); }
.section-dark .tag::after { background: rgba(255,255,255,.15); }

.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.08; color: var(--dark); margin-bottom: 14px;
}
.section-dark .sec-title { color: white; }
.sec-sub { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 540px; }
.section-dark .sec-sub { color: rgba(230,216,196,.42); }
.text-center { text-align: center; }
.text-center .sec-sub { margin: 0 auto; }
.mb-56 { margin-bottom: 56px; }

/* Editorial split header: title left, sub right */
.sec-head {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 20px 72px; align-items: end; margin-bottom: 72px;
}
.sec-head .tag { grid-column: 1 / -1; margin-bottom: 0; }
.sec-head .sec-title { margin-bottom: 0; }
.sec-head .sec-sub { padding-bottom: 5px; }
.text-center .tag { justify-content: center; }

/* ── TRUSTED ── */
.logos { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; margin-top: 36px; }
.logo-item { display: flex; align-items: center; gap: 7px; opacity: .32; filter: grayscale(1); transition: all .2s; }
.logo-item:hover { opacity: .6; filter: none; }
.logo-icon { width: 24px; height: 24px; border-radius: 5px; display: flex; align-items: center; justify-content: center; }
.logo-name { font-size: .9rem; font-weight: 700; color: var(--muted); letter-spacing: -.01em; }

/* ── PROBLEM ── */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pain-list { display: flex; flex-direction: column; gap: 0; margin-top: 36px; border-top: 1px solid var(--neutral-100); }
.pain-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--neutral-100);
}
.pain-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pain-title { font-size: .875rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.pain-desc { font-size: .8rem; color: var(--muted); line-height: 1.55; }
.before-after { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 90px; }
.ba-card { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.ba-head { padding: 18px 20px; }
.ba-title { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.ba-headline { font-size: 1rem; font-weight: 800; color: var(--dark); letter-spacing: -.01em; }
.ba-body { padding: 16px 20px; }
.ba-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--bg); font-size: .8rem; }
.ba-row:last-child { border-bottom: none; }
.ba-label { color: var(--muted); }
.ba-val-bad { color: #c0392b; font-weight: 700; font-size: .85rem; }
.ba-val-good { color: #2d7d5a; font-weight: 700; font-size: .85rem; }
.before-card .ba-head { background: #fff5f5; }
.before-card .ba-title { color: #c0392b; }
.after-card { border-color: var(--sand); }
.after-card .ba-head { background: #fdf9f3; }
.after-card .ba-title { color: var(--muted); }
.after-big { font-size: 1.8rem; font-weight: 900; letter-spacing: -.04em; color: var(--dark); margin-bottom: 4px; }
.after-desc { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feat-card {
  padding: 26px; background: white; border: 1px solid var(--border);
  border-radius: 12px; transition: all .22s;
}
.feat-card:hover { border-color: var(--coral); box-shadow: 0 8px 28px rgba(248,131,121,.1); transform: translateY(-2px); }
.feat-icon { width: 42px; height: 42px; border-radius: 9px; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feat-icon svg { width: 22px; height: 22px; color: var(--coral); }
.feat-title { font-size: .95rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; letter-spacing: -.01em; }
.feat-desc { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* ── WORKFLOW ── */
.steps { display: flex; align-items: flex-start; gap: 0; position: relative; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; }
.step::after { content: ''; position: absolute; top: 35px; right: -35%; width: 70%; height: 1px; background: var(--border); }
.step:last-child::after { display: none; }
.step-icon { width: 70px; height: 70px; border-radius: 12px; background: white; border: 1.5px solid var(--border); box-shadow: 0 2px 10px rgba(42,37,32,.06); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; position: relative; z-index: 1; transition: all .2s; }
.step:hover .step-icon { border-color: var(--coral); box-shadow: 0 6px 22px rgba(248,131,121,.15); transform: translateY(-3px); }
.step-icon svg { width: 28px; height: 28px; color: var(--coral); }
.step-num { position: absolute; top: -8px; right: -8px; width: 20px; height: 20px; background: var(--coral); border-radius: 50%; font-size: .6rem; font-weight: 800; color: white; display: flex; align-items: center; justify-content: center; }
.step-title { font-size: .875rem; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.step-desc { font-size: .75rem; color: var(--muted); line-height: 1.55; }

/* ── RESULTS ── */
.results-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(230,216,196,.15); border-radius: 14px; overflow: hidden; border: 1px solid rgba(230,216,196,.2); }
.result-item { padding: 44px 28px; text-align: center; background: rgba(20,16,12,.92); }
.result-num {
  display: block; font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 900;
  letter-spacing: -.05em; line-height: 1; margin-bottom: 10px;
  color: var(--yellow);
}
.result-label { font-size: .83rem; color: rgba(230,216,196,.38); line-height: 1.5; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.testi-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: all .22s; }
.testi-card:hover { box-shadow: 0 8px 28px rgba(248,131,121,.08); transform: translateY(-2px); border-color: var(--sand); }
.testi-stars { margin-bottom: 16px; color: var(--yellow); letter-spacing: 1px; font-size: .9rem; }
.testi-text { font-size: .875rem; color: var(--muted); line-height: 1.75; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 10px; padding-top: 18px; border-top: 1px solid var(--bg); }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 800; color: white; flex-shrink: 0; }
.author-name { font-size: .82rem; font-weight: 700; color: var(--dark); }
.author-role { font-size: .73rem; color: var(--muted); margin-top: 1px; }
.author-co { font-size: .68rem; font-weight: 600; color: var(--coral); margin-top: 2px; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--neutral-100); }
.faq-item { background: none; border: none; border-bottom: 1px solid var(--neutral-100); border-radius: 0; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 22px 2px; cursor: pointer; user-select: none; }
.faq-q:hover .faq-q-text { color: var(--blue-500); }
.faq-q-text { font-size: .95rem; font-weight: 700; color: var(--dark); line-height: 1.4; transition: color .15s; }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: none; border: 1px solid var(--neutral-200); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--muted); transition: all .2s; }
.faq-item.open .faq-icon { background: var(--dark); border-color: var(--dark); color: white; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 40px 22px 2px; font-size: .9rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── CTA ── */
.cta-section {
  padding: 100px 0; background: var(--dark); text-align: center; position: relative; overflow: hidden;
}
.cta-title { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; letter-spacing: -.035em; color: white; line-height: 1.12; margin-bottom: 18px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-sub { font-size: 1rem; color: rgba(230,216,196,.4); margin-bottom: 40px; max-width: 400px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-fine { margin-top: 20px; font-size: .75rem; color: rgba(230,216,196,.22); }

/* ── FOOTER ── */
footer { background: var(--dark); border-top: 1px solid rgba(230,216,196,.07); padding: 28px 0; }
.footer-short {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: .95rem; color: white; letter-spacing: -.02em; }
.footer-logo-mark { width: 22px; height: 22px; border-radius: 5px; background: var(--coral); flex-shrink: 0; }
.footer-short-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-link { font-size: .82rem; color: rgba(230,216,196,.38); transition: color .15s; }
.footer-link:hover { color: rgba(230,216,196,.75); }
.footer-copy { font-size: .75rem; color: rgba(230,216,196,.2); white-space: nowrap; }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(42,37,32,.7); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white; border-radius: 16px; width: 100%; max-width: 480px;
  padding: 36px; position: relative; box-shadow: 0 32px 80px rgba(0,0,0,.22);
  animation: modal-in .22s ease;
}
@keyframes modal-in { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }
.modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; background: var(--bg); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 1rem; transition: background .15s; }
.modal-close:hover { background: var(--border); }
.modal-icon { width: 40px; height: 40px; background: var(--coral); border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.modal-title { font-size: 1.35rem; font-weight: 900; letter-spacing: -.03em; color: var(--dark); margin-bottom: 6px; }
.modal-sub { font-size: .85rem; color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 12px; }
.form-label { display: block; font-size: .75rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.form-input {
  width: 100%; padding: 9px 13px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: .875rem; color: var(--dark);
  outline: none; font-family: inherit; transition: border-color .15s;
}
.form-input:focus { border-color: var(--coral); }
.form-submit { width: 100%; padding: 13px; background: var(--coral); color: white; border-radius: 9px; font-size: .9rem; font-weight: 700; transition: background .15s; margin-top: 6px; font-family: inherit; }
.form-submit:hover { background: var(--orange-600); }
.modal-fine { text-align: center; font-size: .72rem; color: var(--muted); margin-top: 14px; }
.modal-success { display: none; text-align: center; padding: 16px 0; }
.modal-success-icon { font-size: 2.5rem; margin-bottom: 14px; }
.modal-success-title { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.modal-success-desc { font-size: .85rem; color: var(--muted); }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }
.delay-5 { transition-delay: .40s; }

/* ── LOOP / HOW IT WORKS ── */
.loop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.loop-col { display: flex; flex-direction: column; gap: 0; }
.loop-step { display: flex; gap: 18px; padding-bottom: 28px; position: relative; }
.loop-step::before { content:''; position:absolute; left: 18px; top: 36px; bottom: 0; width: 2px; background: var(--border); }
.loop-step:last-child::before { display: none; }
.loop-num {
  width: 36px; height: 36px; border-radius: 10px; background: var(--dark); color: var(--yellow);
  font-family: 'Avenir Next', 'Avenir', 'Helvetica Neue', system-ui, sans-serif; font-size: .75rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  position: relative; z-index: 1;
}
.loop-num-gap { background: var(--orange-500); color: var(--dark); }
.loop-num-partner { background: var(--blue-500); color: white; }
.loop-content { padding-top: 6px; }
.loop-title { font-size: .9rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; letter-spacing: -.01em; }
.loop-title-gap { color: var(--orange-500); }
.loop-title-partner { color: var(--blue-500); }
.loop-desc { font-size: .8rem; color: var(--muted); line-height: 1.6; }
.loop-col-right .loop-step::before { background: linear-gradient(var(--orange-500), var(--blue-500)); }
.loop-final {
  display: flex; align-items: center; gap: 12px;
  margin-top: 8px; padding: 20px 24px;
  background: var(--dark); border-radius: 8px;
}
.loop-final-label { font-size: .8rem; color: rgba(255,255,255,.4); font-weight: 600; }
.loop-final-yes { font-size: 2rem; font-weight: 900; color: var(--amber-500); letter-spacing: -.05em; }

/* ── LOOP ANIMATIONS ── */
/* Directional entrance: left col from left, right col from right */
.loop-col-left .loop-step.reveal  { transform: translateX(-28px); opacity: 0; }
.loop-col-right .loop-step.reveal { transform: translateX(28px);  opacity: 0; }
.loop-col-left .loop-step.reveal.visible,
.loop-col-right .loop-step.reveal.visible { transform: none; opacity: 1; }

/* Longer stagger for loop */
#how-it-works .loop-step:not([class*="delay"]),
#how-it-works .loop-col-left .loop-step:nth-child(1) { transition-delay: 0s; }
#how-it-works .delay-1 { transition-delay: .18s; }
#how-it-works .delay-2 { transition-delay: .36s; }
#how-it-works .delay-3 { transition-delay: .54s; }
#how-it-works .delay-4 { transition-delay: .72s; }

/* Connector line draw */
.loop-step::before { transform: scaleY(0); transform-origin: top; transition: transform .5s ease; }
.loop-step.visible::before { transform: scaleY(1); transition-delay: .25s; }

/* Number badge pop */
.loop-step .loop-num { transform: scale(.6); transition: transform .38s cubic-bezier(.34,1.56,.64,1); }
.loop-step.visible .loop-num { transform: scale(1); transition-delay: .12s; }

/* Final "Easier." entrance */
.loop-final.reveal { transform: translateY(16px) scale(.97); opacity: 0; }
.loop-final.reveal.visible { transform: none; opacity: 1; transition: opacity .55s ease .72s, transform .55s ease .72s; }

/* ── GAP ADVISOR ── */
/* ── PLATFORM SECTION ── */
.platform-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.platform-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Process steps (dark-themed loop style) */
.pflow { display: flex; flex-direction: column; gap: 0; }
.pflow-step { display: flex; gap: 18px; padding-bottom: 24px; position: relative; }
.pflow-step::before { content:''; position:absolute; left: 17px; top: 36px; bottom: 0; width: 2px; background: rgba(255,255,255,.08); transform: scaleY(0); transform-origin: top; transition: transform .5s ease; }
.pflow-step.visible::before { transform: scaleY(1); transition-delay: .25s; }
.pflow-num { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.7); font-family: 'Avenir Next', 'Avenir', 'Helvetica Neue', system-ui, sans-serif; font-size: .75rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; transform: scale(.6); transition: transform .38s cubic-bezier(.34,1.56,.64,1); }
.pflow-step.visible .pflow-num { transform: scale(1); transition-delay: .1s; }
.pflow-num-improve { background: rgba(250,124,63,.2); border-color: rgba(250,124,63,.4); color: var(--orange-500); }
.pflow-content { padding-top: 6px; }
.pflow-title { font-size: .9rem; font-weight: 800; color: white; margin-bottom: 4px; letter-spacing: -.01em; }
.pflow-title-improve { color: var(--orange-500); }
.pflow-desc { font-size: .8rem; color: rgba(230,216,196,.45); line-height: 1.6; }

/* Outcome callout */
.pflow-outcome { display: flex; align-items: center; gap: 14px; margin-top: 4px; padding: 20px 24px; background: rgba(255,162,0,.06); border: 1px solid rgba(255,162,0,.2); border-radius: 8px; }
.pflow-outcome-label { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--amber-500); white-space: nowrap; }
.pflow-outcome-text { font-size: .82rem; color: rgba(255,255,255,.75); font-weight: 500; line-height: 1.5; }

/* Directional entrance for pflow steps */
.pflow .pflow-step.reveal { transform: translateX(-24px); opacity: 0; }
.pflow .pflow-step.reveal.visible { transform: none; opacity: 1; }
#platform .delay-1 { transition-delay: .15s; }
#platform .delay-2 { transition-delay: .3s; }
#platform .delay-3 { transition-delay: .45s; }
#platform .delay-4 { transition-delay: .6s; }

.gap-feature-card { padding: 22px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; transition: all .2s; }
.gap-feature-card:hover { background: rgba(255,255,255,.07); border-color: rgba(250,124,63,.3); }
.gap-feature-icon { width: 40px; height: 40px; border-radius: 9px; background: rgba(250,124,63,.15); border: 1px solid rgba(250,124,63,.25); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--orange-500); }
.gap-feature-title { font-size: .9rem; font-weight: 800; color: white; margin-bottom: 6px; }
.gap-feature-desc { font-size: .8rem; color: rgba(230,216,196,.45); line-height: 1.6; }

/* ── PRIVACY ── */
.privacy-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.privacy-pillar {
  padding: 32px; background: white; border: 1px solid var(--border); border-radius: 14px;
  transition: all .22s;
}
.privacy-pillar:hover { border-color: var(--blue-500); box-shadow: 0 8px 28px rgba(3,88,143,.08); transform: translateY(-2px); }
.privacy-pillar-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--blue-50); border: 1px solid var(--blue-100); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--blue-500); }
.privacy-pillar-title { font-family: 'Avenir Next', 'Avenir', 'Helvetica Neue', system-ui, sans-serif; font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; letter-spacing: -.01em; }
.privacy-pillar-desc { font-size: .83rem; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.privacy-pillar-list { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.privacy-pillar-list li { font-size: .8rem; color: var(--dark); font-weight: 600; padding: 6px 10px 6px 28px; background: var(--bg); border-radius: 6px; position: relative; }
.privacy-pillar-list li::before { content: '✓'; position: absolute; left: 10px; color: var(--blue-500); font-weight: 800; font-size: .75rem; }
.privacy-pillar-note { font-size: .75rem; color: var(--muted); font-style: italic; padding: 10px; background: var(--blue-50); border-radius: 6px; border-left: 2px solid var(--blue-200); }
.orange-50 { background: #FEF2EB; }

/* ── PARTNERS ── */
.partners-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.partner-card {
  padding: 26px; background: white; border: 1px solid var(--border); border-radius: 12px;
  transition: all .22s;
}
.partner-card:hover { border-color: var(--blue-300); box-shadow: 0 8px 28px rgba(3,88,143,.08); transform: translateY(-2px); }
.partner-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--blue-50); border: 1px solid var(--blue-100); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--blue-500); }
.partner-type { font-family: 'Avenir Next', 'Avenir', 'Helvetica Neue', system-ui, sans-serif; font-size: .9rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; letter-spacing: -.01em; }
.partner-desc { font-size: .8rem; color: var(--muted); line-height: 1.6; }
.partner-card-cta { background: var(--blue-50); border-color: var(--blue-100); }
.partner-card-cta:hover { border-color: var(--blue-500); }

/* ── COMPARISON TABLE ── */
.compare-wrap { overflow-x: auto; border-radius: 14px; border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 14px 20px; text-align: left; font-size: .875rem; border-bottom: 1px solid var(--border); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table thead { background: var(--bg); }
.compare-feature { color: var(--muted); font-weight: 600; font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; width: 50%; }
.compare-others { color: var(--muted); font-weight: 600; font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; text-align: center; width: 25%; }
.compare-us { background: var(--blue-900); color: white; font-weight: 800; font-size: .8rem; text-align: center; width: 25%; border-radius: 0 12px 0 0; }
.compare-table tbody tr:hover td { background: var(--bg); }
.compare-table tbody tr:hover .compare-us-cell { background: var(--blue-700); }
.compare-check-yes { text-align: center; color: #2d7d5a; font-weight: 700; font-size: 1rem; }
.compare-check-no { text-align: center; color: #c0392b; font-weight: 700; font-size: 1rem; }
.compare-us-cell { background: var(--blue-50); border-left: 1px solid var(--blue-100); }
.compare-table th.compare-us { border-radius: 0; }

/* ── PRIVACY STEPS ── */
.privacy-steps { background: white; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }

.pstep-tabs { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--border); }
.pstep-tab {
  padding: 22px 28px; text-align: left; background: none; border: none;
  border-right: 1px solid var(--border); cursor: pointer;
  transition: background .18s; position: relative; overflow: hidden;
}
.pstep-tab:last-child { border-right: none; }
.pstep-tab:hover { background: var(--bg); }
.pstep-tab.active { background: var(--blue-900); }
.pstep-tab-num {
  font-family: 'Avenir Next', 'Avenir', 'Helvetica Neue', system-ui, sans-serif;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  color: var(--neutral-400); margin-bottom: 5px;
  transition: color .18s;
}
.pstep-tab.active .pstep-tab-num { color: rgba(255,255,255,.35); }
.pstep-tab-label {
  font-family: 'Avenir Next', 'Avenir', 'Helvetica Neue', system-ui, sans-serif;
  font-size: .875rem; font-weight: 700; color: var(--dark);
  transition: color .18s;
}
.pstep-tab.active .pstep-tab-label { color: white; }
.pstep-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: transparent; }
.pstep-bar { height: 100%; width: 0%; background: var(--amber-500); border-radius: 0; transition: none; }
.pstep-tab.active .pstep-bar { width: 100%; }
.pstep-tab.animating .pstep-bar { transition: width 4s linear; }

.pstep-panels { position: relative; min-height: 320px; }
.pstep-panel {
  display: none; grid-template-columns: 1fr 1fr; gap: 56px;
  padding: 48px 48px; align-items: center;
}
.pstep-panel.active { display: grid; animation: panel-in .35s ease; }
@keyframes panel-in { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }

.pstep-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500); margin-bottom: 20px;
}
.pstep-title {
  font-family: 'Avenir Next', 'Avenir', 'Helvetica Neue', system-ui, sans-serif;
  font-size: 1.3rem; font-weight: 800; color: var(--dark);
  letter-spacing: -.02em; margin-bottom: 14px; line-height: 1.2;
}
.pstep-desc { font-size: .875rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.pstep-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.pstep-list li {
  font-size: .83rem; color: var(--dark); font-weight: 500;
  padding: 7px 12px 7px 30px; background: var(--bg);
  border-radius: 7px; position: relative;
}
.pstep-list li::before { content: '✓'; position: absolute; left: 10px; color: var(--blue-500); font-weight: 800; font-size: .75rem; }
.pstep-note {
  font-size: .78rem; color: var(--muted); font-style: italic;
  padding: 10px 14px; background: var(--blue-50);
  border-radius: 8px; border-left: 2px solid var(--blue-200); line-height: 1.55;
}

/* Panel right — connections */
.pstep-connections { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.pstep-hub {
  width: 80px; height: 80px; border-radius: 20px; background: var(--blue-900);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(12,27,70,.25);
}
.pstep-hub-inner { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.pstep-hub-inner span { font-size: .58rem; font-weight: 700; color: rgba(255,255,255,.5); }
.pstep-sources { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; width: 100%; }
.pstep-source {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 12px 8px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; font-size: .68rem; font-weight: 600; color: var(--muted);
  transition: all .18s;
}
.pstep-source:hover { border-color: var(--blue-200); background: var(--blue-50); }
.pstep-source-icon { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; }

/* Panel right — shield */
.pstep-shield-vis { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.pstep-shield { animation: shield-float 3s ease-in-out infinite; }
@keyframes shield-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.pstep-shield-labels { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pstep-shield-badge {
  padding: 5px 12px; background: var(--blue-50); border: 1px solid var(--blue-100);
  border-radius: 100px; font-size: .72rem; font-weight: 700; color: var(--blue-700);
}

/* Panel right — AI grid */
.pstep-ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pstep-ai-card {
  padding: 14px 16px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; transition: all .18s;
}
.pstep-ai-card:hover { border-color: var(--blue-200); background: var(--blue-50); transform: translateY(-1px); }
.pstep-ai-card-local { grid-column: 1 / -1; background: var(--blue-50); border-color: var(--blue-100); }
.pstep-ai-dot { width: 8px; height: 8px; border-radius: 50%; margin-bottom: 8px; }
.pstep-ai-name { font-size: .82rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.pstep-ai-note { font-size: .7rem; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .results-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .float-card-1, .float-card-2 { display: none; }
}
@media (max-width: 768px) {
  .sec-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 48px; }
  .loop-grid { grid-template-columns: 1fr; gap: 0; }
  .platform-layout { grid-template-columns: 1fr; gap: 40px; }
  .platform-cards { grid-template-columns: 1fr; }
  .pstep-panel { grid-template-columns: 1fr; gap: 32px; padding: 28px 24px; }
  .pstep-tab { padding: 14px 16px; }
  .pstep-tab-label { font-size: .75rem; }
  .nav-links, .nav-actions { display: none; }
  .nav-mobile-btn { display: flex; }
  section { padding: 64px 0; }
  .hero { padding: 96px 0 64px; }
  .problem-grid { grid-template-columns: 1fr; }
  .before-after { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; gap: 24px; }
  .step::after { display: none; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .results-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 0 56px; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); letter-spacing: -.03em; }
  .hero p { font-size: .95rem; max-width: 100%; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 16px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-hero { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-short { flex-direction: column; gap: 16px; text-align: center; }
  .footer-short-links { justify-content: center; }
  .mockup-wrap { display: none; }
}
