/* =========================================================
   DISPATCH — operations command center for the trades
   Design tokens → base → components → sections → responsive
   ========================================================= */

:root {
  /* — ink / dark surfaces — */
  --ink:        #0B0E14;
  --ink-elev:   #11161F;
  --ink-card:   #141A24;
  --ink-card-2: #19212E;
  --line:       rgba(255,255,255,.09);
  --line-2:     rgba(255,255,255,.16);

  /* — paper / light surfaces — */
  --paper:      #F4F5F2;
  --paper-2:    #ECEEE8;
  --paper-card: #FFFFFF;
  --paper-line: #E2E4DD;

  /* — signature accent (signal amber) — */
  --signal:        #FFB020;
  --signal-bright: #FFC857;
  --signal-deep:   #E08A00;
  --signal-soft:   rgba(255,176,32,.14);

  /* — functional status (console only) — */
  --ok:   #3DDC97;
  --new:  #5AA9FF;

  /* — text on dark — */
  --tx-hi:  #EEF1F6;
  --tx-mid: #A7B0BE;
  --tx-dim: #6B7585;

  /* — text on paper — */
  --tx-ink:  #0B0E14;
  --tx-slate:#525C6A;

  /* — type — */
  --f-display: 'Archivo', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* — radius — */
  --r-sm: 9px;
  --r:    14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* — motion — */
  --t: 200ms cubic-bezier(.2,.7,.2,1);
  --t-slow: 420ms cubic-bezier(.2,.7,.2,1);

  /* — layout — */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
}

/* ---------------- reset / base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--f-body);
  background: var(--ink);
  color: var(--tx-hi);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--signal); color: #1a1304; font-weight: 600;
  padding: 10px 16px; border-radius: var(--r-sm);
  transition: top var(--t);
}
.skip-link:focus { top: 12px; }

/* ---------------- typography helpers ---------------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tx-mid);
  display: inline-flex; align-items: center; gap: .6em;
  margin-bottom: 22px;
}
.eyebrow--amber { color: var(--signal); }
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px var(--signal-soft);
}
.hl { color: var(--signal); }

.section-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.3vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -.025em;
  color: var(--tx-hi);
}
.section-sub {
  color: var(--tx-mid);
  font-size: 1.08rem;
  max-width: 56ch;
  margin-top: 20px;
}
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }

/* ---------------- buttons ---------------- */
.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.01em;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: transform var(--t), background var(--t), box-shadow var(--t), border-color var(--t), color var(--t);
  white-space: nowrap;
}
.btn--sm { padding: 9px 16px; font-size: .92rem; }
.btn--lg { padding: 16px 28px; font-size: 1.06rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--signal);
  color: #1c1404;
  box-shadow: 0 6px 22px rgba(255,176,32,.28), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--primary:hover {
  background: var(--signal-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,176,32,.4), inset 0 1px 0 rgba(255,255,255,.45);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255,255,255,.03);
  color: var(--tx-hi);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.32); transform: translateY(-2px); }

/* Phone CTAs: a tap-to-call button on mobile (where tapping actually dials),
   but a plain, non-clickable number readout on desktop (where it can't). */
@media (min-width: 821px) {
  .btn--call {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: var(--signal);
    padding-inline: 2px;
    pointer-events: none;   /* not pressable on a computer */
    cursor: default;
  }
  .btn--call:hover { background: transparent; box-shadow: none; transform: none; }
  .btn--call svg { color: var(--signal); }
  .btn--lg.btn--call { font-size: 1.45rem; letter-spacing: -.01em; }
}

/* ---------------- announcement bar ---------------- */
.header-stack { position: sticky; top: 0; z-index: 100; }
.topbar {
  background: var(--signal);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), inset 0 -1px 0 rgba(0,0,0,.16);
}
.topbar__inner { display: flex; align-items: center; justify-content: center; min-height: 44px; padding-block: 9px; }
.topbar__text { display: inline-flex; align-items: center; gap: 9px; margin: 0; font-size: .92rem; font-weight: 600; letter-spacing: .01em; color: #1c1404; text-align: center; }
.topbar__icon { color: #1c1404; flex-shrink: 0; }
.topbar__hl { color: #1c1404; font-weight: 800; }
@media (max-width: 480px) { .topbar__text { font-size: .82rem; } }

/* ---------------- nav ---------------- */
.nav {
  position: relative; z-index: 2;
  background: rgba(11,14,20,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.nav.is-stuck { border-bottom-color: var(--line); background: rgba(11,14,20,.86); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-display); font-weight: 800; font-size: 1.32rem; letter-spacing: -.02em; color: var(--tx-hi); }
.brand__mark { color: var(--signal); display: grid; place-items: center; }
.brand__word { line-height: 1; }

.nav__links { display: flex; gap: 32px; }
.nav__links a { color: var(--tx-mid); font-size: .96rem; font-weight: 500; transition: color var(--t); position: relative; }
.nav__links a:hover { color: var(--tx-hi); }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: var(--r-sm); background: rgba(255,255,255,.03); flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.nav__toggle span { width: 18px; height: 2px; background: var(--tx-hi); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__mobile { display: none; flex-direction: column; gap: 6px; padding: 14px var(--gutter) 22px; border-bottom: 1px solid var(--line); background: var(--ink-elev); }
.nav__mobile a { padding: 12px 4px; color: var(--tx-mid); font-weight: 500; border-bottom: 1px solid var(--line); }
.nav__mobile a:last-child { border: none; margin-top: 8px; color: #1c1404; }

/* ---------------- hero ---------------- */
.hero { position: relative; padding-top: clamp(56px, 8vw, 104px); overflow: hidden; }
.hero__grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(255,176,32,.13), transparent 55%),
    radial-gradient(90% 70% at 10% 0%, rgba(90,169,255,.07), transparent 50%),
    linear-gradient(transparent 0 31px, var(--line) 31px 32px),
    linear-gradient(90deg, transparent 0 31px, var(--line) 31px 32px);
  background-size: 100% 100%, 100% 100%, 32px 32px, 32px 32px;
  -webkit-mask-image: radial-gradient(120% 80% at 60% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 80% at 60% 0%, #000 30%, transparent 78%);
  opacity: .6;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(28px, 5vw, 56px) clamp(40px, 6vw, 80px);
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.7rem, 5.8vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.035em;
  color: #fff;
}
.hero__lead { color: var(--tx-mid); font-size: clamp(1.08rem, 1.5vw, 1.28rem); max-width: 46ch; margin-top: 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__micro { display: flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--tx-dim); font-family: var(--f-mono); font-size: .84rem; letter-spacing: .02em; }
.hero__micro svg { color: var(--signal); }
.hero__demoline { display: flex; align-items: center; gap: 11px; flex-wrap: wrap; margin-top: 20px; color: var(--tx-hi); font-size: 1rem; }
.hero__demoflag { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ok); border: 1px solid rgba(61,220,151,.4); background: rgba(61,220,151,.08); border-radius: var(--r-pill); padding: 4px 11px; white-space: nowrap; }

/* — signature: live dispatch board — */
.hero__board { position: relative; }
.hero__board-glow {
  position: absolute; inset: 8% -6% -14% 6%; z-index: 0;
  background: radial-gradient(60% 60% at 70% 30%, rgba(255,176,32,.22), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.livedot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(61,220,151,.55); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(61,220,151,.5);} 70%{box-shadow:0 0 0 7px rgba(61,220,151,0);} 100%{box-shadow:0 0 0 0 rgba(61,220,151,0);} }

/* the demo: a real lead → answered → texted back → booked */
.demo { position: relative; }

.phone {
  position: relative; z-index: 1; width: min(370px, 100%); margin-inline: auto;
  background: linear-gradient(180deg, var(--ink-card-2), var(--ink-card));
  border: 1px solid var(--line-2); border-radius: 38px;
  box-shadow: 0 44px 100px -34px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.06);
  padding: 12px 12px 16px;
}
.phone__notch { width: 116px; height: 6px; border-radius: 999px; background: rgba(255,255,255,.14); margin: 6px auto 12px; }

/* in-call header — caller, live badge, running call timer */
.call__bar { display: flex; align-items: center; justify-content: space-between; padding: 2px 6px 12px; border-bottom: 1px solid var(--line); }
.call__live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-mono); font-size: .67rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ok); }
.call__timer { font-family: var(--f-mono); font-size: .82rem; font-variant-numeric: tabular-nums; color: var(--tx-mid); }
.call__id { display: flex; align-items: center; gap: 12px; padding: 15px 6px 2px; }
.call__ava { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  background: var(--signal-soft); border: 1px solid rgba(255,176,32,.32); color: var(--signal); }
.call__who { display: flex; flex-direction: column; line-height: 1.25; }
.phone__name { font-family: var(--f-display); font-weight: 700; font-size: 1.06rem; color: var(--tx-hi); }
.call__sub { font-size: .8rem; color: var(--tx-mid); margin-top: 3px; }

/* live audio waveform — the call is on the line */
.eq { display: flex; align-items: center; justify-content: space-between; height: 40px; padding: 16px 8px 4px; }
.eq i { width: 3px; height: 100%; border-radius: 2px; transform-origin: center;
  background: linear-gradient(180deg, var(--signal-bright), var(--signal-deep));
  transform: scaleY(.4); animation: eq 1.15s ease-in-out infinite; animation-delay: calc(var(--i) * -.07s); }
@keyframes eq { 0%, 100% { transform: scaleY(.32); } 50% { transform: scaleY(1); } }

/* live transcript of the spoken call (not a chat thread) */
.transcript { display: flex; flex-direction: column; gap: 12px; padding: 14px 6px 8px; }
.say { padding-left: 13px; border-left: 2px solid var(--line-2); }
.say__who { display: block; font-family: var(--f-mono); font-size: .62rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--tx-dim); margin-bottom: 4px; }
.say__txt { font-size: .92rem; line-height: 1.45; color: var(--tx-mid); }
.say--out { border-left-color: var(--signal); }
.say--out .say__who { color: var(--signal); }
.say--out .say__txt { color: var(--tx-hi); }

.booked { margin: 12px 8px 4px; display: flex; align-items: center; gap: 13px; padding: 14px; border-radius: 15px;
  background: rgba(61,220,151,.09); border: 1px solid rgba(61,220,151,.32); }
.booked__ico { width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0; display: grid; place-items: center; background: rgba(61,220,151,.16); color: var(--ok); }
.booked__t { display: block; font-family: var(--f-display); font-weight: 700; font-size: .98rem; color: var(--tx-hi); }
.booked__s { display: block; font-size: .82rem; color: var(--tx-mid); margin-top: 2px; }

/* call controls (decorative) — sells "this is a phone call", not a text thread */
.callctl { display: flex; align-items: center; justify-content: space-between; gap: 10px; max-width: 252px; margin: 16px auto 4px; padding: 6px 2px 2px; }
.callctl__b { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-2); color: var(--tx-mid); }
.callctl__b--end { background: #ec4242; border-color: #ec4242; color: #fff; box-shadow: 0 12px 26px -10px rgba(236,66,66,.7); }
.callctl__b--end svg { transform: rotate(134deg); }

/* floating reply-speed chip bottom-right */
.speedchip {
  display: flex; width: fit-content; margin: 18px auto 0;
  align-items: center; gap: 8px; padding: 10px 16px;
  background: var(--signal); color: #1c1404; border-radius: var(--r-pill);
  font-family: var(--f-display); font-weight: 700; font-size: .9rem;
  box-shadow: 0 18px 40px -16px rgba(255,176,32,.6);
}

/* — trade marquee (infinite rolling strip) — */
.trustbar { position: relative; z-index: 1; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.015); }
.trustbar__inner { display: flex; align-items: center; gap: clamp(16px, 3vw, 32px); padding-block: 18px; }
.trustbar__label { flex-shrink: 0; font-family: var(--f-mono); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--tx-dim); white-space: nowrap; }
.marquee {
  flex: 1; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 90%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 90%, transparent 100%);
}
.marquee__row { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee__row { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); padding-right: clamp(22px, 3vw, 42px); margin: 0; }
.marquee__group li { font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; color: var(--tx-mid); white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- section rhythm ---------------- */
.problem, .what, .how, .results, .offer, .faq, .claim { padding-block: clamp(72px, 10vw, 132px); }

.section--light { background: var(--paper); color: var(--tx-ink); }
.section--light .section-title { color: var(--tx-ink); }
.section--light .section-sub { color: var(--tx-slate); }
.section--light-alt { background: var(--paper-2); }

/* ---------------- problem ---------------- */
.statcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.statcard {
  background: var(--ink-card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px; transition: border-color var(--t), transform var(--t);
}
.statcard:hover { border-color: rgba(255,176,32,.35); transform: translateY(-3px); }
.statcard__n { display: block; font-family: var(--f-display); font-weight: 800; font-size: 2.5rem; letter-spacing: -.03em; color: var(--signal); line-height: 1; }
.statcard__l { display: block; color: var(--tx-mid); margin-top: 14px; font-size: .98rem; }

/* ---------------- what you get (cards) ---------------- */
.cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.cards--three { grid-template-columns: repeat(3,1fr); }
.card {
  position: relative;
  background: linear-gradient(180deg, var(--ink-card-2), var(--ink-card));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.card:hover { border-color: var(--line-2); transform: translateY(-4px); box-shadow: 0 24px 50px -24px rgba(0,0,0,.7); }
.card--feature { border-color: rgba(255,176,32,.28); background: linear-gradient(180deg, rgba(255,176,32,.06), var(--ink-card)); }
.card__icon { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--signal-soft); color: var(--signal); border: 1px solid rgba(255,176,32,.25); margin-bottom: 22px; }
.card__title { font-family: var(--f-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.02em; color: var(--tx-hi); }
.card__text { color: var(--tx-mid); margin-top: 12px; font-size: 1rem; }
.card__status { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--tx-dim); }
.card__status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }
.card__flag { display: inline-flex; align-items: center; font-family: var(--f-mono); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #1c1404; background: var(--signal); padding: 4px 10px; border-radius: var(--r-pill); }

/* free website bonus banner */
.bonus { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-top: 28px; padding: 30px 32px; border-radius: var(--r-lg); border: 1px solid rgba(255,176,32,.32); background: linear-gradient(180deg, rgba(255,176,32,.08), rgba(255,176,32,.02)); }
.bonus__left { flex: 1 1 320px; }
.bonus__title { font-family: var(--f-display); font-weight: 800; font-size: 1.55rem; letter-spacing: -.02em; color: var(--tx-hi); margin-top: 14px; }
.bonus__text { color: var(--tx-mid); margin-top: 8px; font-size: 1rem; max-width: 52ch; }

.what__also { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 40px; color: var(--tx-mid); font-size: 1rem; text-align: center; }
.what__also-tag { font-family: var(--f-mono); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--tx-dim); border: 1px solid var(--line-2); border-radius: var(--r-pill); padding: 5px 12px; }

/* ---------------- how it works (steps) ---------------- */
.steps { display: grid; grid-template-columns: repeat(2,1fr); gap: 4px 48px; max-width: 960px; margin-inline: auto; }
.steps--three { grid-template-columns: 1fr; max-width: 680px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 28px 0; border-bottom: 1px solid var(--paper-line); align-items: start; }
.step__num { font-family: var(--f-mono); font-weight: 600; font-size: 1rem; color: var(--signal-deep); padding-top: 4px; }
.step__title { font-family: var(--f-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.02em; color: var(--tx-ink); }
.step__text { color: var(--tx-slate); margin-top: 8px; font-size: 1rem; }
.step__tel { color: var(--signal-deep); font-weight: 600; border-bottom: 1px solid rgba(224,138,0,.45); white-space: nowrap; }
.step__tel:hover { color: #b86f00; border-color: #b86f00; }

/* ---------------- results ---------------- */
.beforeafter { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 920px; margin: 0 auto 56px; }
.ba { border-radius: var(--r-lg); padding: 30px; border: 1px solid var(--paper-line); background: var(--paper-card); }
.ba__tag { font-family: var(--f-mono); font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; display: inline-block; margin-bottom: 18px; padding: 5px 12px; border-radius: var(--r-pill); }
.ba--before { background: #fbf6f3; }
.ba--before .ba__tag { color: #9a4a2f; background: #f3e0d8; }
.ba--after { border-color: rgba(224,138,0,.4); box-shadow: 0 20px 50px -28px rgba(224,138,0,.5); }
.ba--after .ba__tag { color: #1c1404; background: var(--signal); }
.ba__list li { position: relative; padding: 9px 0 9px 30px; color: var(--tx-slate); border-bottom: 1px solid var(--paper-line); font-size: 1rem; }
.ba__list li:last-child { border-bottom: 0; }
.ba--before .ba__list li::before { content:"✕"; position: absolute; left: 4px; color: #c1735a; font-weight: 700; }
.ba--after .ba__list li { color: var(--tx-ink); }
.ba--after .ba__list li::before { content:"✓"; position: absolute; left: 2px; color: var(--signal-deep); font-weight: 700; }

.metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 56px; }
.metric { text-align: center; padding: 26px 12px; background: var(--paper-card); border: 1px solid var(--paper-line); border-radius: var(--r); }
.metric__n { display: block; font-family: var(--f-display); font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.8rem); letter-spacing: -.03em; color: var(--tx-ink); line-height: 1; font-variant-numeric: tabular-nums; }
.metric__l { display: block; color: var(--tx-slate); margin-top: 12px; font-size: .92rem; }

.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.quote { background: var(--paper-card); border: 1px solid var(--paper-line); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; gap: 22px; }
.quote blockquote { font-size: 1.04rem; line-height: 1.55; color: var(--tx-ink); }
.quote figcaption { display: flex; flex-direction: column; gap: 2px; }
.quote figcaption strong { font-family: var(--f-display); font-weight: 700; color: var(--tx-ink); }
.quote figcaption span { font-family: var(--f-mono); font-size: .8rem; color: var(--tx-slate); }

/* ---------------- offer ---------------- */
.offer { position: relative; text-align: center; overflow: hidden; }
.offer::before { content:""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(255,176,32,.12), transparent 60%); pointer-events: none; }
.offer__inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.offer__title { font-family: var(--f-display); font-weight: 800; font-size: clamp(2rem, 4.6vw, 3.5rem); line-height: 1.05; letter-spacing: -.03em; color: #fff; margin-bottom: 38px; }

/* ---------------- faq ---------------- */
.faq__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq__list { display: flex; flex-direction: column; }
.qa { border-bottom: 1px solid var(--paper-line); }
.qa summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative; font-family: var(--f-display); font-weight: 600; font-size: 1.12rem; letter-spacing: -.01em; color: var(--tx-ink); transition: color var(--t); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--signal-deep); }
.qa summary::after { content:""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px; transform: translateY(-50%); background: no-repeat center/contain; transition: transform var(--t); }
.qa summary::before { content:"+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--f-mono); font-size: 1.5rem; font-weight: 400; color: var(--signal-deep); transition: transform var(--t); }
.qa[open] summary::before { transform: translateY(-50%) rotate(45deg); }
.qa p { padding: 0 44px 24px 0; color: var(--tx-slate); font-size: 1rem; max-width: 60ch; }
.qa p a { color: var(--signal-deep); font-weight: 600; border-bottom: 1px solid rgba(224,138,0,.45); white-space: nowrap; }
.qa p a:hover { color: #b86f00; border-color: #b86f00; }
.qa[open] p { animation: faqIn var(--t) ease-out; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-4px);} to { opacity: 1; transform: none; } }

/* ---------------- claim / form ---------------- */
.claim { position: relative; }
.claim__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.claim__title { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.05; letter-spacing: -.03em; color: #fff; }
.claim__sub { color: var(--tx-mid); margin-top: 20px; font-size: 1.08rem; max-width: 42ch; }
.claim__checks { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.claim__checks li { display: flex; align-items: center; gap: 12px; color: var(--tx-hi); font-size: 1rem; }
.claim__checks svg { color: var(--signal); flex-shrink: 0; }

.claim__formwrap { position: relative; }

/* book-a-call card (replaces the old lead form) */
.bookcard {
  background: linear-gradient(180deg, var(--ink-card-2), var(--ink-card));
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.8);
}
.bookcard__badge { display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-mono); font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; color: var(--tx-mid); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 7px 14px; margin-bottom: 22px; }
.bookcard__title { font-family: var(--f-display); font-weight: 800; font-size: 1.55rem; letter-spacing: -.02em; color: #fff; }
.bookcard__text { color: var(--tx-mid); margin-top: 12px; margin-bottom: 26px; font-size: 1.02rem; }
.bookcard__alt { text-align: center; margin-top: 16px; color: var(--tx-dim); font-size: .92rem; }
.bookcard__alt a { color: var(--tx-mid); border-bottom: 1px solid var(--line-2); }
.bookcard__alt a:hover { color: var(--signal); border-color: var(--signal); }
.form { background: linear-gradient(180deg, var(--ink-card-2), var(--ink-card)); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); box-shadow: 0 30px 80px -40px rgba(0,0,0,.8); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label { font-size: .86rem; font-weight: 500; color: var(--tx-mid); margin-bottom: 8px; }
.req { color: var(--signal); }
.opt { color: var(--tx-dim); font-weight: 400; }
.field input, .field textarea, .select select {
  font: inherit; font-size: 1rem; color: var(--tx-hi);
  background: rgba(0,0,0,.28); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 13px 14px; width: 100%; transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.field input::placeholder, .field textarea::placeholder { color: var(--tx-dim); }
.field input:focus, .field textarea:focus, .select select:focus {
  outline: none; border-color: var(--signal); background: rgba(0,0,0,.4);
  box-shadow: 0 0 0 3px var(--signal-soft);
}
.field textarea { resize: vertical; min-height: 84px; }
.select { position: relative; }
.select select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 38px; }
.select__arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--tx-mid); pointer-events: none; }
.field.has-error input, .field.has-error select { border-color: #ff6a5a; box-shadow: 0 0 0 3px rgba(255,106,90,.16); }
.field__err { color: #ff8a7d; font-size: .8rem; margin-top: 6px; min-height: 0; }
.field.has-error .field__err { min-height: 1em; }

.form__fineprint { text-align: center; color: var(--tx-dim); font-family: var(--f-mono); font-size: .8rem; margin-top: 14px; }
.form button[type="submit"] { margin-top: 6px; }

.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; padding: 56px 40px; min-height: 440px; background: linear-gradient(180deg, var(--ink-card-2), var(--ink-card)); border: 1px solid rgba(61,220,151,.4); border-radius: var(--r-lg); box-shadow: 0 30px 80px -40px rgba(0,0,0,.8); }
.form-success[hidden] { display: none; }
.form-success__mark { color: var(--ok); }
.form-success__title { font-family: var(--f-display); font-weight: 800; font-size: 1.7rem; letter-spacing: -.02em; color: #fff; }
.form-success__text { color: var(--tx-mid); max-width: 38ch; }

/* ---------------- footer ---------------- */
.footer { background: #080A0F; border-top: 1px solid var(--line); padding-top: clamp(48px, 6vw, 72px); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.brand--footer { font-size: 1.25rem; }
.footer__tag { color: var(--tx-dim); margin-top: 16px; max-width: 38ch; font-size: .96rem; }
.footer__h { display: block; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--tx-dim); margin-bottom: 16px; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { color: var(--tx-mid); font-size: .96rem; transition: color var(--t); width: max-content; }
.footer__nav a:hover { color: var(--signal); }
.footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer__mail { color: var(--tx-hi); font-family: var(--f-mono); font-size: .92rem; }
.footer__mail:hover { color: var(--signal); }
.footer__base { display: flex; align-items: center; justify-content: space-between; padding-block: 24px; color: var(--tx-dim); font-size: .85rem; flex-wrap: wrap; gap: 10px; }
.footer__status { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); letter-spacing: .04em; }

/* ---------------- reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------------- responsive ---------------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__board { max-width: 460px; width: 100%; margin-inline: auto; }
  .cards--three { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .claim__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brandcol { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__actions .btn--primary { display: none; }
  .nav.is-open .nav__mobile { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .statcards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 0; max-width: 600px; }
  .beforeafter { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .trustbar__inner { gap: 12px; }
  .callctl { max-width: 240px; }
}

/* ---------------- reduced motion ---------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .livedot { animation: none; }
  .eq i { animation: none; transform: scaleY(.55); }
  .eq i:nth-child(5n+2) { transform: scaleY(.9); }
  .eq i:nth-child(5n+3) { transform: scaleY(.38); }
  .eq i:nth-child(5n+4) { transform: scaleY(.72); }
  .marquee__row { animation: none; }
}
