/* =========================================================================
   SWAT Transport — styles.css
   Brand system matches the SWAT app + portal: GREEN accent (#0f7a52),
   near-black, Geist typeface. Light theme primary, dark theme toggle.

   Organized: Tokens → Base → Typography → Utilities → Buttons →
   Header/Nav → Hero → Stats → Services → Why → Coverage → Process →
   Testimonials → CTA → Contact → Footer → Reveal/Motion → Responsive

   To keep future edits consistent with the app brand, change colours ONLY
   in the TOKENS block below. Component rules read the tokens (and a few
   legacy aliases mapped to them), so recolouring happens in one place.
   ========================================================================= */

/* ---------- TOKENS: LIGHT (default / primary) ---------- */
:root {
  --bg:            #f6f7f8;
  --surface:       #ffffff;
  --surface-2:     #fafafa;
  --border:        #e5e7eb;
  --border-strong: #d1d5db;
  --text:          #0b0d0f;
  --text-2:        #4b5563;
  --text-3:        #6b7280;

  --accent:        #0f7a52;   /* BRAND GREEN — CTAs, links, stat numbers, active */
  --accent-hover:  #0a5c3d;
  --accent-soft:   #e6f4ee;
  --accent-text:   #0a5c3d;

  --amber:         #D4922E;   /* logo road centerline — dashed accents only */
  --coral:         #e0533d;   /* rare warm pop */
  --warning:       #b45309;
  --danger:        #b42318;
  --info:          #1d4ed8;

  --shadow-card:   0 4px 12px rgba(15,23,42,.08);
  --ring:          rgba(15,122,82,.40);

  /* Legacy aliases — existing component rules reference these; they resolve
     to the tokens above (and auto-follow the dark overrides). */
  --brand:         var(--accent);
  --brand-hover:   var(--accent-hover);
  --brand-2:       var(--amber);
  --bg-elevated:   var(--surface);
  --bg-subtle:     var(--surface-2);
  --text-muted:    var(--text-2);
  --success:       var(--accent);

  --maxw: 1200px;
  --radius-card: 12px;
  --radius-btn: 6px;

  --font-head: 'Geist', system-ui, -apple-system, sans-serif;
  --font-body: 'Geist', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --pad-section: 112px;
}

/* ---------- TOKENS: DARK ---------- */
:root[data-theme="dark"] {
  --bg:            #0b0d0f;
  --surface:       #1a1d20;
  --surface-2:     #1f2326;
  --border:        #1f2326;
  --border-strong: #2a2f34;
  --text:          #f6f7f8;
  --text-2:        #c9cdd2;
  --text-3:        #9ca3af;

  --accent:        #16a34a;
  --accent-hover:  #0f7a52;
  --accent-soft:   rgba(15,122,82,.15);
  --accent-text:   #16a34a;

  --amber:         #D4922E;

  --shadow-card:   none;
  --ring:          rgba(22,163,74,.45);
}

/* ---------- BASE / RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color .3s ease, color .3s ease;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

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

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--accent); color: #fff;
  padding: 10px 16px; border-radius: 8px;
  font-weight: 600; z-index: 200;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.08; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.25rem); }
h3 { font-size: 1.5rem; }
p  { color: var(--text-2); }

.text-brand { color: var(--accent); }

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ---------- LAYOUT UTILITIES ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: 24px; }
.section { padding-block: var(--pad-section); }
.section-alt { background: var(--surface); border-block: 1px solid var(--border); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 14px; }
.section-sub { font-size: 1.0625rem; color: var(--text-2); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.95rem;
  padding: 12px 22px; min-height: 44px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, transform .15s, color .2s;
  white-space: nowrap;
}
.btn-lg { padding: 15px 30px; font-size: 1rem; min-height: 52px; }
.btn-sm { padding: 9px 18px; min-height: 40px; font-size: 0.9rem; }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(15,122,82,0.22); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0; display: block;
}
.brand-word { font-family: var(--font-head); font-weight: 700; letter-spacing: 0.01em; font-size: 1.05rem; }
.brand-swat { color: var(--accent); }

.primary-nav ul { display: flex; gap: 30px; }
.primary-nav a { font-weight: 500; font-size: 0.95rem; color: var(--text-2); transition: color .2s; }
.primary-nav a:hover { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-2);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: color .2s, border-color .2s;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
/* Default (light) shows moon → click to go dark. Dark shows sun. */
.theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  cursor: pointer; position: relative;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--text);
  margin: 3px auto; transition: transform .25s, opacity .2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Mobile drawer */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(2px);
}
.mobile-drawer {
  position: fixed; top: 0; right: 0; z-index: 95;
  width: min(80vw, 320px); height: 100dvh;
  background: var(--surface); border-left: 1px solid var(--border);
  padding: 88px 28px 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.mobile-drawer[hidden], .drawer-backdrop[hidden] { display: none; }
.mobile-drawer nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer nav a {
  display: block; padding: 14px 12px; border-radius: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem;
}
.mobile-drawer nav a:hover { background: var(--surface-2); color: var(--accent); }
.drawer-cta { margin-top: 8px; }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(80px, 12vw, 150px);
  border-bottom: 1px solid var(--border);
}
/* Soft green radial glow */
.hero-glow {
  position: absolute; z-index: 0;
  top: -25%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; max-width: 140vw;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 20%, transparent), color-mix(in srgb, var(--accent) 6%, transparent) 55%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}
/* Faint grid + a thin amber dashed line echoing the logo road */
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 30%, transparent 75%);
  opacity: .6;
}
.hero::after {
  content: ''; position: absolute; z-index: 0; top: 0; bottom: 0; left: 50%;
  width: 2px; transform: translateX(-50%);
  background: repeating-linear-gradient(var(--amber) 0 9px, transparent 9px 22px);
  opacity: .14; pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; }
.hero h1 { margin-bottom: 22px; }
.hero-lead { font-size: 1.1875rem; max-width: 620px; margin-bottom: 34px; color: var(--text-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.trust-strip {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-2);
  padding-top: 20px; border-top: 1px solid var(--border);
}
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); }

@keyframes glowPulse { 0%,100% { opacity: .85; } 50% { opacity: 1; } }

/* ---------- STAT BAND ---------- */
.stat-band { background: var(--surface); border-bottom: 1px solid var(--border); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 44px 20px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-mono); font-weight: 600; font-size: clamp(2rem, 3.6vw, 2.75rem); color: var(--accent); letter-spacing: -0.02em; line-height: 1; }
.stat-label { margin-top: 10px; font-size: 0.9rem; color: var(--text-2); }

/* ---------- SERVICES ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-card); box-shadow: var(--shadow-card);
}
.service-card {
  padding: 30px 28px; position: relative; overflow: hidden;
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.service-card:hover, .service-card:focus-visible {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  box-shadow: 0 10px 28px rgba(15,23,42,.10);
}
.service-card:hover::before, .service-card:focus-visible::before { transform: scaleX(1); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 18px;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.service-card p { font-size: 0.975rem; color: var(--text-2); }

/* ---------- WHY SWAT ---------- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 64px; }
.why-copy { max-width: 780px; }
.why-copy h2 { margin-bottom: 16px; }
.why-copy .check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.check-list { margin: 26px 0 32px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text); font-size: 1.03rem; }
.check-list em { color: var(--accent); font-style: normal; font-weight: 600; }
.check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px; margin-top: 3px;
  background: var(--accent-soft); position: relative;
}
.check::after {
  content: ''; position: absolute; left: 7px; top: 3px;
  width: 6px; height: 11px; border: solid var(--accent); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Faux fleet-tracking dashboard card (nods to the real app UI) */
.dash-card { padding: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-title { font-family: var(--font-mono); font-weight: 500; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.dash-live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; color: var(--accent); letter-spacing: 0.08em; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: blink 1.4s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.dash-map {
  height: 150px; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border); background: var(--surface-2); margin-bottom: 16px;
}
.dash-rows { display: flex; flex-direction: column; gap: 10px; }
.dash-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-radius: 8px; background: var(--surface-2); border: 1px solid var(--border);
}
.dr-mat { font-size: 0.9rem; font-weight: 500; }
.badge { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500; padding: 4px 10px; border-radius: 50px; letter-spacing: 0.04em; text-transform: uppercase; }
.badge-success { background: var(--accent-soft); color: var(--accent); }
.badge-brand { background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); }
.badge-amber { background: color-mix(in srgb, var(--amber) 20%, transparent); color: var(--amber); }

/* ---------- COVERAGE ---------- */
.chip-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  padding: 11px 20px; border-radius: 50px;
  background: var(--surface); border: 1px solid var(--border);
  font-weight: 500; font-size: 0.95rem;
  transition: border-color .2s, color .2s, transform .15s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.chip-more { background: var(--accent-soft); border-color: transparent; color: var(--accent-text); font-weight: 600; }

/* ---------- PROCESS ---------- */
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
/* Amber dashed "road" running through the centre of the four step markers.
   Circles sit on top with a solid fill, so the road reads as passing behind them. */
.process-track::before {
  /* Span exactly from the first circle centre to the last. With 4 columns and a
     24px grid gap, each circle centre sits at calc((100% - 72px) / 8) from its side.
     The line sits behind the circles, whose solid fill hides it between the numbers. */
  content: ''; position: absolute; top: 25px;
  left: calc((100% - 72px) / 8); right: calc((100% - 72px) / 8); height: 2px;
  background: repeating-linear-gradient(90deg, var(--amber) 0 6px, transparent 6px 14px);
  opacity: .85; z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; }
.step-num {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--accent); color: var(--accent);
  font-family: var(--font-mono); font-weight: 600; font-size: 1.2rem; margin-bottom: 18px;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.process-step p { font-size: 0.95rem; color: var(--text-2); max-width: 240px; margin-inline: auto; }

/* ---------- TESTIMONIALS ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 48px; }
.quote-card { padding: 30px 28px; display: flex; flex-direction: column; gap: 20px; }
.quote-card blockquote { font-size: 1.05rem; color: var(--text); line-height: 1.6; }
.quote-card figcaption { display: flex; flex-direction: column; gap: 2px; }
.q-name { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.q-org { font-size: 0.85rem; color: var(--text-3); }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 44px; opacity: .55; }
.logo-ph { font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.1em; font-size: 0.85rem; color: var(--text-3); }

/* ---------- CTA BANNER ---------- */
.cta-wrap { padding-block: 40px; }
.cta-banner {
  position: relative; overflow: hidden;
  background: #0b0d0f; border: 1px solid var(--border);
  border-radius: 16px; padding: 52px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-glow {
  position: absolute; right: -10%; top: -60%;
  width: 500px; height: 500px;
  background: radial-gradient(closest-side, rgba(22,163,74,0.28), transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { margin-bottom: 8px; color: #f6f7f8; }
.cta-content p { max-width: 460px; color: #c9cdd2; }
.cta-actions { position: relative; z-index: 1; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-phone { font-family: var(--font-mono); font-weight: 500; color: #f6f7f8; }
.cta-phone:hover { color: var(--amber); }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.contact-form-wrap h2 { margin-bottom: 12px; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: 8px; padding: 12px 14px; min-height: 46px;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--ring); }
.field.invalid input, .field.invalid textarea { border-color: var(--danger); }
.field-error { font-size: 0.8rem; color: var(--danger); min-height: 1em; }
.form-submit-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-status { font-size: 0.9rem; font-weight: 500; }
.form-status.ok { color: var(--accent); }

.contact-details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 32px 30px; box-shadow: var(--shadow-card); }
.contact-details h3 { margin-bottom: 22px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; flex-direction: column; gap: 3px; }
.cl-label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); font-weight: 500; }
.cl-value { font-size: 1rem; color: var(--text); }
a.cl-value:hover { color: var(--accent); }

/* ---------- FOOTER ---------- */
.site-footer { border-top: 2px solid var(--accent); background: var(--surface); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-block: 56px; }
.footer-blurb { font-size: 0.92rem; margin-top: 16px; max-width: 320px; color: var(--text-2); }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 16px; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.95rem; color: var(--text-2); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.social-row { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-2);
  display: inline-flex; align-items: center; justify-content: center; transition: color .2s, border-color .2s;
}
.social-btn:hover { color: var(--accent); border-color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-block: 22px; border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-3); }

/* ---------- REVEAL / MOTION ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  :root { --pad-section: 88px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; }
  .process-track::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --pad-section: 56px; }
  .primary-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  .stat:nth-child(2) { border-right: none; }
  .cta-banner { padding: 36px 28px; }
  .why-copy .check-list { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { padding-inline: 18px; }
  .cards-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .quote-form { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .brand-word { font-size: 0.95rem; }
}
