/* ============ B2C LANDING — section styles ============ */

/* ---- TOP UTILITY BAR ---- */
.topbar { background:var(--brand-deep); color:var(--brand-ink); font-size:13px; }
.topbar .container { display:flex; justify-content:space-between; align-items:center; height:40px; }
.topbar-left { display:flex; gap:22px; align-items:center; opacity:.9; }
.topbar-left span { display:inline-flex; align-items:center; gap:7px; }
.topbar-left svg { width:14px; height:14px; }
.topbar-right { display:flex; gap:14px; align-items:center; opacity:.82; }
.topbar-right .sep { opacity:.4; }
@media (max-width:720px){ .topbar-left span:nth-child(2), .topbar-right { display:none; } }

/* ---- HERO ---- */
.hero { position:relative; overflow:hidden; }
.hero-grid { display:grid; grid-template-columns:1.04fr 1fr; gap:60px; align-items:center; padding-top:84px; padding-bottom:96px; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:10px; padding:7px 16px 7px 8px; border-radius:999px;
  background:var(--brand-tint); color:var(--brand-deep); font-size:12.5px; font-weight:600; letter-spacing:.02em; }
.hero-eyebrow .dot { width:18px; height:18px; border-radius:50%; background:var(--brand); display:grid; place-items:center; }
.hero-eyebrow .dot::before { content:''; width:7px; height:7px; border-radius:50%; background:var(--brand-ink); animation:pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 var(--brand-ink);} 70%{box-shadow:0 0 0 6px transparent;} 100%{box-shadow:0 0 0 0 transparent;} }
.hero h1 { font-size:clamp(40px,5.2vw,66px); font-weight:700; line-height:1.03; letter-spacing:-.035em; margin:24px 0 22px; text-wrap:balance; }
.hero h1 em { font-style:normal; color:var(--brand-deep); }
.hero-sub { font-size:18.5px; line-height:1.55; color:var(--muted); max-width:520px; margin-bottom:34px; }
.hero-ctas { display:flex; gap:13px; margin-bottom:30px; flex-wrap:wrap; }
.hero-trust { display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.hero-trust span { font-size:13.5px; color:var(--muted); display:inline-flex; align-items:center; gap:4px; }
.hero-trust b { color:var(--ink); font-weight:600; }
.hero-trust .divider { width:1px; height:18px; background:var(--rule); }

/* Mobile: tighten hero spacing so the eyebrow sits close to the nav. */
@media (max-width:920px) {
  .hero-grid { padding-top:16px; padding-bottom:48px; }
  .hero h1 { margin-top:14px; margin-bottom:16px; }
  .hero-sub { margin-bottom:22px; }
  .hero-ctas { margin-bottom:18px; }
}

/* hero visual */
.hero-visual { position:relative; }
.hero-img-wrap { position:relative; border-radius:26px; overflow:hidden; aspect-ratio:16/9; box-shadow:0 34px 70px -32px var(--shadow); background:var(--surface); }
.hero-img-wrap image-slot, .hero-img-wrap img, .hero-img-wrap video { width:100%; height:100%; display:block; object-fit:cover; }
.hero-video { background:var(--surface); }
@media (max-width:920px){ .hero-img-wrap { aspect-ratio:16/9; } }
.hero-img-tint { position:absolute; inset:0; background:linear-gradient(180deg,transparent 45%,var(--brand-deep) 128%); mix-blend-mode:multiply; opacity:.22; pointer-events:none; }
.hero-dots { position:absolute; width:128px; height:128px; background-image:radial-gradient(circle,var(--brand-tint-strong) 1.6px,transparent 1.6px); background-size:14px 14px; z-index:-1; }
.hero-dots.tl { top:-22px; left:-30px; }
.hero-dots.br { bottom:-22px; right:-30px; }
.hero-badge { position:absolute; background:var(--bg); border:1px solid var(--rule); border-radius:16px; padding:13px 17px;
  box-shadow:0 16px 34px -14px var(--shadow); display:flex; align-items:center; gap:12px; }
.hero-badge.b1 { top:-18px; left:-30px; }
.hero-badge.b2 { bottom:-18px; right:-30px; }
.hero-badge-icon { width:42px; height:42px; border-radius:11px; background:var(--brand-tint); color:var(--brand-deep); display:grid; place-items:center; flex-shrink:0; }
.hero-badge-icon svg { width:21px; height:21px; }
.hero-badge small { font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:.05em; font-weight:500; }
.hero-badge b { display:block; font-size:15px; font-weight:600; letter-spacing:-.01em; margin-top:2px; }
@media (max-width:920px){ .hero-grid { grid-template-columns:1fr; gap:28px; } .hero-badge.b1, .hero-badge.b2 { display:none; } }

/* ---- TRUST STRIP ---- */
.trust-strip { border-top:1px solid var(--rule); border-bottom:1px solid var(--rule); background:var(--surface); }
.trust-strip .container { display:flex; align-items:center; justify-content:space-between; gap:30px; padding:26px 40px; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:12px; }
.trust-item svg { width:24px; height:24px; color:var(--brand-deep); flex-shrink:0; }
.trust-item b { font-size:15px; font-weight:600; }
.trust-item p { font-size:13px; color:var(--muted); }

/* ---- HOW IT WORKS ---- */
.how { padding:100px 0; }
.how-head { text-align:center; max-width:680px; margin:0 auto 64px; }
.how-head .eyebrow { margin-bottom:18px; }
.how-head .sec-title { margin-bottom:18px; }
.how-steps { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:28px; position:relative; }
.how-steps::before { content:''; position:absolute; top:46px; left:16%; right:16%; height:2px;
  background:repeating-linear-gradient(90deg,var(--brand-tint-strong) 0 8px,transparent 8px 16px); z-index:0; }
.how-step { position:relative; z-index:1; text-align:center; }
.how-step-num { width:92px; height:92px; margin:0 auto 26px; border-radius:50%; background:var(--bg); border:2px solid var(--rule);
  display:grid; place-items:center; position:relative; transition:transform .2s, border-color .2s, box-shadow .2s; }
.how-step:hover .how-step-num { transform:translateY(-4px); border-color:var(--brand); box-shadow:0 18px 36px -16px var(--brand-shadow); }
.how-step-num .ring { position:absolute; inset:-2px; border-radius:50%; }
.how-step-num svg { width:38px; height:38px; color:var(--brand-deep); }
.how-step-num .tag { position:absolute; top:-8px; right:-2px; width:28px; height:28px; border-radius:50%; background:var(--brand-deep);
  color:var(--brand-ink); display:grid; place-items:center; font-size:13px; font-weight:700; }
.how-step h3 { font-size:21px; font-weight:600; letter-spacing:-.02em; margin-bottom:10px; }
.how-step p { font-size:15px; line-height:1.6; color:var(--muted); max-width:300px; margin:0 auto; }
.how-step .meta { margin-top:16px; display:inline-flex; align-items:center; gap:7px; font-size:13px; font-weight:600; color:var(--brand-deep); padding:6px 13px; border-radius:999px; background:var(--brand-tint); }
.how-step .meta svg { width:14px; height:14px; }
@media (max-width:860px){ .how-steps { grid-template-columns:1fr; gap:44px; } .how-steps::before { display:none; } }

/* ---- PRICING (per-visit) ---- */
.pricing { padding:100px 0; background:var(--surface); border-top:1px solid var(--rule); }
.pricing-head { text-align:center; max-width:680px; margin:0 auto 56px; }
.pricing-head .eyebrow { margin-bottom:18px; }
.pricing-head .sec-title { margin-bottom:18px; }
.pricing-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; align-items:stretch; }
.price-card { background:var(--bg); border:1px solid var(--rule); border-radius:22px; padding:34px 32px; display:flex; flex-direction:column;
  transition:transform .2s, box-shadow .2s, border-color .2s; }
.price-card:hover { transform:translateY(-5px); box-shadow:0 28px 50px -24px var(--shadow); }
.price-card.featured { background:var(--brand-deep); color:var(--brand-ink); border-color:var(--brand-deep); position:relative; }
.price-card.featured .price-name, .price-card.featured .price-amount, .price-card.featured .price-desc,
.price-card.featured .price-feat li { color:var(--brand-ink); }
.price-badge { position:absolute; top:-13px; left:32px; background:var(--brand); color:var(--brand-ink); font-size:11.5px; font-weight:700;
  text-transform:uppercase; letter-spacing:.08em; padding:6px 14px; border-radius:999px; white-space:nowrap; }
.price-name { font-size:14px; font-weight:600; text-transform:uppercase; letter-spacing:.08em; color:var(--brand-deep); margin-bottom:14px; }
.price-amount { font-size:46px; font-weight:700; letter-spacing:-.03em; line-height:1; display:flex; align-items:baseline; gap:4px; }
.price-amount .cur { font-size:24px; font-weight:600; }
.price-amount .per { font-size:15px; font-weight:500; color:var(--muted); }
.price-card.featured .price-amount .per { color:rgba(255,255,255,.7); }
.price-desc { font-size:14.5px; line-height:1.55; color:var(--muted); margin:14px 0 26px; }
.price-divider { height:1px; background:var(--rule); margin-bottom:24px; }
.price-card.featured .price-divider { background:rgba(255,255,255,.18); }
.price-feat { display:flex; flex-direction:column; gap:14px; margin-bottom:30px; flex:1; }
.price-feat li { display:flex; align-items:flex-start; gap:11px; font-size:14.5px; line-height:1.4; }
.price-feat li svg { width:19px; height:19px; color:var(--brand); flex-shrink:0; margin-top:1px; }
.price-card.featured .price-feat li svg { color:var(--brand-tint-strong); }
/* time-based rate rows */
.price-rates { display:flex; flex-direction:column; margin-bottom:28px; flex:1; }
.price-rates li { display:flex; justify-content:space-between; align-items:baseline; gap:14px; padding:14px 0; border-bottom:1px solid var(--rule); }
.price-rates li:first-child { border-top:1px solid var(--rule); }
.price-card.featured .price-rates li { border-color:rgba(255,255,255,.16); }
.price-rates .rt-label { font-size:14.5px; line-height:1.3; }
.price-rates .rt-label small { display:block; font-size:12px; color:var(--muted); margin-top:2px; }
.price-card.featured .price-rates .rt-label small { color:rgba(255,255,255,.65); }
.price-rates .rt-price { font-size:18px; font-weight:700; letter-spacing:-.02em; font-variant-numeric:tabular-nums; white-space:nowrap; }
.price-note { text-align:center; margin-top:34px; font-size:14px; color:var(--muted); }
.price-note b { color:var(--ink); }
@media (max-width:860px){ .pricing-grid { grid-template-columns:1fr; } }

/* ---- COVERAGE / RESPONSE MAP ---- */
.coverage { padding:100px 0; }
.coverage-grid { display:grid; grid-template-columns:1fr 1.05fr; gap:64px; align-items:center; }
.coverage-copy .eyebrow { margin-bottom:18px; }
.coverage-copy .sec-title { margin-bottom:20px; }
.coverage-copy .sec-sub { margin-bottom:30px; }
.coverage-stats { display:grid; grid-template-columns:1fr 1fr; gap:22px; margin-bottom:30px; }
.coverage-stat { padding:20px 22px; border:1px solid var(--rule); border-radius:16px; background:var(--bg); }
.coverage-stat .num { font-size:34px; font-weight:700; letter-spacing:-.03em; color:var(--brand-deep); line-height:1; font-variant-numeric:tabular-nums; }
.coverage-stat .lbl { font-size:13.5px; color:var(--muted); margin-top:8px; }
.coverage-regions { display:flex; flex-wrap:wrap; gap:9px; }
.coverage-regions span { font-size:13px; font-weight:500; padding:8px 14px; border-radius:999px; background:var(--surface); border:1px solid var(--rule); }

/* map */
.map-card { position:relative; border-radius:24px; overflow:hidden; background:var(--surface); border:1px solid var(--rule); aspect-ratio:1/1; box-shadow:0 30px 60px -34px var(--shadow); }
.map-svg { width:100%; height:100%; display:block; }
.map-blob { fill:var(--surface-2); stroke:var(--brand-tint-strong); stroke-width:1.5; }
.map-ring { fill:none; stroke:var(--brand); opacity:.5; }
.map-ring.r2 { opacity:.28; }
.map-ring.r3 { opacity:.14; }
.map-pin { fill:var(--brand-deep); }
.map-pin-pulse { fill:var(--brand); transform-origin:center; animation:mapPulse 2.4s ease-out infinite; }
@keyframes mapPulse { 0%{ r:6; opacity:.6;} 100%{ r:34; opacity:0;} }
.map-node { fill:var(--brand); }
.map-legend { position:absolute; left:20px; bottom:20px; background:var(--bg); border:1px solid var(--rule); border-radius:14px; padding:14px 16px; box-shadow:0 14px 30px -14px var(--shadow); }
.map-legend .row { display:flex; align-items:center; gap:9px; font-size:13px; }
.map-legend .row + .row { margin-top:8px; }
.map-legend .dot { width:10px; height:10px; border-radius:50%; }
.map-badge { position:absolute; top:20px; right:20px; background:var(--brand-deep); color:var(--brand-ink); border-radius:14px; padding:12px 16px; box-shadow:0 14px 30px -14px var(--shadow); }
.map-badge .num { font-size:24px; font-weight:700; letter-spacing:-.02em; }
.map-badge .lbl { font-size:11.5px; opacity:.8; text-transform:uppercase; letter-spacing:.06em; margin-top:2px; }
@media (max-width:920px){ .coverage-grid { grid-template-columns:1fr; gap:44px; } }

/* ---- FAQ ---- */
.faq { padding:100px 0; }
.faq-grid { display:grid; grid-template-columns:0.8fr 1.2fr; gap:60px; align-items:start; }
.faq-intro .eyebrow { margin-bottom:18px; }
.faq-intro .sec-title { margin-bottom:18px; }
.faq-intro .sec-sub { margin-bottom:26px; }
.faq-list { display:flex; flex-direction:column; gap:0; }
.faq-item { border-bottom:1px solid var(--rule); }
.faq-item:first-child { border-top:1px solid var(--rule); }
.faq-q { width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px; text-align:left;
  padding:24px 0; font-size:18px; font-weight:600; letter-spacing:-.015em; }
.faq-q .ic { width:30px; height:30px; flex-shrink:0; border-radius:50%; background:var(--surface); display:grid; place-items:center; transition:background .2s, transform .3s; }
.faq-q .ic svg { width:16px; height:16px; transition:transform .3s; }
.faq-item.open .faq-q .ic { background:var(--brand-deep); color:var(--brand-ink); }
.faq-item.open .faq-q .ic svg { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-item.open .faq-a { max-height:240px; }
.faq-a p { padding:0 0 24px; font-size:15.5px; line-height:1.65; color:var(--muted); max-width:560px; }
@media (max-width:860px){ .faq-grid { grid-template-columns:1fr; gap:36px; } }

/* ---- BIG CTA ---- */
.cta-banner { padding:0 0 100px; }
.cta-inner { background:var(--brand-deep); color:var(--brand-ink); border-radius:30px; padding:72px 60px; text-align:center; position:relative; overflow:hidden; }
.cta-inner::before { content:''; position:absolute; width:340px; height:340px; border-radius:50%; background:var(--brand); opacity:.18; top:-140px; right:-80px; }
.cta-inner::after { content:''; position:absolute; width:240px; height:240px; border-radius:50%; background:var(--brand); opacity:.12; bottom:-120px; left:-60px; }
.cta-inner .eyebrow { color:var(--brand-tint-strong); justify-content:center; position:relative; }
.cta-inner .eyebrow::before, .cta-inner .eyebrow::after { background:var(--brand-tint-strong); }
.cta-inner h2 { font-size:clamp(34px,4.5vw,52px); font-weight:700; letter-spacing:-.03em; line-height:1.05; margin:18px 0 18px; position:relative; text-wrap:balance; }
.cta-inner p { font-size:18px; line-height:1.55; opacity:.85; max-width:520px; margin:0 auto 34px; position:relative; }
.cta-actions { display:flex; gap:14px; justify-content:center; position:relative; flex-wrap:wrap; }
@media (max-width:720px){ .cta-inner { padding:56px 28px; } }

/* ---- SILO QUICK-LINKS (strip under hero: parent hub + siblings) ---- */
.silo-links{display:flex;flex-wrap:wrap;align-items:center;gap:8px 14px;padding:14px 0;border-bottom:1px solid var(--line,#e2e8f0);font-size:14px}
.silo-links .sl-label{font-weight:600;color:var(--muted,#64748b);text-transform:uppercase;font-size:11px;letter-spacing:.08em}
.silo-links a{color:var(--brand,#0f5e6b);text-decoration:none;padding:4px 10px;border:1px solid var(--line,#e2e8f0);border-radius:999px;white-space:nowrap}
.silo-links a:hover{background:var(--brand-soft,#e6f2f4)}
.silo-links a[aria-current="page"]{background:var(--brand,#0f5e6b);color:#fff;border-color:var(--brand,#0f5e6b)}

/* ---- 3-STEP PROCESS (template block 8; ordered list grid) ---- */
.steps-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px;list-style:none;margin:0;padding:0;counter-reset:none}
.steps-grid li{background:var(--card,#fff);border:1px solid var(--line,#e2e8f0);border-radius:12px;padding:20px 22px;font-size:15px;line-height:1.55}
