/* =========================================================================
   Blockage Busters satellite network — stylesheet
   Extracted from the approved design export (inline styles) into reusable
   tokens and component classes. Ports the design 1:1; no redesign.
   Fonts are self-hosted (assets/fonts/); the .woff2 files are added in the
   assets/perf pass — until then the system fallback stack renders.
   ========================================================================= */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  --navy:        #0a1a52;
  --navy-2:      #143390;  /* hero gradient foot */
  --navy-deep:   #081444;  /* footer */
  --blue:        #1343BF;
  --blue-dark:   #0d329b;
  --green:       #3FD973;  /* accent tick / dot */
  --green-cta:   #0CAF38;  /* WhatsApp button */
  --green-cta-2: #0a9530;
  --bg:          #f6f7f9;
  --panel:       #f2f6ff;
  --panel-2:     #eef3fc;
  --text:        #14213a;
  --text-soft:   #3f4a63;
  --muted:       #5c6880;
  --muted-2:     #9fb0cc;
  --border:      #e4e8f0;
  --border-in:   #d7dce6;  /* form inputs */
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   16px;
  --radius-xl:   18px;
  --container:   1200px;
  --font-head:   'Archivo', Helvetica, Arial, sans-serif;
  --font-body:   'Instrument Sans', Helvetica, Arial, sans-serif;
}

/* ---- Self-hosted fonts (files dropped in during the perf pass) ---------- */
@font-face { font-family:'Archivo'; font-style:normal; font-weight:500 800; font-display:swap; src:url('/assets/fonts/archivo-var.woff2') format('woff2'); }
@font-face { font-family:'Instrument Sans'; font-style:normal; font-weight:400 600; font-display:swap; src:url('/assets/fonts/instrument-sans-var.woff2') format('woff2'); }

/* ---- Reset / base (from design head) ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; text-wrap: balance; }
p { text-wrap: pretty; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); text-decoration: underline; }
img { max-width: 100%; }
input, select, textarea, button { font: inherit; }

/* ---- Accessibility ------------------------------------------------------ */
.skip-link {
  position: absolute; left: 8px; top: -48px; z-index: 100;
  background: var(--navy); color: #fff; padding: 10px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; text-decoration: none; color: #fff; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Visually-hidden honeypot: off-screen, out of the tab order via markup. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.8); } }

/* ---- Layout helpers ----------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.container--mid { max-width: 1000px; }
.container--narrow { max-width: 900px; }
.eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; cursor: pointer;
  border: none; border-radius: var(--radius); text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(19,67,191,.3); }
.btn--primary:hover { background: var(--blue-dark); color: #fff; }
.btn--white { background: #fff; color: var(--navy); box-shadow: 0 10px 26px rgba(0,0,0,.28); }
.btn--white:hover { background: #e8efff; color: var(--navy); }
.btn--wa { background: var(--green-cta); color: #052912; }
.btn--wa:hover { background: var(--green-cta-2); color: #052912; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--blue); color: #fff; }
.btn--outline { background: transparent; color: var(--navy); border: 1.5px solid #cfd6e3; }
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }

/* ============================ 1. Top bar ================================= */
.topbar { background: var(--navy); color: #cfd9ea; font-size: 13px; letter-spacing: .01em; }
.topbar__inner {
  display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center;
  justify-content: space-between; padding-top: 9px; padding-bottom: 9px;
}
.topbar__brand { color: #fff; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.topbar__brand:hover { color: var(--green); text-decoration: none; }
.topbar__meta { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar__meta > span { display: inline-flex; align-items: center; gap: 7px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; flex: none; }
.dot--pulse { animation: pulseDot 1.8s ease-in-out infinite; }
.stars { color: var(--green); letter-spacing: 2px; }

/* ============================ 2. Header ================================== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e6ee;
}
.site-header__inner {
  display: flex; gap: 18px; align-items: center; justify-content: space-between;
  flex-wrap: wrap; padding-top: 14px; padding-bottom: 14px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 44px; width: auto; display: block; }
.nav { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.nav__link { padding: 10px 12px; color: #35415c; font-weight: 500; font-size: 15px; }
.nav__link:hover { color: var(--navy); text-decoration: none; }
.nav .btn { font-size: 15px; }
.nav .btn--outline { padding: 12px 16px; border-radius: var(--radius-sm); }
.nav .btn--primary { padding: 12px 18px; border-radius: var(--radius-sm); }

/* ============================ 3. Hero =================================== */
.hero { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; }
.hero__inner {
  padding-top: 56px; padding-bottom: 64px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 44px; align-items: start;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(12,175,56,.18); border: 1px solid rgba(63,217,115,.5);
  color: var(--green); padding: 7px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 62px); line-height: 1.02; letter-spacing: -.035em;
  font-weight: 800; margin: 20px 0 0;
}
.hero h1 .accent { color: var(--green); }
.hero__lede {
  font-size: clamp(17px, 2vw, 20px); line-height: 1.55; color: #c3cfe2;
  max-width: 560px; margin: 20px 0 0;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; }
.hero__ctas .btn { padding: 19px 24px; border-radius: 13px; font-size: 19px; min-height: 60px; letter-spacing: -.01em; }
.hero__ctas .btn--call { flex: 1 1 230px; }
.hero__ctas .btn--wa { flex: 1 1 180px; }
.ticks {
  list-style: none; padding: 0; margin: 30px 0 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 12px 20px;
}
.tick { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: #e7edf7; font-weight: 500; }
.tick::before { content: "✓"; color: var(--green); font-weight: 700; }

/* Quote card */
.quote-card {
  background: #fff; border-radius: var(--radius-xl); padding: 26px;
  box-shadow: 0 24px 60px rgba(6,16,58,.45); color: var(--text);
}
.quote-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.quote-card__head h2 { font-size: 25px; letter-spacing: -.025em; font-weight: 800; }
.pill-ok { font-size: 12.5px; font-weight: 600; color: #0a7a28; background: #e6f9ec; padding: 5px 10px; border-radius: 999px; }
.quote-card__sub { color: var(--muted); font-size: 14.5px; margin: 8px 0 18px; line-height: 1.5; }
.quote-form { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; }
.field > span { font-size: 13px; font-weight: 600; color: #35415c; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.field input, .field select, .field textarea {
  width: 100%; min-width: 0; padding: 14px; border: 1.5px solid var(--border-in);
  border-radius: 10px; background: #fbfcfe; min-height: 48px;
}
.field select { appearance: none; }
.field input[name="postcode"] { text-transform: uppercase; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
}
.quote-form .btn--submit {
  margin-top: 4px; padding: 18px; border-radius: var(--radius); font-size: 18px; min-height: 58px;
}
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin: 2px 0 0; line-height: 1.5; }
.form-note a { font-weight: 700; }
.form-error { background: #fdecec; border: 1px solid #f5c6c6; color: #a11212; font-size: 13.5px; border-radius: 10px; padding: 11px 13px; line-height: 1.45; }

/* Success state */
.quote-success { padding: 30px 6px; text-align: center; }
.quote-success__check {
  width: 56px; height: 56px; border-radius: 50%; background: #e6f9ec; color: #0a7a28;
  display: grid; place-items: center; font-size: 26px; margin: 0 auto 16px;
}
.quote-success h2 { font-size: 24px; letter-spacing: -.02em; }
.quote-success p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 10px 0 20px; }
.quote-success .btn { padding: 15px 22px; border-radius: 11px; }

/* ============================ 4. Stats bar ============================== */
.stats { background: #fff; border-bottom: 1px solid #e7eaf1; }
.stats__inner {
  padding-top: 30px; padding-bottom: 30px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 26px;
}
.stat { display: flex; gap: 14px; align-items: flex-start; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: 27px; color: var(--blue); line-height: 1; }
.stat__label { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; }
.stat__sub { font-size: 13.5px; color: var(--muted); }

/* ============================ 5. Emergency tips ========================= */
.emergency { background: var(--panel); border-bottom: 1px solid #dbe5fb; }
.emergency__inner { padding-top: 46px; padding-bottom: 46px; }
.emergency__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 34px; align-items: start; }
.emergency h2 { font-size: clamp(27px, 3.4vw, 36px); letter-spacing: -.03em; margin: 10px 0 0; line-height: 1.1; }
.emergency__intro { color: #45506b; font-size: 16px; line-height: 1.6; margin: 14px 0 0; max-width: 440px; }
.emergency .btn { margin-top: 20px; padding: 16px 24px; font-size: 17px; min-height: 54px; }
.tips { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.tip { background: #fff; border: 1px solid #dbe5fb; border-radius: 13px; padding: 17px 19px; display: flex; gap: 14px; align-items: flex-start; }
.tip__num { flex: 0 0 auto; width: 27px; height: 27px; border-radius: var(--radius-sm); background: var(--navy); color: var(--green); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 14px; }
.tip__text { font-size: 15.5px; line-height: 1.5; color: #35415c; }
.tip__text strong { color: var(--navy); }

/* ============================ 6. Services =============================== */
.services { background: var(--bg); }
.services__inner { padding-top: 66px; padding-bottom: 66px; }
.services__head { max-width: 680px; }
.services__head h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -.035em; margin: 12px 0 0; line-height: 1.05; }
.services__head p { font-size: 17px; line-height: 1.6; color: #4a5570; margin: 16px 0 0; }
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr)); gap: 18px; margin-top: 34px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px; display: block; color: var(--text);
  transition: transform .16s ease, box-shadow .16s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(10,26,82,.12); border-color: #c9d6ee; text-decoration: none; color: var(--text); }
.service-card__badge { width: 44px; height: 44px; border-radius: var(--radius); background: var(--panel-2); color: var(--blue); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 16px; }
.service-card h3 { font-size: 19.5px; letter-spacing: -.02em; margin: 16px 0 0; line-height: 1.2; }
.service-card p { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 9px 0 0; }
.service-card__cta { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--blue); }

/* ============================ 7. How it works ========================== */
.how { background: #fff; }
.how__inner { padding-top: 66px; padding-bottom: 66px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.how h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -.035em; margin: 12px 0 0; line-height: 1.05; }
.how__intro { font-size: 17px; line-height: 1.6; color: #4a5570; margin: 16px 0 0; max-width: 420px; }
.callout { margin-top: 26px; padding: 20px; border-radius: var(--radius-lg); background: var(--bg); border: 1px solid var(--border); }
.callout__title { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.callout p { font-size: 15px; color: var(--muted); line-height: 1.55; margin: 7px 0 0; }
.steps { display: grid; gap: 14px; }
.step { display: flex; gap: 18px; align-items: flex-start; padding: 22px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: #fbfcfe; }
.step__num { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--green); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 19px; }
.step h3 { font-size: 19px; letter-spacing: -.02em; line-height: 1.2; }
.step p { font-size: 15.5px; line-height: 1.55; color: var(--muted); margin: 8px 0 0; }

/* ============================ 8. Reviews =============================== */
.reviews { background: var(--navy); color: #fff; }
.reviews__inner { padding-top: 66px; padding-bottom: 66px; }
.reviews__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 22px; flex-wrap: wrap; }
.reviews__head .eyebrow { color: var(--green); }
.reviews__head h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -.035em; margin: 12px 0 0; line-height: 1.05; }
.reviews__link { color: var(--green); font-weight: 600; font-size: 15px; }
.reviews__link:hover { color: #fff; }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-top: 32px; }
.review { margin: 0; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); padding: 24px; }
.review__stars { color: var(--green); letter-spacing: 3px; font-size: 15px; }
.review blockquote { margin: 14px 0 0; font-size: 16px; line-height: 1.6; color: #e7edf7; }
.review figcaption { margin-top: 16px; font-size: 14px; color: var(--muted-2); font-weight: 600; }

/* ============================ 9. Long-form prose ======================= */
.prose { background: #fff; }
.prose__inner { padding-top: 66px; padding-bottom: 66px; }
.prose h2 { font-size: clamp(28px, 3.6vw, 38px); letter-spacing: -.032em; line-height: 1.1; }
.prose h3 { font-size: 23px; letter-spacing: -.025em; margin: 34px 0 0; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--text-soft); margin: 16px 0 0; }
.prose p.lead { margin-top: 18px; }
.van-feature {
  margin: 36px 0 6px; border-radius: var(--radius-xl);
  background: linear-gradient(115deg, var(--panel-2) 0%, #f7faff 60%, #fff 100%);
  border: 1px solid #e0e7f5; padding: 26px 28px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; align-items: center;
}
.van-feature p { font-size: 16.5px; line-height: 1.6; color: #35415c; margin: 10px 0 0; }
.van-feature img { width: 100%; height: auto; display: block; }

/* ============================ 10. Assurances =========================== */
.assurances { margin: 38px 0 6px; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.assurance { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; background: #fff; display: flex; flex-direction: column; gap: 12px; }
.assurance__icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; }
.assurance__icon--blue { background: var(--blue); }
.assurance__icon--green { background: var(--green-cta); }
.assurance__icon img { width: 30px; height: 30px; display: block; }
.assurance__title { font-family: var(--font-head); font-weight: 700; font-size: 17px; letter-spacing: -.015em; color: var(--navy); }
.assurance p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ============================ 11. Coverage ============================= */
.coverage {
  margin-top: 38px; padding: 26px; border-radius: var(--radius-lg);
  background: var(--bg); border: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; align-items: center;
}
.coverage__map { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 4px 0; }
.coverage__map img { width: 100%; max-width: 240px; height: auto; display: block; }
.coverage__map-label { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: #35415c; }
.coverage__map-label .dot { width: 13px; height: 13px; background: var(--green-cta); }
.coverage h3 { font-size: 20px; letter-spacing: -.02em; margin: 0; }
.coverage__lead { font-size: 15.5px; line-height: 1.6; color: var(--muted); margin: 10px 0 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: #fff; border: 1px solid #dde3ee; border-radius: 999px; padding: 8px 14px; font-size: 14px; font-weight: 500; color: #35415c; }
.coverage__note { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 16px 0 0; }

/* ============================ 12. FAQ ================================== */
.faq { background: var(--bg); }
.faq__inner { padding-top: 66px; padding-bottom: 66px; }
.faq h2 { font-size: clamp(30px, 4vw, 42px); letter-spacing: -.035em; margin: 12px 0 26px; line-height: 1.05; }
.faq__list { display: grid; gap: 10px; }
.faq__item { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 4px 22px; }
.faq__item summary { list-style: none; cursor: pointer; display: flex; gap: 16px; align-items: center; justify-content: space-between; padding: 19px 0; font-family: var(--font-head); font-weight: 700; font-size: 17.5px; letter-spacing: -.015em; color: var(--navy); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq-plus { flex: 0 0 auto; width: 26px; height: 26px; border-radius: var(--radius-sm); background: var(--panel-2); color: var(--blue); display: grid; place-items: center; font-size: 17px; font-weight: 600; transition: transform .18s ease; }
.faq__item[open] .faq-plus { transform: rotate(45deg); }
.faq__answer { font-size: 16px; line-height: 1.65; color: #4a5570; margin: 0 0 20px; padding-right: 40px; }

/* ============================ 13. CTA band ============================= */
.cta-band { background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 72%); color: #fff; }
.cta-band__inner { padding-top: 64px; padding-bottom: 64px; text-align: center; }
.cta-band h2 { font-size: clamp(30px, 4.4vw, 46px); letter-spacing: -.035em; line-height: 1.05; }
.cta-band p { font-size: 18px; line-height: 1.6; color: #c3cfe2; max-width: 580px; margin: 16px auto 0; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.cta-band__btns .btn { padding: 19px 30px; border-radius: 13px; font-size: 20px; min-height: 62px; }
.cta-band__btns .btn--wa-ghost { background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.35); color: #fff; }
.cta-band__btns .btn--wa-ghost:hover { background: #fff; color: var(--navy); }
.cta-band__btns .btn--ghost { background: transparent; color: var(--green); }
.cta-band__btns .btn--ghost:hover { color: #fff; }

/* ============================ 14. Footer ============================== */
.site-footer { background: var(--navy-deep); color: var(--muted-2); }
.footer__grid { padding-top: 52px; padding-bottom: 34px; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 34px; }
.footer__brand-name { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: #fff; letter-spacing: -.02em; }
.footer__grid p { font-size: 14.5px; line-height: 1.65; margin: 12px 0 0; }
.footer__logo { display: inline-block; margin-top: 16px; background: #fff; border-radius: 10px; padding: 12px 16px; }
.footer__logo:hover { background: #eef3ff; text-decoration: none; }
.footer__logo img { height: 34px; width: auto; display: block; }
.footer__heading { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #fff; text-transform: uppercase; letter-spacing: .08em; }
.footer__list { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 9px; font-size: 14.5px; }
.footer__list a { color: var(--muted-2); }
.footer__list a:hover { color: #fff; }
.footer__phone { color: #fff !important; font-weight: 700; font-size: 17px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom-inner { padding: 18px 20px 22px; display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; font-size: 13px; }
.footer__bottom a { color: var(--muted-2); }
.footer__bottom a:hover { color: #fff; }

/* ============================ 15. Mobile sticky bar ==================== */
.mobile-bar__spacer { height: 78px; display: none; }
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none;
  background: rgba(8,20,68,.97); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.14); padding: 10px 12px; gap: 10px;
}
.mobile-bar .btn { flex: 1 1 0; padding: 15px 10px; border-radius: 11px; font-size: 16px; min-height: 52px; }
.mobile-bar .btn--ghost { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; }
.mobile-bar .btn--ghost:hover { background: var(--green); color: var(--navy); }

@media (max-width: 820px) {
  .mobile-bar { display: flex; }
  .mobile-bar__spacer { display: block; }
  .site-header .nav__link { display: none; }  /* keep the two call/WA CTAs, drop anchor links on small screens */
}
