/* ═══════════════════════════════════════════════════════════
   SALTWATER AI — MAIN STYLESHEET
   Design system inspired by lazarev.agency
   Font: Sora (headings) + Inter (body)
   ═══════════════════════════════════════════════════════════ */

/* ─── 0. RESET ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; }
ul, ol { list-style: none; }

/* ─── 1. ROOT TOKENS ────────────────────────────────────── */
:root {
  /* Colors */
  --bg:          #060E1A;
  --surface:     #0B192A;
  --surface-2:   #0E1E32;
  --surface-3:   #081221;
  --border:      #152233;
  --border-light:#1E3347;
  --teal:        #14B8A6;
  --teal-light:  #2DD4BF;
  --teal-dim:    rgba(20,184,166,0.15);
  --teal-glow:   rgba(20,184,166,0.25);
  --gold:        #C9A87C;
  --gold-dim:    rgba(201,168,124,0.12);
  --text:        #C0D4E6;
  --text-dim:    #6B8CAE;
  --text-muted:  #3D5A73;
  --white:       #ffffff;
  --red:         #EF4444;
  --green:       #22C55E;

  /* Typography */
  --font-heading: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Type scale */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 16px;
  --text-lg:   18px;
  --text-xl:   22px;
  --h3:        clamp(18px, 2vw, 22px);
  --h2:        clamp(32px, 4vw, 52px);
  --h1:        clamp(48px, 7vw, 84px);

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;
  --section:  clamp(80px, 10vw, 140px);

  /* Layout */
  --container: 1180px;
  --gutter:    clamp(20px, 4vw, 40px);

  /* Radius */
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full:9999px;

  /* Transitions */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
  --fast:     0.15s;
  --base:     0.3s;
  --slow:     0.5s;

  /* Shadows */
  --shadow-teal: 0 0 40px rgba(20,184,166,0.2), 0 0 80px rgba(20,184,166,0.08);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 8px 32px rgba(0,0,0,0.3);
}

/* ─── 2. BASE ───────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── 3. TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}

h1 { font-size: var(--h1); line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); letter-spacing: -0.01em; }

p { line-height: 1.75; color: var(--text-dim); }

.section-index {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.section-index::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--teal);
  opacity: 0.4;
}

.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-3);
}

/* ─── 4. UTILITIES ──────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.accent { color: var(--teal); }
.accent-gold { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--base) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--teal);
  color: var(--bg);
  box-shadow: 0 0 24px var(--teal-glow);
}

.btn--primary:hover {
  background: var(--teal-light);
  box-shadow: 0 0 40px var(--teal-glow), 0 0 80px rgba(20,184,166,0.1);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}

.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--dark:hover {
  border-color: var(--border-light);
  color: var(--white);
}

.tag {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.tag--teal { background: var(--teal-dim); color: var(--teal); }
.tag--gold { background: var(--gold-dim); color: var(--gold); }

.word-wrap { overflow: hidden; display: inline-block; }

/* Reveal animation container — GSAP handles initial state, not CSS */
.reveal-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.reveal-word-inner {
  display: inline-block;
}

/* ─── 5. NAVIGATION ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--space-10);
  height: 72px;
  display: flex;
  align-items: center;
  transition: background var(--base) var(--ease),
              border-color var(--base) var(--ease),
              backdrop-filter var(--base) var(--ease),
              transform var(--base) var(--ease);
}

.nav.scrolled {
  background: rgba(6, 14, 26, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav.hidden { transform: translateY(-110%); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 28px;
  height: 28px;
}

.nav__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.nav__link {
  font-size: var(--text-sm);
  color: var(--text-dim);
  font-weight: 500;
  transition: color var(--fast) var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--fast) var(--ease);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__cta {
  margin-left: var(--space-4);
  padding: 10px 20px;
  font-size: var(--text-sm);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: var(--space-2);
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all var(--base) var(--ease);
}

/* ─── 6. HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

/* Ambient background glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center,
    rgba(20,184,166,0.05) 0%,
    rgba(20,184,166,0.02) 45%,
    transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

/* Lazarev-style: centered full-width */
.hero__center {
  text-align: center;
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 120px);
  position: relative;
  z-index: 1;
}

.hero__headline {
  font-size: clamp(52px, 8vw, 108px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-10);
}

.hero__headline .line {
  display: block;
  overflow: hidden;
}

.hero__headline .line-inner {
  display: block;
  transform: translateY(110%);
}

.hero__sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto var(--space-10);
  /* opacity set by GSAP — no CSS initial opacity */
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  /* opacity set by GSAP */
}

/* ── NANO BANANA PLACEHOLDER ── */
/* Replace this element with the Nano Banana 2 generated 3D asset */
/* Recommended: transparent-background 3D render, teal/dark tones */
/* Dimensions: 560px × 480px */
.nb-placeholder {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 7/6;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  opacity: 0;
}

.nb-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%,
    rgba(20,184,166,0.08) 0%,
    transparent 60%);
}

.nb-placeholder__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.nb-placeholder__icon {
  font-size: 48px;
  opacity: 0.15;
  margin-bottom: var(--space-4);
  display: block;
}

.nb-placeholder__label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
}

.nb-placeholder__dims {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-2);
  display: block;
}

.nb-placeholder__hint {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-1);
  display: block;
}

/* ─── 7. STATS BAR ──────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-3);
}

.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: var(--space-8) var(--space-6);
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-2);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-item__number .counter { display: inline-block; }

.stat-item__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── 8. GEO SECTION ────────────────────────────────────── */
.geo-section {
  padding: var(--section) 0;
}

.geo-section__intro {
  max-width: 680px;
  margin: 0 auto var(--space-16);
  text-align: center;
}

.geo-section__intro h2 { margin: var(--space-4) 0 var(--space-6); }
.geo-section__intro p { font-size: var(--text-lg); }

/* GEO Checker */
.geo-checker {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-10);
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.geo-checker__input-row {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.geo-checker__input {
  flex: 1;
  background: var(--surface-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text);
  font-size: var(--text-base);
  transition: border-color var(--fast) var(--ease);
}

.geo-checker__input::placeholder { color: var(--text-muted); }
.geo-checker__input:focus { border-color: var(--teal); }

.geo-checker__btn {
  background: var(--teal);
  color: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--base) var(--ease);
  white-space: nowrap;
  box-shadow: 0 0 20px var(--teal-glow);
}

.geo-checker__btn:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}

.geo-platforms { display: flex; flex-direction: column; gap: var(--space-4); }

.geo-platform {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-4);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--base) var(--ease);
}

.geo-platform__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--surface);
  flex-shrink: 0;
}

.geo-platform__name {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}

.geo-platform__sub {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 2px;
}

.geo-platform__status {
  font-size: var(--text-xs);
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  text-align: right;
  transition: all var(--base) var(--ease);
}

.status--idle { color: var(--text-muted); }
.status--checking { color: var(--gold); }
.status--found { color: var(--teal); }
.status--not-found { color: #EF4444; }
.status--partial { color: var(--gold); }

.geo-checker__cta {
  text-align: center;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

.geo-checker__cta p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

/* GEO stats */
.geo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-16);
}

.geo-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.geo-stat-card__num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.geo-stat-card p { font-size: var(--text-sm); }

/* ─── 9. SERVICES ───────────────────────────────────────── */
.services-section { padding: var(--section) 0; }

.services-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-12);
  gap: var(--space-8);
}

.services-section__header h2 { max-width: 560px; }

/* Ticker */
.ticker-wrap {
  margin: 0 calc(-1 * var(--gutter));
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) 0;
  margin-bottom: var(--space-16);
  background: var(--surface-3);
}

.ticker {
  display: flex;
  gap: 0;
  will-change: transform;
}

.ticker__row {
  display: flex;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker__row--reverse {
  animation-direction: reverse;
  animation-duration: 25s;
}

.ticker-sep { margin: var(--space-2) 0; }

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 6px var(--space-8);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
}

.ticker__item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.5;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--base) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity var(--base) var(--ease);
}

.service-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before { opacity: 0.6; }

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--teal-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  font-size: 20px;
}

.service-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.service-card p { font-size: var(--text-sm); line-height: 1.6; }

.service-card__price {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: var(--teal);
  font-weight: 600;
}

/* ─── 10. WHY US ────────────────────────────────────────── */
.why-section {
  padding: var(--section) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-3);
}

.why-section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-16);
}

.why-section__header h2 { margin: var(--space-4) 0 var(--space-6); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-card {
  background: var(--surface);
  padding: var(--space-10);
  transition: background var(--base) var(--ease);
}

.why-card:hover { background: var(--surface-2); }

.why-card__num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--border-light);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-6);
}

.why-card h3 { margin-bottom: var(--space-4); }
.why-card p { font-size: var(--text-sm); line-height: 1.7; }

.why-trust {
  text-align: center;
  margin-top: var(--space-12);
  padding: var(--space-6) var(--space-8);
  background: var(--teal-dim);
  border: 1px solid rgba(20,184,166,0.2);
  border-radius: var(--radius);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--space-12);
}

.why-trust p {
  font-size: var(--text-sm);
  color: var(--text);
}

.why-trust p em {
  font-style: normal;
  color: var(--teal);
  font-weight: 600;
}

/* ─── 11. SOCIAL PROOF ──────────────────────────────────── */
.proof-section { padding: var(--section) 0; }

.proof-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-12);
  gap: var(--space-8);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--base) var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}

.proof-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
}

.proof-card__result {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2);
  line-height: 1;
}

.proof-card__headline {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.proof-card p { font-size: var(--text-sm); flex: 1; }

.proof-card__industry {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card--placeholder {
  border-style: dashed;
  opacity: 0.5;
}

.proof-card--placeholder .proof-card__result {
  color: var(--text-muted);
}

/* ─── 12. PRICING ───────────────────────────────────────── */
.pricing-section {
  padding: var(--section) 0;
  border-top: 1px solid var(--border);
  background: var(--surface-3);
}

.pricing-section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-16);
}

.pricing-section__header h2 { margin: var(--space-4) 0 var(--space-6); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--base) var(--ease);
}

.pricing-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
}

.pricing-card--featured {
  border-color: var(--teal);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--space-4);
}

.pricing-card__price {
  margin-bottom: var(--space-6);
}

.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card__amount.free { color: var(--teal); }

.pricing-card__period {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-1);
}

.pricing-card__desc {
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
  flex: 1;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-dim);
  line-height: 1.5;
}

.pricing-feature::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Enterprise card */
.enterprise-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-8);
  transition: border-color var(--base) var(--ease);
}

.enterprise-card:hover { border-color: var(--border-light); }
.enterprise-card__label { font-size: var(--text-sm); color: var(--text-dim); margin-bottom: var(--space-2); }
.enterprise-card h3 { margin-bottom: var(--space-3); }
.enterprise-card p { font-size: var(--text-sm); max-width: 520px; }
.enterprise-card__actions { display: flex; gap: var(--space-3); flex-shrink: 0; }

/* ─── 13. FAQ ───────────────────────────────────────────── */
.faq-section { padding: var(--section) 0; }

.faq-section__header {
  max-width: 560px;
  margin-bottom: var(--space-12);
}

.faq-section__header h2 { margin: var(--space-4) 0 var(--space-6); }

.faq-list {
  max-width: 800px;
  border-top: 1px solid var(--border);
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  cursor: pointer;
  background: none;
  text-align: left;
  transition: color var(--fast) var(--ease);
}

.faq-trigger:hover .faq-question { color: var(--white); }

.faq-question {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  transition: color var(--fast) var(--ease);
}

.faq-index {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1;
  transition: all var(--base) var(--ease);
}

.faq-item.open .faq-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--bg);
  transform: rotate(45deg);
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--base) var(--ease);
}

.faq-item.open .faq-body { grid-template-rows: 1fr; }

.faq-body__inner {
  overflow: hidden;
  padding-bottom: 0;
  transition: padding var(--base) var(--ease);
}

.faq-item.open .faq-body__inner { padding-bottom: var(--space-6); }

.faq-body__inner p { font-size: var(--text-sm); line-height: 1.75; }

/* ─── 14. CONTACT ───────────────────────────────────────── */
.contact-section { padding: var(--section) 0; }

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-info { position: sticky; top: 80px; }
.contact-info h2 { margin: var(--space-4) 0 var(--space-6); }
.contact-info p { font-size: var(--text-base); margin-bottom: var(--space-8); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-detail__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--teal-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-detail__val {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-input,
.form-textarea,
.form-select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-size: var(--text-sm);
  transition: border-color var(--fast) var(--ease),
              box-shadow var(--fast) var(--ease);
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.1);
  outline: none;
}

.form-textarea { min-height: 120px; resize: vertical; }

.form-select { appearance: none; cursor: pointer; }

.form-select option { background: var(--surface-2); }

.form-submit {
  width: 100%;
  margin-top: var(--space-6);
  padding: 16px;
  font-size: var(--text-base);
  justify-content: center;
}

.form-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-4);
}

/* ─── 15. FOOTER ────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--space-16) 0 var(--space-8);
  background: var(--surface-3);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-8);
}

.footer__brand p {
  font-size: var(--text-sm);
  margin-top: var(--space-4);
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--fast) var(--ease);
}

.footer__link:hover { color: var(--teal); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: var(--text-muted);
  transition: color var(--fast) var(--ease);
}

.footer__legal a:hover { color: var(--teal); }

/* ─── 16. MID-PAGE CTA BLOCK ────────────────────────────── */
.cta-block {
  padding: var(--space-16) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-block__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-12);
  position: relative;
  overflow: hidden;
}

.cta-block__inner::before {
  content: '';
  position: absolute;
  left: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--teal-dim), transparent 70%);
  pointer-events: none;
}

.cta-block__label { color: var(--teal); font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-3); }
.cta-block h2 { font-size: clamp(24px, 3vw, 40px); margin-bottom: var(--space-4); }
.cta-block p { font-size: var(--text-base); max-width: 500px; }
.cta-block__actions { display: flex; flex-direction: column; gap: var(--space-3); flex-shrink: 0; }

/* ─── 17. ANIMATIONS ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.fade-in {
  opacity: 0;
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
}

/* ─── 18. RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .geo-stats { grid-template-columns: 1fr; gap: var(--space-4); }
  .contact-section__inner { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .enterprise-card { grid-template-columns: 1fr; }
  .enterprise-card__actions { flex-direction: row; }
  .cta-block__inner { grid-template-columns: 1fr; }
  .services-section__header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .geo-checker { padding: var(--space-6); }
  .geo-checker__input-row { flex-direction: column; }
  .hero__headline { font-size: clamp(40px, 10vw, 60px); }
}

/* ─── 19. ACCESSIBILITY ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ticker__row { animation: none; }
  .hero__headline .line-inner { transform: none; }
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Mobile nav open state */
.nav__links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0; right: 0; bottom: 0;
  background: var(--bg);
  padding: var(--space-10) var(--gutter);
  align-items: flex-start;
  gap: var(--space-6);
  z-index: 99;
  border-top: 1px solid var(--border);
}

.nav__links.open .nav__link { font-size: 24px; color: var(--text); }
.nav__links.open .nav__cta { align-self: flex-start; }

/* ═══════════════════════════════════════════════════════════
   SUPPLEMENTAL — bridges HTML class names to design system
   ═══════════════════════════════════════════════════════════ */

/* ─── Global utilities ──────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section { padding: var(--section) 0; }

.section-header { margin-bottom: var(--space-16); }

.section-title {
  font-size: var(--h2);
  margin: var(--space-4) 0 var(--space-6);
}

.section-sub {
  font-size: var(--text-lg);
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.7;
}

.btn--sm { padding: 10px 20px; font-size: var(--text-xs); }
.btn--full { width: 100%; justify-content: center; margin-top: var(--space-6); }

/* ─── Nav supplemental ──────────────────────────────────── */
.nav__link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dim);
  transition: color var(--fast) var(--ease);
  letter-spacing: 0.01em;
}
.nav__link:hover,
.nav__link.active { color: var(--white); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--fast) var(--ease);
}
.nav__hamburger:hover { background: var(--surface); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--base) var(--ease);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) { .nav__hamburger { display: flex; } }

/* ─── Hero supplemental ─────────────────────────────────── */
/* Trust bar centered under CTAs */
.hero__center .hero__trust { justify-content: center; }

/* ─── Hero badge pill ───────────────────────────────────── */
.hero__badge {
  display: inline-flex;
  margin-bottom: var(--space-8);
  /* opacity set by GSAP */
}

.hero__badge-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 7px 14px 7px 10px;
  transition: all var(--base) var(--ease);
}

.hero__badge-link:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── Hero dashboard screen ─────────────────────────────── */
.hero__screen {
  margin-top: var(--space-12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 0 0 1px rgba(20,184,166,0.08), 0 32px 80px rgba(0,0,0,0.5);
  /* opacity set by GSAP */
  background: var(--surface);
  position: relative;
}

/* ─── HERO SCAN LINE (overdrive) ───────────── */
.hero__scan-line {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
  border-radius: inherit;
}

.hero__scan-line::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(20, 184, 166, 0.15) 8%,
    rgba(20, 184, 166, 0.85) 50%,
    rgba(20, 184, 166, 0.15) 92%,
    transparent 100%
  );
  opacity: 0;
}

.hero__scan-line.active::after {
  animation: heroScanLine 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroScanLine {
  0%   { top: 0;    opacity: 0; }
  4%   { opacity: 1; }
  96%  { opacity: 0.7; }
  100% { top: 100%; opacity: 0; }
}

.hero__screen-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.hero__screen-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__screen-url {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  margin-left: var(--space-3);
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 2px 10px;
}

.hero__dash {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 320px;
}

.hero__dash-sidebar {
  background: var(--surface-3);
  border-right: 1px solid var(--border);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero__dash-logo {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.08em;
}

.hero__dash-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.hero__dash-nav-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.hero__dash-nav-item.active {
  background: var(--teal-dim);
  color: var(--teal);
}

.hero__dash-main {
  padding: var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero__dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hero__dash-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.hero__dash-sub { font-size: 11px; color: var(--text-muted); }

.hero__dash-score {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.hero__dash-score-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero__dash-score-label { font-size: 13px; color: var(--text-muted); }

.hero__dash-platforms {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero__dash-platform {
  display: grid;
  grid-template-columns: 90px 1fr 36px;
  align-items: center;
  gap: var(--space-3);
}

.hero__dash-platform-name {
  font-size: 11px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dim);
}

.hero__dash-bar-wrap {
  height: 6px;
  background: var(--surface-3);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.hero__dash-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: var(--radius-full);
}

.hero__dash-pct {
  font-size: 11px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--teal);
  text-align: right;
}

.hero__dash-insight {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 11px;
  color: var(--text-dim);
  background: var(--teal-dim);
  border: 1px solid rgba(20,184,166,0.15);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  line-height: 1.5;
}

.hero__dash-insight svg { flex-shrink: 0; margin-top: 1px; }

/* ─── Hero logos bar ─────────────────────────────────────── */
.hero__logos {
  border-top: 1px solid var(--border);
  padding: var(--space-8) 0;
  /* opacity set by GSAP */
}

.hero__logos-label {
  font-size: var(--text-xs);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--space-6);
}

.hero__logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.hero__logo-placeholder {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.5;
  padding: var(--space-2) var(--space-4);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
}

/* Hide dashboard sidebar on mobile */
@media (max-width: 640px) {
  .hero__dash { grid-template-columns: 1fr; }
  .hero__dash-sidebar { display: none; }
}

.hero__ambient {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at center,
    rgba(20,184,166,0.07) 0%,
    rgba(201,168,124,0.03) 40%,
    transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-8);
  opacity: 0;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Services supplemental ─────────────────────────────── */
.services { padding: var(--section) 0; }

.services__ticker-wrap {
  margin: 0 calc(-1 * var(--gutter));
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) 0;
  margin-bottom: var(--space-16);
  background: var(--surface-3);
}

.services__ticker {
  display: flex;
  animation: ticker-scroll 32s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.services__ticker span {
  display: inline-flex;
  align-items: center;
  padding: 4px var(--space-6);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dim);
}

.ticker-dot {
  color: var(--teal) !important;
  opacity: 0.5;
  padding: 0 var(--space-2) !important;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

@media (max-width: 640px) { .services__grid { grid-template-columns: 1fr; } }

.service-card__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-dim);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  margin-bottom: var(--space-4);
}

.service-card__desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  flex: 1;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.service-card__features li {
  font-size: var(--text-xs);
  color: var(--text-dim);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.service-card__features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* ─── Why Us supplemental ───────────────────────────────── */
.why-us {
  padding: var(--section) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-3);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.why-card__number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--border-light);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-6);
}

.why-card__title { margin-bottom: var(--space-4); }
.why-card__text { font-size: var(--text-sm); line-height: 1.7; }

/* ─── Social Proof supplemental ─────────────────────────── */
.proof { padding: var(--section) 0; }

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

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

.proof-card__placeholder-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  margin-bottom: var(--space-6);
}

.proof-card__metric {
  margin-bottom: var(--space-4);
}

.proof-card__number {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}

.proof-card__label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--space-1);
  display: block;
}

.proof-card__quote {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.7;
  border-left: 2px solid var(--teal);
  padding-left: var(--space-4);
  margin-bottom: var(--space-6);
  flex: 1;
}

.proof-card__client {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.proof-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid rgba(20,184,166,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}

.proof-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}

.proof-card__location {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ─── GEO Checker supplemental ──────────────────────────── */
.geo-section__header {
  max-width: 680px;
  margin: 0 auto var(--space-16);
  text-align: center;
}

.geo-checker__tabs {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-4);
}

.geo-tab {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  padding: 6px 14px;
  cursor: pointer;
  transition: all var(--fast) var(--ease);
}

.geo-tab:hover { color: var(--text); border-color: var(--border-light); }

.geo-tab.active {
  color: var(--teal);
  border-color: rgba(20,184,166,0.3);
  background: var(--teal-dim);
}

.geo-tab__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.geo-checker__form { margin-bottom: var(--space-8); }

.geo-checker__label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--space-3);
}

.geo-checker__inputs {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.geo-input {
  flex: 1;
  min-width: 180px;
  background: var(--surface-3);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-size: var(--text-sm);
  transition: border-color var(--fast) var(--ease);
}

.geo-input::placeholder { color: var(--text-muted); }
.geo-input:focus { border-color: var(--teal); outline: none; box-shadow: 0 0 0 3px rgba(20,184,166,0.1); }
.geo-input.error { border-color: var(--red); }

.geo-checker__results {
  min-height: 100px;
  border-radius: var(--radius);
  overflow: hidden;
}

.geo-checker__disclaimer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-6);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.geo-checker__disclaimer a { color: var(--teal); text-decoration: underline; }

.geo-results-placeholder {
  text-align: center;
  padding: var(--space-10);
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.geo-results-placeholder__icon { margin-bottom: var(--space-4); display: block; }

.geo-results-loading {
  text-align: center;
  padding: var(--space-10);
  color: var(--text-dim);
  font-size: var(--text-sm);
}

.geo-loading-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.geo-loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: loading-pulse 1.2s ease-in-out infinite;
}
.geo-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.geo-loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loading-pulse {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

.geo-results-summary {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.geo-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--border);
}

.geo-results-platform {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
}

.geo-platform-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.geo-platform-dot--chatgpt { background: #10A37F; }
.geo-platform-dot--perplexity { background: #5639CC; }
.geo-platform-dot--gemini { background: #4285F4; }
.geo-platform-dot--google-ai { background: #EA4335; }

.geo-results-query {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-style: italic;
}

.geo-results-status {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
}

.geo-results-status__icon { flex-shrink: 0; margin-top: 2px; }

.geo-results-status__label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.geo-results-status__desc {
  font-size: var(--text-sm);
  color: var(--text-dim);
  line-height: 1.6;
}

.geo-results-cta {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.geo-results-cta p { font-size: var(--text-sm); margin: 0; }

/* ─── Pricing supplemental ───────────────────────────────── */
.pricing {
  padding: var(--section) 0;
  border-top: 1px solid var(--border);
  background: var(--surface-3);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

@media (max-width: 1024px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pricing__grid { grid-template-columns: 1fr; } }

.pricing-card__header { margin-bottom: var(--space-4); }

.pricing-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--teal);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  padding: 3px 10px;
  margin-bottom: var(--space-3);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-dim);
  line-height: 1.5;
}

.pricing-card__features li svg { flex-shrink: 0; margin-top: 1px; }

/* ─── Enterprise Card supplemental ──────────────────────── */
.enterprise-card__content { flex: 1; }

.enterprise-card__cta {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.enterprise-card__title {
  font-size: clamp(20px, 2vw, 28px);
  margin-bottom: var(--space-3);
}

.enterprise-card__desc {
  font-size: var(--text-sm);
  max-width: 520px;
  margin-bottom: var(--space-4);
}

.enterprise-card__range {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
}

@media (max-width: 860px) { .enterprise-card__cta { flex-direction: row; } }

/* ─── FAQ supplemental ───────────────────────────────────── */
.faq { padding: var(--section) 0; }
.faq__grid { max-width: 800px; }

.faq__list {
  border-top: 1px solid var(--border);
}

/* Re-map faq-question as the button (trigger) */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  cursor: pointer;
  background: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--fast) var(--ease);
}
.faq-question:hover { color: var(--white); }

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  font-size: var(--text-sm);
  line-height: 1.75;
  padding-bottom: var(--space-6);
  color: var(--text-dim);
}

.faq-item.open .faq-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--bg);
  rotate: 180deg;
}

/* ─── Contact supplemental ───────────────────────────────── */
.contact { padding: var(--section) 0; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: start;
}

@media (max-width: 860px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__info { position: static; }
}

.contact__info { position: sticky; top: 80px; }

.contact__form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.contact-detail__value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}

.contact-form__success {
  text-align: center;
  padding: var(--space-12) var(--space-8);
}

.contact-form__success h3 {
  font-size: var(--h3);
  margin: var(--space-4) 0 var(--space-3);
  color: var(--white);
}

.contact-form__success p {
  font-size: var(--text-sm);
  color: var(--text-dim);
}

.form-input.error { border-color: var(--red); }

/* ─── Mid-CTA supplemental ───────────────────────────────── */
.mid-cta {
  padding: var(--space-16) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mid-cta__inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-12);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.mid-cta__inner::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  width: 400px;
  height: 240px;
  background: radial-gradient(ellipse at center, var(--teal-dim), transparent 70%);
  pointer-events: none;
}

.mid-cta__label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-4);
}

.mid-cta__headline {
  font-size: clamp(26px, 3.5vw, 48px);
  margin-bottom: var(--space-8);
}

/* ─── Footer supplemental ────────────────────────────────── */
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-8);
}

@media (max-width: 1024px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-10); } }
@media (max-width: 640px) { .footer__inner { grid-template-columns: 1fr; } }

.footer__logo { margin-bottom: var(--space-4); }

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 280px;
  margin-top: var(--space-4);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--fast) var(--ease);
}

.footer__social-link:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--space-5);
}

.footer__col-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__legal-links {
  display: flex;
  gap: var(--space-6);
}

.footer__legal-links a {
  font-size: var(--text-xs);
  color: var(--text-muted);
  transition: color var(--fast) var(--ease);
}

.footer__legal-links a:hover { color: var(--teal); }

.footer__legal {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ─── Stat bar divider ───────────────────────────────────── */
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  flex-shrink: 0;
}

@media (max-width: 640px) { .stat-divider { display: none; } }

/* ─── Reduced motion supplemental ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .services__ticker { animation: none; }
  .reveal-word .reveal-word-inner { transform: none; }
  .hero__sub, .hero__cta, .hero__trust { opacity: 1; }
  .hero__badge, .hero__screen, .hero__logos { opacity: 1; }
  .hero__dash-bar { width: attr(style width) !important; }
  .hero__badge-dot { animation: none; }
  .nb-placeholder { opacity: 1; }
}
