/* voipcom — minimal, professional, conversion-first.
   Light cool-neutral ground, near-black ink, brand green kept for signals.
   Display: Bricolage Grotesque · Body: Instrument Sans · Labels: JetBrains Mono */

:root {
  --paper: #f6f8f7;
  --card: #ffffff;
  --ink: #0b1512;
  --ink-2: #3b4743;
  --mute: #76837e;
  --line: #e2e8e5;
  --line-2: #cfd8d3;
  --green: #12a268;
  --green-ink: #0c7a4e;
  --green-bright: #35f59b;
  --green-soft: #e9f7f0;
  --night: #0b1512;
  --night-2: #121d19;
  --night-line: rgba(255,255,255,0.1);
  --display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --body: "Instrument Sans", -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --max: 1120px;
  --gutter: clamp(18px, 4vw, 40px);
  --r: 14px;
  --r-sm: 10px;
  --nav-h: 68px;
}

/* legacy token aliases so older content pages keep working */
:root {
  --ivory: var(--ink); --muted: var(--ink-2); --faint: var(--mute);
  --signal: var(--green); --signal-dim: var(--green-ink);
  --soot: var(--card); --panel: var(--card); --night-old: var(--paper);
  --line-strong: var(--line-2); --copper: #b06a2c; --bakelite: #f3efe9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  background: var(--paper); color: var(--ink-2);
  font-family: var(--body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--green-ink); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--green-soft); color: var(--ink); }

h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); text-wrap: balance; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.9rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 600; }
p { max-width: 62ch; }
strong { color: var(--ink); font-weight: 600; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-ink); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--green); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-2); max-width: 56ch; }
.mono { font-family: var(--mono); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--ink); color: #fff; font-family: var(--body); font-weight: 600; font-size: 0.96rem;
  padding: 13px 22px; border-radius: 999px; border: 1px solid var(--ink); cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap; text-decoration: none;
}
.btn:hover { background: #1a2a24; text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-small { padding: 10px 16px; font-size: 0.9rem; }
.btn-lg { padding: 15px 26px; font-size: 1.02rem; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: #fff; border-color: var(--ink); }
.btn-wa { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-wa:hover { border-color: var(--green); background: var(--green-soft); }
.wa-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.btn-block { width: 100%; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cta-note { font-family: var(--mono); font-size: 11px; color: var(--mute); letter-spacing: 0.04em; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  background: rgba(246,248,247,0.86); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { width: 30px; height: 30px; }
.brand b { font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; }
.brand small { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em; color: var(--green-ink); margin-top: -2px; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--ink-2); font-weight: 500; font-size: 0.94rem; position: relative; padding: 6px 0; text-decoration: none; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--green); border-radius: 2px; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-2); border-radius: 10px; width: 40px; height: 40px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { margin: 0 auto; }

/* ---------- hero ---------- */
.hero { padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px); }
.hero-grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.hero h1 { margin: 6px 0 18px; }
.hero h1 em { font-style: normal; color: var(--green-ink); }
.hero .lede { margin-bottom: 26px; }
.hero-proof { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 26px 0 0; padding: 0; }
.hero-proof li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--ink-2); }
.hero-proof li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
/* the signature: one number fans out to the whole team — a full-width band under the hero */
.flow { margin: clamp(36px, 5vw, 56px) 0 0; padding-top: 28px; border-top: 1px solid var(--line); }
.flow figcaption { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--mute); margin-top: 14px; max-width: 70ch; }
.route { width: 100%; height: auto; overflow: visible; display: block; }
.route .wire { fill: none; stroke: var(--line-2); stroke-width: 1.5; }
.route .live { fill: none; stroke: var(--green); stroke-width: 2.25; stroke-linecap: round; animation: breathe 2.6s ease-in-out infinite; }
@keyframes breathe { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
.route .src { fill: var(--ink); }
.route .num { font-family: var(--mono); font-size: 17px; font-weight: 500; fill: #fff; letter-spacing: 0.04em; }
.route .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; fill: var(--mute); }
.route .pill rect { fill: var(--card); stroke: var(--line-2); stroke-width: 1.5; }
.route .pill.on rect { stroke: var(--green); }
.route .pill text { font-family: var(--body); font-size: 14px; font-weight: 500; fill: var(--ink); }
.route .pill tspan { fill: var(--mute); font-weight: 400; }
.route .dot { fill: var(--line-2); }
.route .pill.on .dot { fill: var(--green); }
.route .pulse { fill: var(--green-bright); animation: pulse 2s ease-in-out infinite; }
@keyframes flow { to { stroke-dashoffset: -72; } }
@keyframes pulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }

/* ---------- lead form card ---------- */
.lead-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 26px 22px; position: sticky; top: calc(var(--nav-h) + 20px);
}
.lead-card h3 { margin-bottom: 4px; font-size: 1.22rem; }
.lead-card .sub { color: var(--mute); font-size: 0.9rem; margin-bottom: 18px; }
.lead-form { display: grid; gap: 12px; }
.lead-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 0.96rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 11px 13px; transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.field textarea { min-height: 88px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #a3aeaa; }
.form-note { font-family: var(--mono); font-size: 10.5px; color: var(--mute); letter-spacing: 0.03em; line-height: 1.5; margin-top: 4px; }
.form-note b { color: var(--green-ink); font-weight: 600; }
.lead-form .btn { margin-top: 4px; }
.lead-or { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 10px; color: var(--mute); letter-spacing: 0.14em; text-transform: uppercase; }
.lead-or::before, .lead-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ---------- proof strip ---------- */
.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--card); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { padding: 22px 18px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: none; }
.proof-item .v { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.proof-item .l { font-size: 0.86rem; color: var(--mute); margin-top: 6px; }

/* ---------- sections ---------- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section.tight { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 72px); }
.section.alt { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--ink-2); font-size: 1.05rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center p { margin: 0 auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.card .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--green-soft); color: var(--green-ink); display: grid; place-items: center; margin-bottom: 16px; }
.card .ic svg { width: 20px; height: 20px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: 0.95rem; }
.card .more { display: inline-block; margin-top: 14px; font-weight: 600; font-size: 0.92rem; }
.card.link { transition: border-color .15s, transform .15s; }
.card.link:hover { border-color: var(--ink); transform: translateY(-2px); }

/* service tiles on home */
.service { display: grid; gap: 10px; }
.service .num { font-family: var(--mono); font-size: 11px; color: var(--mute); letter-spacing: 0.1em; }

/* problem → solution */
.pas { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pas-col { border-radius: var(--r); padding: 26px; border: 1px solid var(--line); background: var(--card); }
.pas-col h3 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.pas-col ul { list-style: none; }
.pas-col li { display: flex; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 0.95rem; color: var(--ink-2); }
.pas-col li:first-child { border-top: none; padding-top: 0; }
.pas-col li::before { flex: 0 0 auto; font-family: var(--mono); font-size: 12px; margin-top: 3px; }
.pas-col.problem h3 { color: var(--mute); }
.pas-col.problem li::before { content: "×"; color: var(--mute); }
.pas-col.solution { border-color: var(--green); }
.pas-col.solution h3 { color: var(--green-ink); }
.pas-col.solution li::before { content: "✓"; color: var(--green-ink); }
.pas-col.solution li { color: var(--ink); }

/* how it works — a real sequence */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: st; }
.step { position: relative; padding: 24px; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); }
.step::before { counter-increment: st; content: "0" counter(st); font-family: var(--mono); font-size: 12px; color: var(--green-ink); letter-spacing: 0.1em; display: block; margin-bottom: 14px; }
.step h3 { margin-bottom: 8px; font-size: 1.08rem; }
.step p { font-size: 0.94rem; color: var(--ink-2); }
.step b { display: none; } /* legacy markup used <b>01</b>; counter replaces it */

/* feature list (checks) */
.checks { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.96rem; color: var(--ink-2); }
.checks li::before { content: "✓"; color: var(--green-ink); font-family: var(--mono); flex: 0 0 auto; margin-top: 2px; }
.checks li b { color: var(--ink); font-weight: 600; }

/* pricing anchor */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--ink); }
.plan .pill { position: absolute; top: -11px; left: 22px; background: var(--ink); color: #fff; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; padding: 4px 10px; border-radius: 999px; }
.plan h3 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); font-weight: 600; margin-bottom: 12px; }
.plan .price { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.plan .price small { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; color: var(--mute); margin-top: 8px; font-weight: 400; }
.plan ul { list-style: none; margin: 18px 0 22px; flex: 1; }
.plan li { padding: 8px 0; border-top: 1px solid var(--line); font-size: 0.92rem; color: var(--ink-2); display: flex; gap: 10px; }
.plan li::before { content: "✓"; color: var(--green-ink); font-family: var(--mono); flex: 0 0 auto; }
.note { font-family: var(--mono); font-size: 11px; color: var(--mute); margin-top: 16px; line-height: 1.6; }

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 760px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 0 20px; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { cursor: pointer; list-style: none; font-weight: 600; color: var(--ink); padding: 16px 0; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--mute); font-size: 18px; line-height: 1; flex: 0 0 auto; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-2); padding: 0 0 18px; font-size: 0.95rem; max-width: 70ch; }

/* CTA band (dark bookend) */
.cta-band {
  background: var(--night); color: #fff; border-radius: 20px;
  padding: clamp(32px, 5vw, 56px); display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center;
}
.cta-band:has(.lead-card) { grid-template-columns: 1.1fr 0.9fr; } /* two columns only when a form rides along */
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.72); }
.cta-band .btn { background: #fff; color: var(--ink); border-color: #fff; }
.cta-band .btn:hover { background: var(--green-bright); border-color: var(--green-bright); }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.08); }
.cta-band .cta-row { margin-top: 22px; }
.cta-band .lead-card { position: static; background: var(--night-2); border-color: var(--night-line); }
.cta-band .lead-card h3 { color: #fff; }
.cta-band .lead-card .sub, .cta-band .form-note { color: rgba(255,255,255,0.6); }
.cta-band .field label { color: rgba(255,255,255,0.55); }
.cta-band .field input, .cta-band .field select, .cta-band .field textarea { background: rgba(255,255,255,0.06); border-color: var(--night-line); color: #fff; }
.cta-band .field input:focus, .cta-band .field select:focus { background: rgba(255,255,255,0.1); border-color: var(--green-bright); }
.cta-band .field select option { color: var(--ink); }
.cta-band .lead-form .btn { background: var(--green-bright); color: var(--ink); border-color: var(--green-bright); }
.cta-band .lead-form .btn:hover { background: #fff; border-color: #fff; }
.cta-band.center { grid-template-columns: 1fr; text-align: center; }
.cta-band.center p { margin: 0 auto; }
.cta-band.center .cta-row { justify-content: center; }

/* trust line (compliance / billing) */
.trust { display: flex; flex-wrap: wrap; gap: 10px 28px; font-family: var(--mono); font-size: 11px; color: var(--mute); letter-spacing: 0.06em; }
.trust span::before { content: "·"; margin-right: 10px; color: var(--green); }
.trust span:first-child::before { content: none; }

/* ---------- footer ---------- */
footer { background: var(--night); color: rgba(255,255,255,0.7); margin-top: clamp(48px, 8vw, 96px); }
.foot-cols {
  max-width: var(--max); margin: 0 auto; padding: 56px var(--gutter) 18px;
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 28px;
}
.foot-cols .brandcol .foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: #fff; }
.foot-cols .brandcol .foot-brand strong { font-family: var(--display); font-size: 1.1rem; }
.foot-cols .brandcol img { width: 28px; height: 28px; }
.foot-cols .brandcol p { font-size: 0.88rem; max-width: 30ch; color: rgba(255,255,255,0.6); }
.foot-cols .brandcol .tagline { font-family: var(--display); font-size: 1.15rem; font-weight: 600; color: #fff; letter-spacing: -0.01em; margin-bottom: 8px; }
@media (max-width: 720px) { .flow { display: none; } }
.foot-cols h4 { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-bright); margin-bottom: 12px; font-weight: 600; }
.foot-cols ul { list-style: none; }
.foot-cols li { margin: 8px 0; }
.foot-cols a { color: rgba(255,255,255,0.72); font-size: 0.9rem; text-decoration: none; }
.foot-cols a:hover { color: #fff; }
.foot-legal { max-width: var(--max); margin: 0 auto; padding: 18px var(--gutter) 40px; border-top: 1px solid var(--night-line); font-size: 0.8rem; color: rgba(255,255,255,0.45); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- content / guide pages (legacy SEO pages keep these class names) ---------- */
.subpage main { padding-top: 0; }
/* legacy sections sit directly in <main>; give them the same container as .wrap */
.page-hero, .page-section {
  max-width: var(--max); margin-left: auto; margin-right: auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}
.page-hero { padding-top: clamp(48px, 7vw, 88px); padding-bottom: clamp(28px, 4vw, 44px); }
.page-hero h1 { margin: 6px 0 16px; max-width: 760px; }
.page-hero .lede { margin: 0; max-width: 60ch; }
.page-hero .cta-row { margin-top: 24px; }
.page-section { padding-top: clamp(36px, 6vw, 72px); padding-bottom: clamp(36px, 6vw, 72px); }
.sec-head { max-width: 640px; margin-bottom: 28px; }
.sec-head h2 { margin-bottom: 10px; }
.sec-head p { color: var(--ink-2); }
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mini { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.mini svg { width: 24px; height: 24px; color: var(--green-ink); stroke: currentColor; margin-bottom: 12px; }
.mini h3 { font-size: 1.05rem; margin-bottom: 6px; }
.mini p { font-size: 0.92rem; color: var(--ink-2); }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.feature svg { width: 22px; height: 22px; color: var(--green-ink); stroke: currentColor; margin-bottom: 12px; }
.feature h4 { margin-bottom: 6px; }
.feature p { font-size: 0.9rem; color: var(--ink-2); }
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; display: flex; flex-direction: column; }
.product.featured { border-color: var(--ink); }
.product .pill { position: absolute; top: -11px; left: 22px; background: var(--ink); color: #fff; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; padding: 4px 10px; border-radius: 999px; }
.product .tag, .product .spec, .card .spec, .spec { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); }
.product .tag { color: var(--green-ink); margin-bottom: 10px; }
.product h3 { margin-bottom: 8px; }
.product p { flex: 1; font-size: 0.94rem; color: var(--ink-2); }
.product .spec { margin-top: 18px; padding-top: 12px; border-top: 1px solid var(--line); }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
.compare-col { border-radius: var(--r); padding: 24px; border: 1px solid var(--line); background: var(--card); }
.compare-col h3 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.compare-col ul { list-style: none; }
.compare-col li { display: flex; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 0.93rem; color: var(--ink-2); }
.old-way h3 { color: var(--mute); }
.old-way li::before { content: "×"; color: var(--mute); font-family: var(--mono); }
.new-way { border-color: var(--green); }
.new-way h3 { color: var(--green-ink); }
.new-way li::before { content: "✓"; color: var(--green-ink); font-family: var(--mono); }
.new-way li { color: var(--ink); }
.chip { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line-2); border-radius: 999px; padding: 6px 12px; font-family: var(--mono); font-size: 11px; color: var(--ink-2); background: var(--card); }
.chip b { color: var(--green-ink); }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; }
.contact-form { display: grid; gap: 14px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; }
.contact-aside { display: grid; gap: 14px; align-content: start; }
.contact-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 6px; }
.contact-card p { font-size: 0.9rem; color: var(--ink-2); }

.crumbs { max-width: 820px; margin: 0 auto; padding: 28px var(--gutter) 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--mute); display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a { color: var(--ink-2); }
.article { max-width: 820px; margin: 0 auto; padding: 18px var(--gutter) 0; }
.article h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin: 8px 0 14px; }
.article .standfirst { font-size: 1.15rem; color: var(--ink-2); max-width: 62ch; }
.article .updated { font-family: var(--mono); font-size: 11px; color: var(--mute); margin-top: 14px; letter-spacing: 0.06em; }
.toc { margin: 26px 0; padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); }
.toc p { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-ink); margin-bottom: 10px; }
.toc ol { padding-left: 20px; columns: 2; column-gap: 30px; }
.toc li { margin: 4px 0; }
.toc a { color: var(--ink-2); font-size: 0.92rem; }
.prose { font-size: 1.04rem; line-height: 1.75; }
.prose > * { max-width: 68ch; }
.prose h2 { font-size: clamp(1.4rem, 2.8vw, 1.85rem); margin: 44px 0 14px; scroll-margin-top: 90px; }
.prose h3 { margin: 28px 0 8px; }
.prose p { color: var(--ink-2); margin-bottom: 16px; }
.prose ul, .prose ol { color: var(--ink-2); margin: 0 0 18px; padding-left: 22px; }
.prose li { margin: 6px 0; }
.prose li::marker { color: var(--green-ink); }
.prose blockquote { margin: 22px 0; padding: 4px 20px; border-left: 1px solid var(--line-2); color: var(--ink); font-style: italic; }
.callout { margin: 24px 0; padding: 18px 22px; border-radius: var(--r); border: 1px solid var(--green); background: var(--green-soft); }
.callout .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-ink); display: block; margin-bottom: 6px; }
.callout p { margin: 0; color: var(--ink); }
.callout.urdu-note { border-color: var(--line-2); background: var(--card); }
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-sm); margin: 20px 0; background: var(--card); }
.tablewrap table, .prose table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: 0.93rem; }
.tablewrap th, .tablewrap td, .prose th, .prose td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-2); }
.tablewrap thead th, .prose thead th { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute); background: var(--paper); }
.tablewrap tbody tr:last-child td { border-bottom: none; }
.related { max-width: 820px; margin: 40px auto 0; padding: 0 var(--gutter); }
.related h2 { font-size: 1.3rem; margin-bottom: 14px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-grid a { display: block; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--card); color: var(--ink); text-decoration: none; transition: border-color .15s, transform .15s; }
.related-grid a:hover { border-color: var(--ink); transform: translateY(-2px); text-decoration: none; }
.related-grid .t { font-weight: 600; display: block; }
.related-grid .d { color: var(--mute); font-size: 0.85rem; margin-top: 4px; display: block; }
.article .cta-band, .related + footer { margin-top: 0; }
.article .cta-band { margin: 40px 0 0; }

/* ---------- reveal (JS-gated so content is always visible without JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .lead-card { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: none; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-cols .brandcol { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--card); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gutter) 14px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-top: 1px solid var(--line); font-size: 1rem; }
  .nav-links a:first-child { border-top: none; }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-right .btn-wa { display: none; } /* keep the primary CTA visible on phones — ad traffic converts here */
  .grid-3, .grid-2, .steps, .pas, .plans, .trio, .features, .products, .compare, .contact-grid, .related-grid { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .lead-form .row { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
  .foot-legal { flex-direction: column; }
}
@media (max-width: 560px) {
  .grid-4, .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: none; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: none; }
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .route .live, .route .pulse { animation: none; }
  .btn { transition: none; }
}
