/* ============================================================
   National Telecom Broker — site styles
   Type:  Archivo (display) + IBM Plex Sans (body) + IBM Plex Mono (labels)
   Color: deep navy ink, warm paper, confident blue, signal green
   ============================================================ */

:root {
  --paper:      oklch(0.987 0.004 95);
  --paper-2:    oklch(0.968 0.006 90);
  --paper-3:    oklch(0.945 0.008 90);
  --ink:        oklch(0.235 0.032 256);
  --navy:       oklch(0.255 0.045 258);
  --navy-deep:  oklch(0.205 0.040 258);
  --navy-deeper:oklch(0.165 0.035 258);
  --muted:      oklch(0.515 0.022 258);
  --muted-soft: oklch(0.62 0.018 258);
  --line:       oklch(0.905 0.008 256);
  --line-soft:  oklch(0.93 0.006 256);

  --brand:        oklch(0.605 0.185 248);
  --brand-strong: oklch(0.530 0.190 250);
  --brand-tint:   oklch(0.960 0.026 248);
  --signal:       oklch(0.70 0.135 165);
  --signal-deep:  oklch(0.56 0.115 165);

  --ff-display: "Archivo", system-ui, sans-serif;
  --ff-body:    "IBM Plex Sans", system-ui, sans-serif;
  --ff-mono:    "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px oklch(0.2 0.04 258 / 0.06), 0 2px 6px oklch(0.2 0.04 258 / 0.05);
  --shadow-md: 0 4px 14px oklch(0.2 0.04 258 / 0.08), 0 10px 34px oklch(0.2 0.04 258 / 0.07);
  --shadow-lg: 0 8px 24px oklch(0.2 0.04 258 / 0.10), 0 24px 60px oklch(0.2 0.04 258 / 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-strong);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--brand); display: inline-block; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-top: 18px; }
.section-head p { margin-top: 20px; color: var(--muted); font-size: 1.12rem; }
.lead { font-size: 1.18rem; color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 600; font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--brand-strong); color: #fff; box-shadow: 0 6px 18px oklch(0.5 0.17 252 / 0.28); }
.btn-primary:hover { background: var(--brand); transform: translateY(-2px); box-shadow: 0 10px 26px oklch(0.5 0.17 252 / 0.34); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy-deep); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; justify-content: center; padding-block: 18px; font-size: 1.06rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: oklch(0.205 0.040 258 / 0.86);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { background: oklch(0.175 0.038 258 / 0.96); box-shadow: 0 6px 26px oklch(0 0 0 / 0.30); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { height: 42px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a { font-size: 0.95rem; font-weight: 500; color: oklch(0.82 0.02 258); padding: 9px 13px; border-radius: 9px; transition: color .15s, background .15s; white-space: nowrap; }
.nav a:hover { color: #fff; background: oklch(1 0 0 / 0.08); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { font-family: var(--ff-display); font-weight: 600; font-size: 0.98rem; color: #fff; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.header-phone svg { width: 16px; height: 16px; color: var(--brand); }
.menu-toggle { display: none; background: none; border: 1px solid oklch(1 0 0 / 0.22); border-radius: 10px; width: 46px; height: 46px; cursor: pointer; align-items: center; justify-content: center; color: #fff; }
.menu-toggle svg { width: 22px; height: 22px; }

/* ============================================================
   HERO  (dark, conversion-first, lead form above the fold)
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--navy-deeper); color: #fff; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(960px 620px at 80% -12%, oklch(0.605 0.185 248 / 0.34), transparent 60%),
    radial-gradient(760px 540px at -6% 112%, oklch(0.50 0.19 252 / 0.26), transparent 56%),
    linear-gradient(180deg, oklch(0.205 0.042 258), oklch(0.150 0.034 258));
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.55;
  background-image: radial-gradient(oklch(1 0 0 / 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask: linear-gradient(180deg, #000, transparent 78%);
          mask: linear-gradient(180deg, #000, transparent 78%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(34px, 5vw, 72px); align-items: center; padding-block: clamp(56px, 7.5vw, 112px); }
.hero-copy { max-width: 600px; }
.hero .eyebrow { color: oklch(0.80 0.07 248); }
.hero .eyebrow::before { background: var(--brand); }
.hero h1 { font-size: clamp(2.4rem, 5.1vw, 4.1rem); font-weight: 800; margin-top: 22px; color: #fff; }
.hero h1 .hl { color: oklch(0.745 0.145 234); }
.hero-copy .lead { margin-top: 22px; max-width: 540px; color: oklch(0.845 0.02 258); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 500; color: oklch(0.88 0.015 258); background: oklch(1 0 0 / 0.06); border: 1px solid oklch(1 0 0 / 0.12); border-radius: 100px; padding: 8px 15px; }
.hero-pill svg { width: 15px; height: 15px; color: var(--signal); }
.hero-trust { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust .ht { display: flex; flex-direction: column; gap: 3px; }
.hero-trust .ht b { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 800; letter-spacing: -0.03em; color: #fff; line-height: 1; }
.hero-trust .ht span { font-size: 0.84rem; color: oklch(0.74 0.02 258); }

/* hero lead-capture form */
.hero-form { position: relative; }
.hero-form .form-card { padding: clamp(24px, 2.6vw, 34px); }
.form-card .fc-head { display: flex; align-items: center; gap: 11px; }
.form-card .fc-head .fc-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 4px oklch(0.70 0.135 165 / 0.22); flex-shrink: 0; }

/* hero panel / visual */
.hero-panel {
  position: relative; background: var(--navy-deep); border-radius: var(--radius-lg);
  padding: 30px; color: #fff; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-panel::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 300px at 80% 0%, oklch(0.585 0.158 250 / 0.35), transparent 65%);
  pointer-events: none;
}
.panel-tag { font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: oklch(0.78 0.06 250); display: flex; align-items: center; gap: 8px; }
.panel-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 4px oklch(0.70 0.135 165 / 0.25); }
.panel-title { font-size: 1.18rem; font-weight: 700; margin-top: 16px; color: #fff; }
.quote-rows { position: relative; margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.qrow { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: oklch(1 0 0 / 0.05); border: 1px solid oklch(1 0 0 / 0.09); border-radius: 12px; padding: 14px 16px; }
.qrow .ql { display: flex; align-items: center; gap: 12px; min-width: 0; }
.qrow .logo-chip { width: 38px; height: 38px; border-radius: 9px; background: oklch(1 0 0 / 0.1); display: flex; align-items: center; justify-content: center; font-family: var(--ff-mono); font-size: 0.7rem; color: oklch(0.85 0.03 250); flex-shrink: 0; }
.qrow .qn { font-weight: 600; font-size: 0.96rem; }
.qrow .qmeta { font-size: 0.78rem; color: oklch(0.74 0.03 250); }
.qrow .qprice { font-family: var(--ff-display); font-weight: 800; font-size: 1.05rem; text-align: right; white-space: nowrap; }
.qrow.best { background: oklch(0.70 0.135 165 / 0.14); border-color: oklch(0.70 0.135 165 / 0.45); }
.qrow.best .qprice { color: var(--signal); }
.qrow .save-flag { font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--signal); }
.panel-foot { margin-top: 20px; display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: oklch(0.78 0.03 250); }
.panel-foot svg { width: 15px; height: 15px; color: var(--signal); }

/* ============================================================
   RESULTS / PROOF
   ============================================================ */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; transition: transform .2s, box-shadow .2s; }
.rcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.rcard .rnum { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.1rem, 4vw, 2.9rem); letter-spacing: -0.035em; color: var(--brand-strong); line-height: 1; }
.rcard .rlbl { margin-top: 14px; font-family: var(--ff-display); font-weight: 600; font-size: 1.08rem; }
.rcard .rdesc { margin-top: 8px; color: var(--muted); font-size: 0.96rem; }

/* ============================================================
   PROVIDERS STRIP
   ============================================================ */
.providers { border-block: 1px solid var(--line); background: var(--paper-2); }
.providers .wrap { padding-block: 34px; }
.providers-label { text-align: center; font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.providers-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 38px; }
.provider-name { font-family: var(--ff-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.01em; color: oklch(0.55 0.02 258); opacity: 0.8; transition: opacity .2s, color .2s; }
.provider-name:hover { opacity: 1; color: var(--ink); }

/* ============================================================
   VALUE / WHY A BROKER
   ============================================================ */
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.vcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.vcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-soft); }
.vicon { width: 50px; height: 50px; border-radius: 12px; background: var(--brand-tint); color: var(--brand-strong); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.vicon svg { width: 25px; height: 25px; }
.vcard h3 { font-size: 1.28rem; margin-bottom: 10px; }
.vcard p { color: var(--muted); font-size: 1rem; }

/* split intro band */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split-media { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--paper-2); border-block: 1px solid var(--line); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; display: flex; flex-direction: column; min-height: 280px;
  transition: transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc .num { font-family: var(--ff-mono); font-size: 0.78rem; color: var(--brand-strong); letter-spacing: 0.1em; }
.svc h3 { font-size: 1.4rem; margin-top: 14px; }
.svc p { color: var(--muted); font-size: 1rem; margin-top: 12px; flex: 1; }
.svc .svc-tag { margin-top: 18px; font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.svc .svc-tag svg { width: 15px; height: 15px; color: var(--brand); }
.svc.wide { grid-column: span 3; min-height: auto; flex-direction: row; align-items: center; gap: 40px; background: var(--navy-deep); color: #fff; }
.svc.wide h3 { color: #fff; font-size: 1.7rem; }
.svc.wide p { color: oklch(0.82 0.02 258); font-size: 1.08rem; }
.svc.wide .svc-body { flex: 1; }

/* ============================================================
   PROCESS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step { padding: 28px 28px 28px 0; position: relative; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 38px; right: 24px; left: 64px; height: 1px; background: var(--line); }
.step .sn { width: 54px; height: 54px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 800; font-size: 1.2rem; color: var(--brand-strong); position: relative; z-index: 1; box-shadow: var(--shadow-sm); }
.step h3 { font-size: 1.2rem; margin-top: 22px; }
.step p { color: var(--muted); font-size: 0.98rem; margin-top: 10px; padding-right: 18px; }

/* ============================================================
   SAVINGS BAND
   ============================================================ */
.savings { background: var(--navy-deep); color: #fff; position: relative; overflow: hidden; }
.savings::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 420px at 85% 120%, oklch(0.70 0.135 165 / 0.16), transparent 60%), radial-gradient(640px 420px at 5% -20%, oklch(0.585 0.158 250 / 0.22), transparent 60%); }
.savings .wrap { position: relative; }
.savings .section-head h2 { color: #fff; }
.savings .section-head .eyebrow { color: oklch(0.80 0.07 165); }
.savings .section-head .eyebrow::before { background: var(--signal); }
.savings .section-head p { color: oklch(0.82 0.02 258); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.stat { background: oklch(1 0 0 / 0.04); border: 1px solid oklch(1 0 0 / 0.10); border-radius: var(--radius); padding: 32px; }
.stat .big { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.4rem, 4.5vw, 3.4rem); letter-spacing: -0.03em; color: var(--signal); line-height: 1; }
.stat .big .pre { color: oklch(0.80 0.07 165); font-size: 0.5em; vertical-align: 0.35em; margin-right: 2px; }
.stat .lbl { margin-top: 14px; font-size: 1rem; color: oklch(0.86 0.02 258); }

/* ============================================================
   COVERAGE
   ============================================================ */
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.coverage-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 34px; }
.cstat { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; }
.cstat b { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.cstat span { display: block; margin-top: 6px; color: var(--muted); font-size: 0.92rem; }
.map-card { background: var(--navy-deep); border-radius: var(--radius-lg); padding: 30px; color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper-2); border-block: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 8px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--ff-display); font-weight: 600; font-size: 1.16rem; color: var(--ink); letter-spacing: -0.01em; }
.faq-q .pm { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--brand-strong); transition: transform .25s ease; }
.faq-q .pm::before { top: 50%; left: 2px; right: 2px; height: 2px; transform: translateY(-50%); }
.faq-q .pm::after { left: 50%; top: 2px; bottom: 2px; width: 2px; transform: translateX(-50%); }
.faq-item.open .faq-q .pm::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 8px 24px 8px; color: var(--muted); font-size: 1.02rem; }

/* ============================================================
   CONTACT / QUOTE FORM
   ============================================================ */
.contact { background: var(--navy-deeper); color: #fff; position: relative; overflow: hidden; }
.contact::before { content: ""; position: absolute; inset: 0; background: radial-gradient(720px 460px at 90% 0%, oklch(0.585 0.158 250 / 0.22), transparent 60%); }
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.contact-copy h2 { font-size: clamp(2.1rem, 4vw, 3rem); color: #fff; }
.contact-copy .lead { color: oklch(0.84 0.02 258); margin-top: 22px; }
.contact-points { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.cpoint { display: flex; gap: 14px; align-items: flex-start; }
.cpoint .ck { width: 26px; height: 26px; border-radius: 50%; background: oklch(0.70 0.135 165 / 0.18); color: var(--signal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.cpoint .ck svg { width: 15px; height: 15px; }
.cpoint span { color: oklch(0.88 0.015 258); font-size: 1.02rem; }
.contact-meta { margin-top: 36px; padding-top: 28px; border-top: 1px solid oklch(1 0 0 / 0.12); display: flex; flex-direction: column; gap: 10px; }
.contact-meta a, .contact-meta div { display: flex; align-items: center; gap: 12px; color: oklch(0.86 0.02 258); font-size: 1rem; }
.contact-meta svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }

/* form card */
.form-card { background: var(--paper); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(28px, 3.5vw, 42px); box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 1.5rem; }
.form-card .fc-sub { color: var(--muted); margin-top: 8px; font-size: 0.98rem; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-family: var(--ff-display); font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.field label .req { color: var(--brand-strong); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-body); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px; padding: 13px 15px;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: oklch(0.68 0.015 258); font-weight: 400; }
.field input:not(:placeholder-shown), .field textarea:not(:placeholder-shown) { font-weight: 600; }
.field:focus-within label { color: var(--brand-strong); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px oklch(0.605 0.185 248 / 0.20); background: oklch(0.985 0.01 248); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: oklch(0.58 0.18 25); box-shadow: 0 0 0 4px oklch(0.58 0.18 25 / 0.12); }
.field .err { display: none; color: oklch(0.52 0.18 25); font-size: 0.82rem; margin-top: 6px; }
.field.invalid .err { display: block; }
.form-fine { font-size: 0.82rem; color: var(--muted); margin-top: 16px; text-align: center; }
.form-fine a { color: var(--brand-strong); text-decoration: underline; text-underline-offset: 2px; }
.form-error { margin-top: 14px; padding: 12px 14px; border-radius: 10px; background: oklch(0.96 0.04 25); border: 1px solid oklch(0.82 0.10 25); color: oklch(0.46 0.16 25); font-size: 0.9rem; text-align: center; }

/* ============================================================
   HOW TO ORDER (AEO / answer-engine content)
   ============================================================ */
.howto { background: var(--paper-2); border-block: 1px solid var(--line); }
.answer-box {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brand-strong);
  border-radius: var(--radius); padding: 28px 30px; margin-top: 8px; box-shadow: var(--shadow-sm);
}
.answer-box .ab-label { font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-strong); font-weight: 500; }
.answer-box p { margin-top: 12px; font-size: 1.12rem; color: var(--ink); line-height: 1.55; }
.answer-box p strong { font-weight: 600; }
.howto-steps { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; counter-reset: ho; list-style: none; padding: 0; }
.howto-steps li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; display: flex; gap: 20px; align-items: flex-start; transition: transform .2s, box-shadow .2s; }
.howto-steps li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.howto-steps li::before { counter-increment: ho; content: counter(ho); flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--brand-tint); color: var(--brand-strong); font-family: var(--ff-display); font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; }
.howto-steps .ho-body h3 { font-size: 1.18rem; }
.howto-steps .ho-body p { margin-top: 8px; color: var(--muted); font-size: 0.98rem; }
.howto-cta { margin-top: 34px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.howto-cta .hc-note { color: var(--muted); font-size: 0.98rem; max-width: 440px; }
@media (max-width: 860px) { .howto-steps { grid-template-columns: 1fr; } }

/* ============================================================
   COMPARISON TABLE (broker vs. going direct)
   ============================================================ */
.compare { display: grid; grid-template-columns: 1.2fr 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.compare .ch { padding: 22px 24px; font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.compare .ch.feature { background: var(--paper-2); color: var(--muted); font-size: 0.78rem; font-family: var(--ff-mono); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; }
.compare .ch.us { background: var(--navy-deep); color: #fff; }
.compare .ch.them { background: var(--paper-2); color: var(--ink); }
.compare .cc { padding: 20px 24px; border-bottom: 1px solid var(--line-soft); font-size: 0.98rem; display: flex; align-items: flex-start; gap: 10px; }
.compare .cc.label { font-weight: 600; color: var(--ink); background: var(--paper); }
.compare .cc.us { background: oklch(0.585 0.158 250 / 0.04); color: var(--ink); }
.compare .cc.them { color: var(--muted); }
.compare .cc svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.compare .cc.us svg { color: var(--signal-deep); }
.compare .cc.them svg { color: oklch(0.62 0.02 258); }
.compare > div:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 760px) {
  .compare { grid-template-columns: 1fr; border-radius: var(--radius); }
  .compare .ch.feature { display: none; }
  .compare .cc.label { font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding-bottom: 4px; border-bottom: none; }
  .compare .cc { border-bottom: none; padding-block: 8px; }
  .compare .cc.them { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .compare .ch { border-bottom: none; }
  .compare .ch.feature, .compare .ch.us, .compare .ch.them { display: none; }
}

/* ============================================================
   SLA UPTIME TIERS
   ============================================================ */
.sla-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.sla-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; text-align: center; }
.sla-card.feat { border-color: var(--brand); box-shadow: 0 0 0 4px oklch(0.605 0.185 248 / 0.10); }
.sla-card .nines { font-family: var(--ff-display); font-weight: 800; font-size: 2.4rem; letter-spacing: -0.03em; color: var(--brand-strong); line-height: 1; }
.sla-card .nines .pct { font-size: 0.55em; vertical-align: 0.5em; }
.sla-card .dt { margin-top: 14px; font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; }
.sla-card .dn { margin-top: 6px; color: var(--muted); font-size: 0.92rem; }
@media (max-width: 620px) { .sla-grid { grid-template-columns: 1fr; } }

/* success state */
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-card.done .form-body { display: none; }
.form-card.done .form-success { display: block; }
.form-success .sc-ico { width: 72px; height: 72px; border-radius: 50%; background: oklch(0.70 0.135 165 / 0.16); color: var(--signal-deep); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.form-success .sc-ico svg { width: 36px; height: 36px; }
.form-success h3 { font-size: 1.6rem; }
.form-success p { color: var(--muted); margin-top: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deeper); color: oklch(0.80 0.02 258); padding-block: 64px 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid oklch(1 0 0 / 0.10); }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 18px; font-size: 0.96rem; color: oklch(0.74 0.02 258); max-width: 320px; }
.footer-col h4 { font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: oklch(0.66 0.03 250); font-weight: 500; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: oklch(0.82 0.02 258); font-size: 0.96rem; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 28px; flex-wrap: wrap; font-size: 0.86rem; color: oklch(0.64 0.02 258); }

/* ============================================================
   reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   mobile nav drawer
   ============================================================ */
.mobile-drawer { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc.wide { grid-column: span 2; flex-direction: column; align-items: flex-start; gap: 20px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2)::after { display: none; }
  .stat-grid { grid-template-columns: 1fr; }
  .split, .coverage-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  /* collapse full nav to hamburger before the header can overflow */
  .nav, .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .mobile-drawer { display: block; position: fixed; inset: 78px 0 auto 0; z-index: 55; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); transform: translateY(-130%); transition: transform .3s ease; padding: 18px var(--gutter) 26px; }
  .mobile-drawer.open { transform: translateY(0); }
  .mobile-drawer a { display: block; padding: 14px 4px; font-family: var(--ff-display); font-weight: 600; font-size: 1.12rem; border-bottom: 1px solid var(--line-soft); }
  .mobile-drawer .btn { margin-top: 18px; }
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  .hero-grid { gap: 30px; padding-block: 40px 52px; }
  .hero-trust { gap: 20px 28px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc.wide { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .step { padding: 18px 0; }
  .coverage-stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .header-inner { height: 66px; }
  .brand-logo { height: 34px; }
  .mobile-drawer { inset: 66px 0 auto 0; }
  .hero h1 { font-size: 2.15rem; }
  .hero-trust { gap: 16px 24px; }
  .hero-trust .ht b { font-size: 1.55rem; }
  .form-card { padding: 22px 20px; }
  .fc-head h3 { font-size: 1.3rem; }
  .coverage-stats { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 1.85rem; }
  .answer-box { padding: 22px 20px; }
  .answer-box p { font-size: 1.02rem; }
  .howto-steps li { padding: 22px 20px; gap: 16px; }
  .btn-block { padding-block: 16px; }
}
