/* ==========================================================================
   DStv Installer Bedfordview — Design System
   Palette derived from brand logo: deep navy + signal red.
   Type: Bricolage Grotesque (display) / Outfit (body) / IBM Plex Mono (data/labels)
   ========================================================================== */

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/BricolageGrotesque-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/BricolageGrotesque-Bold.ttf') format('truetype');
  font-weight: 700 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Bold.ttf') format('truetype');
  font-weight: 600 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('../fonts/IBMPlexMono-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('../fonts/IBMPlexMono-Bold.ttf') format('truetype');
  font-weight: 600 700; font-style: normal; font-display: swap;
}

:root {
  /* --- Brand palette (from logo) --- */
  --navy-950: #070f24;
  --navy-900: #0b1833;
  --navy-800: #142348;
  --navy-700: #1c3060;
  --navy-600: #2a4482;
  --red-700: #a5151b;
  --red-600: #d81f26;
  --red-500: #e83a3f;
  --paper: #f5f6fa;
  --paper-dim: #ebedf5;
  --white: #ffffff;
  --ink: #10131c;
  --steel-700: #454c5e;
  --steel-500: #6b7288;
  --steel-300: #a4aabd;
  --steel-200: #d5d8e3;
  --steel-100: #e9ebf1;
  --gold: #f0a93c;

  /* --- Semantic --- */
  --bg: var(--paper);
  --surface: var(--white);
  --text: var(--ink);
  --text-muted: var(--steel-700);
  --border: var(--steel-200);
  --brand: var(--navy-900);
  --accent: var(--red-600);

  /* --- Type --- */
  --font-display: 'Bricolage Grotesque', 'Arial Black', sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --fs-h1: clamp(2.25rem, 1.35rem + 3.6vw, 3.9rem);
  --fs-h2: clamp(1.7rem, 1.2rem + 2vw, 2.65rem);
  --fs-h3: clamp(1.3rem, 1.1rem + 0.8vw, 1.65rem);
  --fs-lead: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --fs-xs: 0.78rem;

  /* --- Space --- */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4.5rem; --sp-9: 6.5rem;

  --radius-sm: 8px; --radius-md: 14px; --radius-lg: 22px; --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(11,24,51,0.06), 0 1px 1px rgba(11,24,51,0.04);
  --shadow-md: 0 8px 24px rgba(11,24,51,0.10), 0 2px 6px rgba(11,24,51,0.06);
  --shadow-lg: 0 24px 60px rgba(7,15,36,0.18), 0 6px 16px rgba(7,15,36,0.08);
  --container: 1180px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture { max-width: 100%; display: block; height: auto; }
svg { width: 1em; height: 1em; max-width: 100%; flex-shrink: 0; vertical-align: -0.125em; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; color: var(--navy-900); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { color: var(--text-muted); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-5); }
@media (max-width: 640px) { .container { padding-inline: var(--sp-4); } }

section { padding-block: var(--sp-8); }
.section-tight { padding-block: var(--sp-6); }
.bg-surface { background: var(--surface); }
.bg-navy { background: var(--navy-900); color: var(--paper); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: var(--steel-300); }
.bg-dim { background: var(--paper-dim); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--red-600);
}
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--red-600); display: inline-block; }
.bg-navy .eyebrow { color: #ff8b8e; }

.section-head { max-width: 700px; margin-bottom: var(--sp-6); }
.section-head h2 { margin-top: var(--sp-2); }
.section-head p { margin-top: var(--sp-3); font-size: var(--fs-lead); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 0.85em 1.5em; border-radius: var(--radius-sm);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease);
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--red-600); color: var(--white); box-shadow: 0 6px 16px rgba(216,31,38,0.28); }
.btn-primary:hover { background: var(--red-700); box-shadow: 0 10px 22px rgba(216,31,38,0.34); }
.btn-navy { background: var(--navy-900); color: var(--white); }
.btn-navy:hover { background: var(--navy-800); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-navy { background: transparent; border-color: var(--navy-700); color: var(--navy-900); }
.btn-outline-navy:hover { background: var(--navy-900); color: var(--white); }
.btn-ghost { background: var(--white); color: var(--navy-900); border-color: var(--steel-200); }
.btn-ghost:hover { border-color: var(--navy-700); }
.btn-block { width: 100%; }
.btn-lg { padding: 1em 1.9em; font-size: 1.05rem; }
.btn-sm { padding: 0.6em 1.1em; font-size: 0.88rem; }
.btn svg { width: 1.05em; height: 1.05em; flex-shrink: 0; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }

/* ---------- Header ---------- */
.topbar {
  background: var(--navy-950); color: var(--steel-300); font-family: var(--font-mono); font-size: var(--fs-xs);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; padding-block: 8px; gap: var(--sp-4); }
.topbar a { color: var(--steel-300); }
.topbar a:hover { color: var(--white); }
.topbar-left { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
.topbar-left span, .topbar-left a { display: inline-flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: var(--sp-4); }

header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid var(--steel-200);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding-block: 10px; gap: var(--sp-5); }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 56px; width: auto; }
.brand-text { display: none; }
.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; }
.main-nav li:not(:last-child) { margin-right: var(--sp-6); } /* margin instead of gap for broadest compatibility */
.main-nav a { font-weight: 600; font-size: 0.96rem; color: var(--navy-800); position: relative; padding: 6px 0; }
.main-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--red-600); transition: right .2s var(--ease); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--red-600); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: -16px; margin-top: 14px; min-width: 250px;
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  border: 1px solid var(--steel-100); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .18s var(--ease);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.92rem; font-weight: 500; }
.dropdown a:hover { background: var(--paper-dim); color: var(--red-600); }
.dropdown a::after { display: none; }
.header-cta { display: flex; align-items: center; gap: var(--sp-3); }
.header-cta .btn-sm-only { display: none; }
.nav-toggle { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--radius-sm); border: 1.5px solid var(--steel-200); }
.nav-toggle svg { width: 22px; height: 22px; }

@media (min-width: 1040px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .brand-text { display: block; }
}

.mobile-nav { display: none; position: fixed; inset: 0; z-index: 200; background: var(--navy-950); color: var(--white); overflow-y: auto; }
.mobile-nav.open { display: block; }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid var(--navy-800); }
.mobile-nav-close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); border: 1.5px solid var(--navy-700); }
.mobile-nav ul { padding: var(--sp-4) var(--sp-5); display: flex; flex-direction: column; }
.mobile-nav li { border-bottom: 1px solid var(--navy-800); }
.mobile-nav a { display: block; padding: 16px 4px; font-size: 1.15rem; font-weight: 600; font-family: var(--font-display); }
.mobile-nav .sub-list { padding-left: var(--sp-4); display: flex; flex-direction: column; }
.mobile-nav .sub-list a { font-size: 0.95rem; font-weight: 500; padding: 11px 4px; color: var(--steel-300); font-family: var(--font-body); }
.mobile-nav-cta { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); }

/* ---------- Hero + signal motif ---------- */
.hero { position: relative; background: var(--navy-900); color: var(--white); overflow: hidden; padding-block: var(--sp-8) var(--sp-9); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-7); align-items: center; position: relative; z-index: 2; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18); padding: 7px 16px; border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.06em; margin-bottom: var(--sp-5);
}
.hero-badge svg { width: 15px; height: 15px; color: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: var(--sp-4); }
.hero h1 .accent { color: var(--red-500); }
.hero .lead { font-size: var(--fs-lead); color: var(--steel-300); max-width: 46ch; margin-bottom: var(--sp-6); }
.hero-stats { display: flex; flex-wrap: wrap; gap: var(--sp-6); margin-top: var(--sp-7); padding-top: var(--sp-6); border-top: 1px solid rgba(255,255,255,0.14); }
.hero-stat { margin-right: var(--sp-6); }
.hero-stat b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--white); }
.hero-stat span { font-size: var(--fs-xs); color: var(--steel-300); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-mono); }

.radar-wrap { position: relative; aspect-ratio: 1/1; max-width: 480px; margin-inline: auto; display: flex; align-items: center; justify-content: center; }
.radar-ring { position: absolute; border: 1.5px solid rgba(232,58,63,0.35); border-radius: 50%; }
.radar-ring.r1 { inset: 32%; }
.radar-ring.r2 { inset: 20%; }
.radar-ring.r3 { inset: 8%; }
.radar-ring.r4 { inset: -4%; border-color: rgba(232,58,63,0.18); }
.radar-core {
  position: relative; z-index: 2; width: 32%; aspect-ratio: 1/1; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--red-500), var(--red-700) 70%);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 10px rgba(232,58,63,0.12), 0 20px 45px rgba(216,31,38,0.35);
}
.radar-core img { width: 62%; border-radius: 20%; box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.radar-pulse { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid var(--red-500); opacity: 0; animation: pulse 3.6s var(--ease) infinite; }
.radar-pulse.p2 { animation-delay: 1.2s; }
.radar-pulse.p3 { animation-delay: 2.4s; }
@keyframes pulse { 0% { transform: scale(0.32); opacity: 0.55; } 100% { transform: scale(1.08); opacity: 0; } }
.radar-node {
  position: absolute; display: flex; align-items: center; gap: 6px;
  background: rgba(11,24,51,0.85); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(6px);
  padding: 6px 12px 6px 8px; border-radius: var(--radius-pill); font-family: var(--font-mono); font-size: 0.72rem; color: var(--white);
  white-space: nowrap; box-shadow: var(--shadow-sm);
}
.radar-node::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,0.25); }
.radar-node.n1 { top: 2%; left: 50%; transform: translateX(-50%); }
.radar-node.n2 { top: 20%; right: 2%; }
.radar-node.n3 { bottom: 14%; right: 4%; }
.radar-node.n4 { bottom: 8%; left: 2%; }
.radar-node.n5 { top: 32%; left: 3%; }
@media (max-width: 959px) { .radar-wrap { max-width: 340px; margin-top: var(--sp-6); } .radar-node { font-size: 0.62rem; padding: 5px 9px 5px 6px; } }
@media (max-width: 420px) { .radar-node.n5 { display: none; } }

.signal-divider { position: relative; height: 1px; }
.signal-divider svg { position: absolute; opacity: 0.5; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--steel-100); }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: var(--sp-6); justify-content: space-between; padding-block: var(--sp-5); }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600; color: var(--navy-800); }
.trust-item svg { width: 20px; height: 20px; color: var(--red-600); flex-shrink: 0; }

/* ---------- Cards: services ---------- */
.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.cluster-label { display: flex; align-items: center; gap: var(--sp-3); margin: var(--sp-7) 0 var(--sp-5); }
.cluster-label span { font-family: var(--font-mono); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--steel-500); white-space: nowrap; }
.cluster-label::after { content: ''; height: 1px; flex: 1; background: var(--steel-200); }
.cluster-label:first-of-type { margin-top: 0; }

.svc-card {
  background: var(--white); border: 1px solid var(--steel-100); border-radius: var(--radius-lg);
  padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3);
  transition: box-shadow .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
  height: 100%; position: relative;
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.svc-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--navy-900); display: flex; align-items: center; justify-content: center; color: var(--white); }
.svc-icon svg { width: 26px; height: 26px; }
.svc-card.is-new .svc-icon { background: var(--red-600); }
.svc-tag { position: absolute; top: var(--sp-5); right: var(--sp-5); font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: .06em; background: var(--paper-dim); color: var(--steel-700); padding: 4px 10px; border-radius: var(--radius-pill); }
.svc-card.is-new .svc-tag { background: rgba(216,31,38,0.1); color: var(--red-600); }
.svc-card h3 { margin-top: var(--sp-2); }
.svc-card p { font-size: 0.96rem; flex: 1; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.92rem; color: var(--navy-900); margin-top: var(--sp-2); }
.svc-link svg { width: 16px; height: 16px; transition: transform .18s var(--ease); }
.svc-card:hover .svc-link svg { transform: translateX(4px); }

/* ---------- Feature list (why choose us) ---------- */
.feature { display: flex; gap: var(--sp-4); }
.feature-icon { width: 46px; height: 46px; border-radius: var(--radius-md); background: rgba(216,31,38,0.1); color: var(--red-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.08rem; margin-bottom: 4px; }
.feature p { font-size: 0.92rem; }
.bg-navy .feature-icon { background: rgba(255,255,255,0.1); color: var(--red-500); }

/* ---------- Process ---------- */
.process-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); position: relative; }
@media (min-width: 860px) { .process-row { grid-template-columns: repeat(4, 1fr); } }
.process-step { position: relative; }
.process-num { font-family: var(--font-display); font-size: 2.6rem; color: var(--steel-200); line-height: 1; margin-bottom: var(--sp-3); }
.bg-navy .process-num { color: var(--navy-700); }
.process-step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.process-step p { font-size: 0.92rem; }

/* ---------- Pricing ---------- */
.price-card { background: var(--white); border: 1.5px solid var(--steel-200); border-radius: var(--radius-lg); padding: var(--sp-6); display: flex; flex-direction: column; height: 100%; }
.price-card.featured { border-color: var(--red-600); box-shadow: var(--shadow-md); position: relative; }
.price-badge { position: absolute; top: -13px; left: var(--sp-6); background: var(--red-600); color: var(--white); font-size: var(--fs-xs); font-weight: 700; padding: 4px 14px; border-radius: var(--radius-pill); }
.price-kicker { font-family: var(--font-mono); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel-500); }
.price-amount { font-family: var(--font-display); font-size: 2.6rem; color: var(--navy-900); margin: 6px 0 var(--sp-4); }
.price-amount span { font-size: 1rem; font-family: var(--font-body); font-weight: 500; color: var(--steel-500); }
.price-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--sp-5); flex: 1; }
.price-list li { display: flex; gap: 8px; font-size: 0.92rem; color: var(--text); }
.price-list svg { width: 18px; height: 18px; color: var(--red-600); flex-shrink: 0; margin-top: 2px; }
.price-note { text-align: center; font-size: 0.85rem; color: var(--steel-500); margin-top: var(--sp-4); }

/* ---------- Testimonials ---------- */
.rating-line { display: flex; align-items: center; gap: 10px; margin-bottom: var(--sp-3); }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }
.testi-card { background: var(--white); border: 1px solid var(--steel-100); border-radius: var(--radius-lg); padding: var(--sp-6); height: 100%; display: flex; flex-direction: column; }
.testi-tag { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--red-600); text-transform: uppercase; letter-spacing: .05em; margin-bottom: var(--sp-3); }
.testi-card p.quote { color: var(--text); font-size: 1rem; flex: 1; }
.testi-who { display: flex; align-items: center; gap: 12px; margin-top: var(--sp-5); }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy-800); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }
.testi-who b { display: block; font-size: 0.94rem; color: var(--navy-900); }
.testi-who span { font-size: 0.82rem; color: var(--steel-500); }

/* ---------- Location cards ---------- */
.loc-card {
  background: var(--white); border: 1px solid var(--steel-100); border-radius: var(--radius-lg);
  padding: var(--sp-5); display: flex; flex-direction: column; gap: 8px; height: 100%;
  transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}
.loc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.loc-card-top { display: flex; align-items: center; justify-content: space-between; }
.loc-zone { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: .05em; color: var(--steel-500); }
.loc-status { font-family: var(--font-mono); font-size: 0.68rem; display: inline-flex; align-items: center; gap: 5px; color: #16a34a; font-weight: 600; }
.loc-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #16a34a; }
.loc-card h3 { font-size: 1.15rem; }
.loc-card .dist { font-family: var(--font-mono); font-size: 0.85rem; color: var(--steel-500); }
.loc-card .svc-link { margin-top: auto; }

.suburb-pillgrid { display: flex; flex-wrap: wrap; gap: 8px; }
.suburb-pillgrid a, .suburb-pillgrid span { font-size: 0.85rem; background: var(--paper-dim); color: var(--navy-800); padding: 7px 14px; border-radius: var(--radius-pill); font-weight: 500; }
.suburb-pillgrid a:hover { background: var(--navy-900); color: var(--white); }

.zone-block { background: var(--white); border: 1px solid var(--steel-100); border-radius: var(--radius-lg); padding: var(--sp-5); }
.zone-block h3 { font-size: 1.05rem; margin-bottom: var(--sp-3); display: flex; align-items: center; gap: 8px; }
.zone-block h3 svg { width: 18px; height: 18px; color: var(--red-600); }
.zone-block ul { display: flex; flex-direction: column; gap: 9px; }
.zone-block li { font-size: 0.92rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.zone-block li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--steel-300); flex-shrink: 0; }

.response-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--steel-100); gap: var(--sp-4); }
.response-row:last-child { border-bottom: none; }
.response-row .zones { font-weight: 600; font-size: 0.94rem; color: var(--navy-900); }
.response-row .time { font-family: var(--font-mono); font-size: 0.85rem; background: var(--paper-dim); padding: 5px 12px; border-radius: var(--radius-pill); white-space: nowrap; color: var(--navy-800); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--steel-200); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-5) 2px; text-align: left; font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; color: var(--navy-900); }
.faq-q .plus { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--steel-300); flex-shrink: 0; position: relative; transition: all .2s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; background: var(--navy-800); top: 50%; left: 50%; transform: translate(-50%,-50%); transition: all .2s var(--ease); }
.faq-q .plus::before { width: 10px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 10px; }
.faq-item.open .faq-q .plus { background: var(--red-600); border-color: var(--red-600); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: var(--white); }
.faq-item.open .faq-q .plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s var(--ease); }
.faq-a-inner { padding: 0 2px var(--sp-5); font-size: 0.96rem; }
.faq-a-inner p + p { margin-top: 10px; }

/* ---------- Blog ---------- */
.blog-card { background: var(--white); border: 1px solid var(--steel-100); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-thumb { aspect-ratio: 16/10; background: var(--navy-900); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.blog-thumb svg { width: 40%; height: 40%; opacity: 0.5; color: var(--red-500); }
.blog-body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; gap: 8px; }
.blog-meta { font-family: var(--font-mono); font-size: 0.72rem; color: var(--red-600); text-transform: uppercase; letter-spacing: .04em; }
.blog-card h3 { font-size: 1.12rem; }
.blog-card p { font-size: 0.92rem; flex: 1; }

.prose { max-width: 74ch; }
.prose h2 { margin-top: var(--sp-7); margin-bottom: var(--sp-3); }
.prose h3 { margin-top: var(--sp-6); margin-bottom: var(--sp-2); }
.prose p { margin-bottom: var(--sp-4); font-size: 1.02rem; color: var(--text); }
.prose ul, .prose ol { margin: 0 0 var(--sp-4) 0; display: flex; flex-direction: column; gap: 8px; }
.prose li { font-size: 1.02rem; color: var(--text); padding-left: 1.6em; position: relative; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px; border-radius: 50%; background: var(--red-600); }
.prose ol { counter-reset: item; }
.prose ol li { counter-increment: item; }
.prose ol li::before { content: counter(item) '.'; position: absolute; left: 0; font-family: var(--font-mono); font-weight: 700; color: var(--red-600); }
.callout { background: var(--paper-dim); border-left: 3px solid var(--red-600); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: var(--sp-5); margin: var(--sp-5) 0; }
.callout p { color: var(--text); margin: 0; font-size: 0.98rem; }
.callout p + p { margin-top: 8px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--steel-500); padding-block: var(--sp-4); }
.breadcrumb a { color: var(--steel-500); font-weight: 500; }
.breadcrumb a:hover { color: var(--red-600); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--navy-900); font-weight: 600; }
.bg-navy .breadcrumb, .bg-navy .breadcrumb a { color: var(--steel-300); }
.bg-navy .breadcrumb .current { color: var(--white); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--navy-900); color: var(--white); padding-block: var(--sp-6) var(--sp-8); position: relative; overflow: hidden; }
.page-hero h1 { color: var(--white); margin-top: var(--sp-3); max-width: 20ch; }
.page-hero .lead { color: var(--steel-300); font-size: var(--fs-lead); max-width: 60ch; margin-top: var(--sp-4); }
.page-hero-meta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-5); }
.meta-chip { font-family: var(--font-mono); font-size: 0.78rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); padding: 7px 14px; border-radius: var(--radius-pill); }

/* ---------- Stat row ---------- */
.stat-row { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-5); }
@media (min-width: 720px) { .stat-row { grid-template-columns: repeat(4,1fr); } }
.stat-box b { display: block; font-family: var(--font-display); font-size: 2.1rem; }
.stat-box span { font-family: var(--font-mono); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--red-600); color: var(--white); position: relative; overflow: hidden; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-band-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-6); position: relative; z-index: 1; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.5); }
.cta-band .btn-ghost { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.cta-band .btn-ghost:hover { background: var(--navy-950); }

/* ---------- Map ---------- */
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--steel-200); box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-7); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.form-field { margin-bottom: var(--sp-4); }
.form-field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy-800); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm); border: 1.5px solid var(--steel-200);
  background: var(--white); font-size: 0.98rem; transition: border-color .18s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--navy-700); outline: none; }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 0 var(--sp-4); }
@media (min-width: 560px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.contact-card-box { background: var(--white); border: 1px solid var(--steel-100); border-radius: var(--radius-lg); padding: var(--sp-6); }
.contact-info-item { display: flex; gap: var(--sp-4); padding-block: var(--sp-4); border-bottom: 1px solid var(--steel-100); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .feature-icon { background: var(--navy-900); color: var(--white); }
.contact-info-item b { display: block; color: var(--navy-900); font-size: 0.98rem; }
.contact-info-item a, .contact-info-item span.val { color: var(--text-muted); font-size: 0.92rem; }
.contact-info-item a:hover { color: var(--red-600); }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy-950); color: var(--steel-300); }
.footer-top { padding-block: var(--sp-8); display: grid; grid-template-columns: 1fr; gap: var(--sp-7); }
@media (min-width: 780px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }
.footer-brand img { height: 60px; margin-bottom: var(--sp-4); }
.footer-brand p { color: var(--steel-300); font-size: 0.92rem; max-width: 32ch; }
.footer-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: var(--sp-4); font-family: var(--font-mono); font-size: 0.75rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 8px 14px; border-radius: var(--radius-pill); }
.footer-badge svg { width: 14px; height: 14px; color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: var(--sp-5); }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--red-600); border-color: var(--red-600); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: var(--sp-4); }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.92rem; color: var(--steel-300); }
.footer-col a:hover { color: var(--white); }
.footer-col .muted { font-size: 0.8rem; color: var(--steel-500); margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-block: var(--sp-4); display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; justify-content: space-between; font-size: 0.82rem; color: var(--steel-500); }
.footer-bottom .legal-links { display: flex; gap: var(--sp-4); }
.footer-bottom a { color: var(--steel-500); }
.footer-bottom a:hover { color: var(--white); }

.sticky-mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: flex; background: var(--white); border-top: 1px solid var(--steel-200); box-shadow: 0 -6px 20px rgba(11,24,51,0.12); }
.sticky-mobile-cta a { flex: 1; text-align: center; padding: 14px; font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.sticky-mobile-cta a.call { background: var(--navy-900); color: var(--white); }
.sticky-mobile-cta a.wa { background: #25D366; color: var(--white); }
.sticky-mobile-cta svg { width: 18px; height: 18px; }
@media (min-width: 780px) { .sticky-mobile-cta { display: none; } }
body { padding-bottom: 62px; }
@media (min-width: 780px) { body { padding-bottom: 0; } }

.mobile-nav-close svg { width: 20px; height: 20px; }
.meta-chip svg { width: 14px; height: 14px; }
.sidebar-card h4 svg { width: 16px; height: 16px; color: var(--red-600); }
.dist svg { width: 14px; height: 14px; }
.radar-node svg { width: 12px; height: 12px; }

/* ---------- Misc utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--sp-5); }
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; background: var(--paper-dim); color: var(--navy-800); padding: 8px 14px; border-radius: var(--radius-pill); }
.chip svg { width: 15px; height: 15px; color: var(--red-600); }
.divider { height: 1px; background: var(--steel-200); border: 0; margin-block: var(--sp-7); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--red-600); color: var(--white); padding: 12px 20px; z-index: 999; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 700px) { .related-grid { grid-template-columns: repeat(3,1fr); } }
.two-col { display: grid; grid-template-columns: 1fr; gap: var(--sp-7); align-items: start; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1.5fr 1fr; } }
.sidebar-card { background: var(--white); border: 1px solid var(--steel-100); border-radius: var(--radius-lg); padding: var(--sp-5); position: sticky; top: 110px; }
.sidebar-card h4 { font-size: 1rem; margin-bottom: var(--sp-3); }
.sidebar-card ul { display: flex; flex-direction: column; gap: 10px; }
.sidebar-card li a { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 9px 0; border-bottom: 1px solid var(--steel-100); }
.sidebar-card li:last-child a { border-bottom: none; }
.sidebar-card li a:hover { color: var(--red-600); }

.gallery-strip { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-3); }
@media (min-width: 700px) { .gallery-strip { grid-template-columns: repeat(4,1fr); } }
.gallery-item { aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden; background: var(--navy-800); position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-cap { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(transparent, rgba(7,15,36,0.85)); color: var(--white); font-size: 0.78rem; padding: 20px 10px 8px; font-weight: 600; }
