/* Voco Landing — monochrome, brand-aligned.
 * Source of truth: reference/BRAND_KIT.md
 * Rule: one accent per screen. Signal blue for actions. Live green for Sarah states.
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --ink:   #1A1A1A;
  --slate: #6B6B6B;
  --line:  #E5E5E5;
  --line-soft: #EFEFEF;
  --surface: #FAFAFA;
  --signal: #3B82F6;
  --signal-ink: #2563EB;
  --live:   #10B981;
  --warn:   #F59E0B;
  --alert:  #EF4444;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-lift: 0 4px 20px rgba(0,0,0,0.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #FFFFFF; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
/* Defensive SVG sizing — inline SVGs must declare their own size */
svg[width][height] { width: attr(width px); height: attr(height px); }
.nav__brand-mark svg, .footer__brand svg { width: 24px !important; height: 24px !important; }
.tick { width: 14px !important; height: 14px !important; flex-shrink: 0; }
.feature-item__icon svg, .comply-card__icon svg { width: 18px !important; height: 18px !important; }

/* ── Layout primitives ───────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section   { padding: 120px 0; }
.section--tight { padding: 80px 0; }
.section--alt { background: var(--surface); }
.divider { height: 1px; background: var(--line); }

/* ── Type helpers ────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--signal); margin-bottom: 20px;
}
.eyebrow--muted { color: var(--slate); }
.h-display {
  font-size: 72px; line-height: 1.05; letter-spacing: -0.025em; font-weight: 700;
  color: var(--black); margin: 0;
  text-wrap: balance;
}
.h2 {
  font-size: 44px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 700;
  color: var(--black); margin: 0 0 20px;
  text-wrap: balance;
}
.h3 {
  font-size: 22px; line-height: 1.3; letter-spacing: -0.012em; font-weight: 600;
  color: var(--black); margin: 0;
}
.lede {
  font-size: 19px; line-height: 1.55; color: var(--slate); font-weight: 400;
  margin: 0; max-width: 640px;
  text-wrap: pretty;
}
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 500; font-size: 15px;
  height: 44px; padding: 0 20px; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: all 150ms ease; white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn--primary {
  background: var(--black); color: var(--white);
}
.btn--primary:hover { background: #222; transform: translateY(-1px); }
.btn--signal {
  background: var(--signal); color: var(--white);
}
.btn--signal:hover { background: var(--signal-ink); transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: var(--black); border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--black); }
.btn--link {
  background: transparent; color: var(--black); height: auto; padding: 0;
  border: 0; font-weight: 500;
}
.btn--link:hover { color: var(--signal); }
.btn--lg { height: 52px; padding: 0 28px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }
.btn .chev { transition: transform 180ms ease; }
.btn:hover .chev { transform: translateX(3px); }

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; color: var(--black); }
.nav__brand-mark {
  width: 26px; height: 26px; display: inline-flex;
}
.nav__wordmark { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--black); }
.nav__links {
  display: flex; gap: 32px; list-style: none; margin: 0; padding: 0;
}
.nav__links a {
  color: var(--ink); font-size: 14px; font-weight: 500; text-decoration: none;
  transition: color 150ms;
}
.nav__links a:hover { color: var(--signal); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.nav__signin {
  color: var(--ink); font-size: 14px; font-weight: 500; text-decoration: none;
}
.nav__signin:hover { color: var(--signal); }

/* ── Hero ────────────────────────────────────────────── */
.hero { padding: 96px 0 112px; position: relative; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 88px; align-items: center;
}
.hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px; border-radius: var(--radius-pill);
  background: var(--white); border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 500; color: var(--ink);
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
}
.hero__chip-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--live); position: relative;
  display: inline-flex; align-items: center; justify-content: center;
}
.hero__chip-dot::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; background: var(--live); opacity: 0.25;
  animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { transform: scale(0.85); opacity: 0.25; }
  50% { transform: scale(1.5); opacity: 0; }
}
.hero h1 { margin: 0 0 24px; }
.hero__subhead { margin-bottom: 36px; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 18px 24px;
  font-size: 13.5px; color: var(--slate);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .tick {
  width: 14px; height: 14px; color: var(--live); flex-shrink: 0;
}

/* Hero right: call log mock */
.calllog {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lift);
  padding: 20px; display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.calllog__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; border-bottom: 1px solid var(--line-soft);
}
.calllog__title {
  font-size: 13px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.calllog__date { font-family: var(--font-mono); font-size: 11.5px; color: var(--slate); }
.calllog__list { display: flex; flex-direction: column; gap: 10px; }
.calllog__row {
  display: grid; grid-template-columns: 28px 1fr auto;
  gap: 12px; align-items: center;
  padding: 10px 8px; border-radius: var(--radius-sm);
  transition: background 150ms;
}
.calllog__row:hover { background: var(--surface); }
.calllog__avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: #EEF2F7; color: var(--ink); font-size: 11px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.01em;
}
.calllog__name { font-size: 13.5px; font-weight: 500; color: var(--ink); line-height: 1.2; }
.calllog__meta { font-size: 12px; color: var(--slate); margin-top: 2px; }
.calllog__meta .mono { font-size: 11.5px; }
.calllog__status {
  font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 8px; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 5px;
}
.calllog__status--booked { background: rgba(16,185,129,0.1); color: #047857; }
.calllog__status--voicemail { background: rgba(107,107,107,0.08); color: var(--slate); }
.calllog__status--callback { background: rgba(245,158,11,0.1); color: #B45309; }
.calllog__status .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.calllog__foot {
  padding-top: 14px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--slate);
}
.calllog__foot strong { color: var(--ink); font-weight: 600; }

/* ── Social proof strip ──────────────────────────────── */
.proof {
  padding: 40px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.proof__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 32px 56px;
}
.proof__label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--slate); font-weight: 500;
}
.proof__logo {
  font-size: 16px; font-weight: 600; color: #999;
  letter-spacing: -0.015em; white-space: nowrap;
  transition: color 150ms;
}
.proof__logo:hover { color: var(--ink); }

/* Pilot cohort variant — honest social proof for pre-pilot stage. */
.proof__inner--cohort {
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.proof__cohort-copy {
  display: flex; flex-direction: column; gap: 6px; align-items: center;
  max-width: 640px;
}
.proof__headline {
  font-size: 18px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.01em;
}
.proof__sub {
  font-size: 14px; color: var(--slate);
}
.proof__seats {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-top: 4px;
}
.proof__seat {
  font-size: 12px; font-weight: 500; color: var(--slate);
  padding: 6px 12px; border: 1px dashed var(--line);
  border-radius: 999px; letter-spacing: 0.01em;
  background: #fff;
}
.proof__cta {
  display: inline-block; margin-top: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  padding: 10px 18px; border: 1px solid var(--ink);
  border-radius: 8px; text-decoration: none;
  transition: background 150ms, color 150ms;
}
.proof__cta:hover { background: var(--ink); color: #fff; }

/* ── Metrics grid ────────────────────────────────────── */
.section-head { max-width: 720px; margin: 0 0 64px; }
.section-head--center { margin: 0 auto 72px; text-align: center; }

.metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--white);
}
.metric {
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.metric:last-child { border-right: 0; }
.metric__stat {
  font-size: 52px; font-weight: 700; letter-spacing: -0.025em;
  color: var(--black); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.metric__label { font-size: 14.5px; color: var(--slate); line-height: 1.5; max-width: 260px; }
.metric__source { font-family: var(--font-mono); font-size: 11.5px; color: var(--slate); margin-top: 6px; }

.quote-strip {
  margin-top: 48px; padding: 36px 40px;
  background: var(--surface); border-radius: var(--radius);
  font-size: 22px; font-weight: 500; color: var(--black); line-height: 1.4;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.quote-strip cite {
  display: block; margin-top: 14px;
  font-size: 13.5px; font-weight: 500; font-style: normal; color: var(--slate);
  letter-spacing: 0;
}

/* ── Feature split ───────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start;
}
.feature-list { display: flex; flex-direction: column; gap: 28px; }
.feature-item {
  display: grid; grid-template-columns: 36px 1fr; gap: 18px;
  padding-bottom: 28px; border-bottom: 1px solid var(--line-soft);
}
.feature-item:last-child { border-bottom: 0; padding-bottom: 0; }
.feature-item__icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.feature-item h3 { margin-bottom: 6px; font-size: 17px; font-weight: 600; }
.feature-item p { font-size: 14.5px; color: var(--slate); margin: 0; line-height: 1.55; }

/* Transcript card */
.transcript {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  overflow: hidden;
}
.transcript__head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface);
}
.transcript__caller { display: flex; align-items: center; gap: 12px; }
.transcript__caller-name { font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.transcript__caller-meta { font-size: 11.5px; color: var(--slate); margin-top: 2px; font-family: var(--font-mono); }
.transcript__timer { font-family: var(--font-mono); font-size: 12.5px; color: var(--slate); }
.transcript__timer .rec {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--alert); margin-right: 6px; vertical-align: 1px;
  animation: rec-pulse 1.2s ease-in-out infinite;
}
@keyframes rec-pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.transcript__body { padding: 22px; display: flex; flex-direction: column; gap: 14px; max-height: 440px; overflow: auto; }
.tline { display: flex; gap: 12px; align-items: flex-start; }
.tline__who {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--slate); width: 72px; flex-shrink: 0;
  padding-top: 2px; letter-spacing: 0.02em;
}
.tline__who--sarah { color: var(--signal); font-weight: 500; }
.tline__text {
  font-size: 14px; line-height: 1.55; color: var(--ink);
}
.tline__text .tag {
  display: inline-block; font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 2px 6px; border-radius: 4px;
  background: rgba(16,185,129,0.1); color: #047857;
  margin-left: 6px; vertical-align: 2px;
}
.transcript__foot {
  padding: 14px 22px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--slate); background: var(--surface);
}
.transcript__foot-left { display: flex; gap: 14px; align-items: center; }
.check-mini { display: inline-flex; align-items: center; gap: 5px; }

/* ── Steps ───────────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative;
}
.steps::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%;
  height: 1px; background: var(--line); z-index: 0;
}
.step { position: relative; z-index: 1; }
.step__num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 15px; font-weight: 500; color: var(--ink);
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}
.step h3 { margin-bottom: 8px; font-size: 18px; }
.step p { font-size: 14.5px; color: var(--slate); max-width: 300px; margin: 0; line-height: 1.55; }

/* ── Compliance grid ─────────────────────────────────── */
.comply {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.comply-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 28px 26px;
  display: flex; flex-direction: column; gap: 10px;
}
.comply-card__icon {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  background: rgba(16,185,129,0.08); color: #047857;
  margin-bottom: 8px;
}
.comply-card h3 { font-size: 16.5px; font-weight: 600; }
.comply-card p { font-size: 14px; color: var(--slate); margin: 0; line-height: 1.6; }

/* ── Pricing (hybrid model) ───────────────────────── */
.plans {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin: 48px 0 28px;
}
.plan {
  position: relative;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 28px 22px;
  display: flex; flex-direction: column; gap: 16px;
}
.plan--featured { border-color: var(--black); box-shadow: 0 8px 28px rgba(0,0,0,0.05); }
.plan__tag {
  position: absolute; top: -11px; left: 22px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 10px; border-radius: 999px;
  background: var(--black); color: var(--white); white-space: nowrap;
}
.plan__name { font-size: 13px; font-weight: 600; color: var(--ink); text-transform: uppercase; letter-spacing: 0.08em; }
.plan__amount { display: flex; align-items: baseline; gap: 6px; margin-top: -8px; }
.plan__price { font-size: 44px; font-weight: 700; letter-spacing: -0.025em; color: var(--black); line-height: 1; }
.plan__unit { font-size: 14px; color: var(--slate); }
.plan__sub { font-size: 13.5px; color: var(--slate); margin: 0; line-height: 1.5; min-height: 60px; }
.plan__meter {
  background: var(--surface); border-radius: 10px; padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.plan__meter-row {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 12.5px;
}
.plan__meter-row span { color: var(--slate); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.plan__meter-row strong { color: var(--ink); font-weight: 500; font-size: 13.5px; }
.plan__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
.plan__list li {
  font-size: 13.5px; color: var(--ink); padding-left: 18px; position: relative; line-height: 1.5;
}
.plan__list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(16,185,129,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5L6.5 11.5L12.5 5' stroke='%2310B981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}

.enterprise {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--black); color: var(--white);
  border-radius: 16px; padding: 28px 32px; margin-bottom: 56px;
}
.enterprise__text { max-width: 640px; }
.enterprise__text .eyebrow { color: rgba(255,255,255,0.6); }
.enterprise__title { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin: 6px 0 8px; }
.enterprise__sub { font-size: 14.5px; color: rgba(255,255,255,0.75); margin: 0; line-height: 1.55; }
.btn--dark { background: var(--white); color: var(--black); border: 1px solid var(--white); padding: 10px 18px; border-radius: 999px; font-weight: 500; text-decoration: none; white-space: nowrap; }
.btn--dark:hover { background: transparent; color: var(--white); }

.outcomes { border-top: 1px solid var(--line); padding-top: 56px; }
.outcomes__head { max-width: 680px; margin: 0 auto 32px; text-align: center; }
.outcomes__title { font-size: 30px; font-weight: 600; letter-spacing: -0.015em; color: var(--black); margin: 8px 0 10px; }
.outcomes__sub { font-size: 15px; color: var(--slate); margin: 0; line-height: 1.6; }
.outcomes__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-bottom: 28px;
}
.outcome {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px; display: flex; flex-direction: column; gap: 6px;
}
.outcome__price { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: var(--black); line-height: 1; }
.outcome__label { font-size: 14.5px; font-weight: 600; color: var(--ink); margin-top: 4px; }
.outcome__detail { font-size: 13.5px; color: var(--slate); line-height: 1.5; }
.outcomes__foot {
  font-size: 13.5px; color: var(--slate); text-align: center; max-width: 720px; margin: 8px auto 0; line-height: 1.6;
}
.outcomes__foot strong { color: var(--ink); font-weight: 600; }

@media (max-width: 1100px) {
  .plans { grid-template-columns: repeat(2, 1fr); }
  .outcomes__grid { grid-template-columns: repeat(2, 1fr); }
  .enterprise { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .plans { grid-template-columns: 1fr; }
  .outcomes__grid { grid-template-columns: 1fr; }
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line); padding: 22px 0;
}
.faq-item summary {
  font-size: 17px; font-weight: 600; color: var(--black);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: 400; color: var(--slate);
  transition: transform 200ms;
}
.faq-item[open] summary::after { content: '−'; color: var(--black); }
.faq-item p {
  font-size: 15px; color: var(--slate); margin: 14px 0 0;
  line-height: 1.65; max-width: 640px;
}

/* ── Final CTA ───────────────────────────────────────── */
.final-cta {
  background: var(--black); color: var(--white);
  padding: 120px 0; text-align: center; border-radius: 0;
}
.final-cta h2 { color: var(--white); font-size: 56px; margin-bottom: 20px; letter-spacing: -0.025em; }
.final-cta p { color: rgba(255,255,255,0.7); font-size: 18px; margin: 0 auto 40px; max-width: 560px; }
.final-cta .btn--signal { background: var(--white); color: var(--black); }
.final-cta .btn--signal:hover { background: var(--surface); }
.final-cta__meta { margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── Footer ──────────────────────────────────────────── */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.footer__top {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px;
  margin-bottom: 48px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__tag { font-size: 14px; color: var(--slate); max-width: 280px; line-height: 1.55; }
.footer__col h4 {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink); margin: 0 0 14px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 14px; color: var(--slate); text-decoration: none; transition: color 150ms;
}
.footer__col a:hover { color: var(--ink); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--line-soft);
  font-size: 13px; color: var(--slate);
  gap: 16px; flex-wrap: wrap;
}

/* ── Utility ─────────────────────────────────────────── */
.stack-lg { display: flex; flex-direction: column; gap: 48px; }
.stack-md { display: flex; flex-direction: column; gap: 24px; }
.row { display: flex; align-items: center; gap: 12px; }

@media (max-width: 960px) {
  .section { padding: 88px 0; }
  .hero { padding: 72px 0 88px; }
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .h-display { font-size: 48px; }
  .h2 { font-size: 34px; }
  .final-cta h2 { font-size: 40px; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .metrics { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .comply { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
}

/* ── Qualifier (calculator + exit-intent) ────────────────── */
.qual {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; padding: 32px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.qual__form { display: grid; gap: 18px; }
.qual__field { display: grid; gap: 6px; }
.qual__label {
  font-size: 12px; font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.qual__field select {
  height: 44px; padding: 0 14px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--white);
  font: inherit; color: var(--black); font-size: 15px;
  cursor: pointer; transition: border-color 150ms ease;
}
.qual__field select:focus {
  outline: 0; border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.qual__actions { display: grid; gap: 10px; justify-items: center; margin-top: 4px; }
.qual__error {
  color: #b42318; font-size: 13px; padding: 8px 12px;
  background: #fef3f2; border-radius: 8px;
}
.qual__result {
  background: var(--surface); border-radius: 14px;
  padding: 28px; display: flex; flex-direction: column; justify-content: center;
}
.qual__result-empty .qual__hint {
  color: var(--slate); font-size: 14px; margin-top: 8px; line-height: 1.55;
}
.qual__big {
  font-family: var(--font-display, var(--font-sans));
  font-size: 56px; line-height: 1.05; font-weight: 700;
  letter-spacing: -0.025em; color: var(--black); margin: 6px 0 8px;
}
.qual__sub { color: var(--slate); font-size: 15px; line-height: 1.55; margin-bottom: 16px; }
.qual__cta { margin-top: auto; display: grid; gap: 10px; }
.qual__fineprint { color: var(--slate); font-size: 12px; text-align: center; }

@media (max-width: 820px) {
  .qual { grid-template-columns: 1fr; padding: 22px; }
  .qual__big { font-size: 44px; }
}

/* ── Exit-intent modal ──────────────────────────────────── */
.exitmodal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.exitmodal__backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 12, 24, 0.55);
  backdrop-filter: blur(2px);
}
.exitmodal__card {
  position: relative; max-width: 460px; width: 100%;
  background: var(--white); border-radius: 18px; padding: 28px 28px 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  animation: exitmodal-in 180ms ease;
}
@keyframes exitmodal-in {
  from { transform: translateY(8px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.exitmodal__close {
  position: absolute; top: 8px; right: 12px; width: 32px; height: 32px;
  border: 0; background: transparent; cursor: pointer;
  font-size: 24px; color: var(--slate); line-height: 1;
}
.exitmodal__close:hover { color: var(--black); }
.exitmodal__title {
  font-size: 20px; font-weight: 600; line-height: 1.3;
  margin: 6px 0 18px; letter-spacing: -0.01em;
}
.exitmodal__choices { display: grid; gap: 8px; }
.exitmodal__choices button {
  text-align: left; padding: 12px 14px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--line);
  font: inherit; font-size: 14px; cursor: pointer;
  transition: all 120ms ease;
}
.exitmodal__choices button:hover {
  background: var(--black); color: var(--white); border-color: var(--black);
}
.exitmodal__thanks { padding: 12px 0; }
