@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg:        #080E1F;
  --bg2:       #0F1830;
  --bg3:       #1B2A5C;
  --gold:      #C8972A;
  --gold-lt:   #E8B84B;
  --gold-glow: rgba(200,151,42,0.15);
  --text:      #F1F5F9;
  --muted:     #8A99B5;
  --border:    rgba(200,151,42,0.28);
  --border-s:  rgba(255,255,255,0.07);
  --radius:    8px;
  --nav-h:     200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAVIGATION ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: rgba(8,14,31,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-s);
  transition: background 0.3s;
}

.nav-logo img { height: 180px; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--gold) !important;
  color: #080E1F !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
  box-shadow: 0 4px 16px rgba(200,151,42,0.25);
}

.nav-cta:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,151,42,0.35) !important;
}

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 85% 25%, rgba(200,151,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 45% 70% at 5% 75%, rgba(27,42,92,0.45) 0%, transparent 65%),
    var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(200,151,42,0.1) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,42,0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}

.hero-title {
  font-size: 66px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero-title .gold { color: var(--gold); }

.hero-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; align-items: center; }

/* ── BUTTONS ────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: #080E1F;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(200,151,42,0.28);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,151,42,0.4);
}

.btn-secondary {
  color: var(--text);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--border-s);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-secondary:hover {
  border-color: var(--border);
  color: var(--gold-lt);
  transform: translateY(-2px);
}

/* ── STATS STRIP ────────────────────────────── */
.stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
  padding: 52px 60px;
}

.stats-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border-s);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 46px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}

/* ── SECTIONS ───────────────────────────────── */
.section-wrapper { width: 100%; }
.section-wrapper.alt { background: var(--bg2); }

.section {
  padding: 96px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title .gold { color: var(--gold); }

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 52px;
}

/* ── CARDS ──────────────────────────────────── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border-s);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  border-color: rgba(200,151,42,0.5);
  transform: translateY(-5px);
  box-shadow:
    0 20px 52px rgba(0,0,0,0.4),
    0 0 0 1px rgba(200,151,42,0.1),
    0 0 28px rgba(200,151,42,0.12);
}

.card-icon {
  width: 46px; height: 46px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}

.card-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.card-text  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── GRIDS ──────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ── COMPARISON TABLE ───────────────────────── */
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comp-table thead tr { border-bottom: 2px solid var(--border); }

.comp-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.comp-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-s);
  color: var(--muted);
}

.comp-table td:first-child { font-weight: 600; color: var(--text); }
.comp-table td.yes { color: var(--gold-lt); font-weight: 700; }
.comp-table td.no  { color: #475569; }
.comp-table tr:hover td { background: rgba(255,255,255,0.02); }
.comp-table tr:last-child td { border-bottom: none; }

/* ── ROI CALCULATOR ─────────────────────────── */
.roi-wrap {
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(27,42,92,0.25) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 52px;
}

.roi-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}

.roi-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.roi-field input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  background: var(--border-s);
  border-radius: 2px;
  outline: none;
  margin-bottom: 10px;
}

.roi-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(200,151,42,0.5);
  transition: transform 0.15s;
}

.roi-field input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.roi-val-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.roi-val {
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
}

.roi-val-range { font-size: 11px; color: var(--muted); }

.roi-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-s);
  color: var(--text);
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  outline: none;
  cursor: pointer;
  margin-top: 8px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.roi-select:focus { border-color: var(--border); }
.roi-select option { background: var(--bg2); }

.roi-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 36px;
  border-top: 1px solid var(--border-s);
}

.roi-result-box {
  text-align: center;
  padding: 28px 16px;
  background: rgba(200,151,42,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.2s;
}

.roi-result-box:hover { transform: translateY(-3px); }

.roi-result-num {
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  transition: color 0.3s;
}

.roi-result-num.green { color: #4ade80; }
.roi-result-label { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ── TIMELINE ───────────────────────────────── */
.timeline { display: flex; flex-direction: column; }

.tl-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}

.tl-item::after {
  content: '';
  position: absolute;
  left: 19px; top: 42px;
  width: 2px;
  height: calc(100% - 42px);
  background: linear-gradient(to bottom, var(--border), transparent);
}

.tl-item:last-child { padding-bottom: 0; }
.tl-item:last-child::after { display: none; }

.tl-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  z-index: 1;
}

.tl-content { flex: 1; padding-top: 6px; }
.tl-label { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; font-weight: 600; }
.tl-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.tl-desc  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── CALLOUT BLOCK ──────────────────────────── */
.callout-block {
  background: linear-gradient(135deg, rgba(27,42,92,0.5) 0%, rgba(200,151,42,0.06) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 44px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  position: relative;
}

.callout-block::before {
  content: '"';
  font-size: 90px;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: -14px; left: 24px;
  font-style: italic;
  line-height: 1;
}

/* ── FORM ───────────────────────────────────── */
.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-s);
  color: var(--text);
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--border);
  background: rgba(200,151,42,0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #3d4f6e; }

.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg2); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── BULLET LIST ────────────────────────────── */
.bullet-list { list-style: none; }

.bullet-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-s);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.bullet-list li:last-child { border-bottom: none; }

.bullet-list li .dash {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.bullet-list li strong { color: var(--text); }

/* ── TWO COL ────────────────────────────────── */
.two-col { display: flex; gap: 56px; align-items: flex-start; }
.two-col .col { flex: 1; }

/* ── HIGHLIGHT BOX ──────────────────────────── */
.concern-reality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-s);
}

.cr-box { background: var(--bg2); padding: 32px; }

.cr-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-s);
}

.cr-label.concern { color: #64748b; }
.cr-label.reality { color: var(--gold); }

/* ── NAVY BANNER ────────────────────────────── */
.navy-banner {
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(11,18,38,0.8) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 36px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.navy-banner strong { color: var(--gold-lt); }

/* ── CTA SECTION ────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 100px 60px;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border-s);
}

.cta-section .section-title { max-width: 680px; margin: 0 auto 18px; }
.cta-section .section-sub   { max-width: 500px; margin: 0 auto 40px; text-align: center; }
.cta-section .hero-actions  { justify-content: center; }

/* ── CONTACT CARD ───────────────────────────── */
.contact-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}

.contact-name  { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.contact-title { font-size: 13px; color: var(--gold); letter-spacing: 0.5px; margin-bottom: 20px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
}

.contact-detail a { color: var(--gold-lt); text-decoration: none; }
.contact-detail a:hover { color: var(--gold); }
.contact-icon { font-size: 16px; width: 20px; text-align: center; }

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border-s);
  padding: 56px 60px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo img { height: 44px; display: block; margin-bottom: 12px; }
.footer-tagline  { font-size: 12px; color: var(--muted); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #4a5e7e; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-contact p { font-size: 14px; color: #4a5e7e; margin-bottom: 8px; }
.footer-contact a { color: var(--gold); text-decoration: none; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-s);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #2d3f5e;
}

/* ── GOLD LINE ──────────────────────────────── */
.gold-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

/* ── SCROLL ANIMATIONS ──────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }
.fade-up.d5 { transition-delay: 0.5s; }

/* ── BADGE ──────────────────────────────────── */
.badge {
  display: inline-block;
  background: rgba(200,151,42,0.1);
  border: 1px solid var(--border);
  color: var(--gold-lt);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}

/* ── SUCCESS MESSAGE ────────────────────────── */
.success-msg {
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #4ade80;
  font-size: 14px;
  display: none;
  margin-top: 16px;
}

/* ── HERO CANVAS ────────────────────────────────── */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── CRIME COST CLOCK ───────────────────────────── */
.crime-clock-wrap {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(8,14,31,0.6);
  border: 1px solid rgba(200,151,42,0.35);
  border-radius: 12px;
  padding: 18px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 44px;
}

.crime-clock-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.crime-clock-num {
  font-size: 38px;
  font-weight: 900;
  color: #ef4444;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.crime-clock-sub {
  font-size: 10px;
  color: #64748b;
  letter-spacing: 0.5px;
}

/* ── TICKER STRIP ───────────────────────────────── */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 11px 0;
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-scroll 38s linear infinite;
  will-change: transform;
}

.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-track span {
  font-size: 11.5px;
  font-weight: 700;
  color: #080E1F;
  padding: 0 22px;
  letter-spacing: 0.3px;
}

.ticker-track .ticker-sep {
  color: rgba(8,14,31,0.35);
  padding: 0 4px;
  font-size: 9px;
}

/* ── CARD GLOW — handled in base .card styles above ── */

/* ── HAMBURGER NAV BUTTON ───────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ─────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,14,31,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-s);
  padding: 16px 32px 28px;
  z-index: 99;
  flex-direction: column;
  gap: 0;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--muted);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-s);
  transition: color 0.2s;
  display: block;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover     { color: var(--text); }
.nav-mobile a.nav-cta   { color: var(--gold) !important; font-weight: 700; }

/* ── MOBILE RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .hero-title   { font-size: 52px; }
  .section-title { font-size: 34px; }
  .section { padding: 80px 48px; }
  .nav { padding: 0 48px; }
  .hero-content { padding: 0 48px; }
  .stats-strip  { padding: 44px 48px; }
  .footer { padding: 48px 48px 28px; }
  .cta-section  { padding: 80px 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 80px; }

  /* Nav */
  .nav { padding: 0 24px; }
  .nav-logo img { height: 72px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: 38px; letter-spacing: -0.5px; }
  .hero-desc { font-size: 15px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .crime-clock-num { font-size: 28px; }
  .crime-clock-wrap { margin-top: 32px; }

  /* Stats strip */
  .stats-strip { padding: 40px 24px; }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item {
    border-right: none;
    padding: 16px;
    border-bottom: 1px solid var(--border-s);
  }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border-s); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-num { font-size: 34px; }

  /* Sections */
  .section { padding: 60px 24px; }
  .section-title { font-size: 28px; }
  .section-sub { font-size: 14px; max-width: 100%; }

  /* Grids */
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; gap: 16px; }

  /* Two col */
  .two-col { flex-direction: column; gap: 40px; }
  .two-col .col { width: 100%; }

  /* ROI Calculator */
  .roi-wrap { padding: 28px 20px; }
  .roi-inputs { grid-template-columns: 1fr; gap: 28px; }
  .roi-results { grid-template-columns: 1fr; gap: 12px; }

  /* Comparison table */
  .comp-table { font-size: 12px; }
  .comp-table th, .comp-table td { padding: 10px 12px; }

  /* Concern/Reality */
  .concern-reality { grid-template-columns: 1fr; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-section { padding: 60px 24px; }
  .cta-section .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .cta-section .btn-primary,
  .cta-section .btn-secondary { width: 100%; max-width: 320px; text-align: center; }

  /* Footer */
  .footer { padding: 40px 24px 24px; }
  .footer-inner { flex-direction: column; gap: 32px; margin-bottom: 32px; }

  /* Callout */
  .callout-block { padding: 24px 28px; font-size: 15px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 24px; }
  .crime-clock-num { font-size: 24px; }
  .stat-num { font-size: 28px; }
}
