/* ─── ET LANDING — elephanttrace.com ─────────────────────────────────────── */
/* Palette: Cream base, Navy + Teal pops                                       */

:root {
  --cream:       #FEFBF4;
  --cream-dark:  #F5F0E6;
  --navy:        #1E3A5F;
  --navy-dark:   #152B47;
  --teal:        #2BBFAA;
  --teal-dark:   #1F9E8C;
  --orange:      #FF6B00;
  --red-zone:    #E8002D;
  --lime:        #C8E600;
  --text:        #1A1A1A;
  --text-muted:  #5A5A5A;
  --text-light:  #8A8A8A;
  --border:      #E2DDD4;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Instrument Sans', system-ui, sans-serif;
  --font-mono:    'Courier New', monospace;

  --radius:      12px;
  --radius-lg:   20px;
  --max-width:   1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILITIES ──────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(43,191,170,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

.btn-nav {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  padding: 10px 20px;
  font-size: 14px;
}
.btn-nav:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.btn-large {
  font-size: 18px;
  padding: 18px 40px;
}

/* ─── NAV ────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254,251,244,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-mascot {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--navy);
}

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

.nav-links a:not(.btn) {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:not(.btn):hover { color: var(--navy); }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(43,191,170,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(200,230,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(43,191,170,0.25);
  border: 1px solid rgba(43,191,170,0.6);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--teal);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-sub em {
  color: rgba(255,255,255,0.95);
  font-style: italic;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #5DDECE;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  text-align: center;
  line-height: 1.4;
}

/* ─── SAMPLE SECTION ─────────────────────────────────────────────────────── */
.sample-section {
  padding: 80px 24px;
  text-align: center;
  background: var(--cream-dark);
}

.sample-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.sample-caption {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── POSTER DEMO FACSIMILE ──────────────────────────────────────────────── */
/*
 * This is a scaled-down HTML replica of the actual 11×17 print poster.
 * It uses the same color system, zone logic, and 911 dispatch block layout.
 * Scaled to ~900px wide max so it reads clearly on desktop.
 */

.poster-demo {
  position: relative;
  max-width: 960px;
  margin: 0 auto 32px;
  border: 3px solid var(--navy);
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.08),
    0 16px 48px rgba(0,0,0,0.12),
    0 32px 80px rgba(0,0,0,0.10);
  font-family: var(--font-mono);
  font-size: 10px;
  text-align: left;
}

/* ── POSTER HEADER ── */
.pd-header {
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--orange);
  gap: 12px;
}
.pd-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.pd-elephant {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pd-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}
.pd-subtitle {
  font-family: var(--font-mono);
  font-size: 8px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.pd-header-right {
  text-align: right;
  flex-shrink: 0;
}
.pd-call-badge {
  background: var(--red-zone);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 4px;
}
.pd-meta {
  font-family: var(--font-mono);
  font-size: 8px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── CHILD INFO ROW ── */
.pd-child-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 2.2fr 2.4fr 1.8fr;
  background: #f8f6f0;
  border-bottom: 2px solid #d0c9be;
}
.pd-child-cell {
  padding: 6px 10px;
  border-right: 1px solid #d0c9be;
}
.pd-child-cell:last-child { border-right: none; }
.pd-cell-label {
  font-family: var(--font-mono);
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 2px;
}
.pd-cell-value {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* ── BODY COLUMNS ── */
.pd-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-bottom: 2px solid #d0c9be;
  background: #fff;
}

/* ── MAP COLUMN ── */
.pd-map-col {
  padding: 10px 12px;
  border-right: 2px solid #d0c9be;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-section-hdr {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  border-bottom: 2px solid #d0c9be;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pd-section-hdr-sub {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 400;
  color: #888;
}

/* MAP WRAP */
.pd-map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  border: 1.5px solid #888;
  overflow: hidden;
  flex-shrink: 0;
}
.pd-map-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 40% 55%, rgba(43,80,40,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 70% 30%, rgba(60,100,55,0.5) 0%, transparent 50%),
    linear-gradient(160deg, #2d4a2a 0%, #3a5f35 35%, #4a7040 60%, #2d4a2a 100%);
}
/* Overlay grid for satellite feel */
.pd-map-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 24px);
}

/* Zone rings */
.pd-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: transparent;
}

/* Hazard dots */
.pd-dot {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* Home pin */
.pd-home-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  border: 2.5px solid var(--red-zone);
  z-index: 20;
  box-shadow: 0 0 5px rgba(0,0,0,0.6);
}

/* Compass */
.pd-compass {
  position: absolute;
  top: 6px;
  right: 7px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: #fff;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 4px #000, 0 0 8px #000;
  z-index: 15;
}

/* Ring labels */
.pd-ring-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  text-shadow: 0 0 3px #000, 0 0 6px #000;
  z-index: 12;
}

/* Attribution */
.pd-attribution {
  position: absolute;
  bottom: 3px;
  left: 5px;
  font-size: 6px;
  color: rgba(255,255,255,0.65);
  font-family: sans-serif;
}

/* Legend */
.pd-legend {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pd-legend-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: var(--navy);
}
.pd-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hazard count bar */
.pd-count-bar {
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
  border-top: 1px solid #d0c9be;
}
.pd-count-item { text-align: center; }
.pd-count-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.pd-count-label {
  font-size: 7px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* ── CHECKLIST COLUMN ── */
.pd-checklist-col {
  padding: 10px 12px;
}
.pd-zone-block {
  margin-bottom: 8px;
}
.pd-zone-hdr {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2px;
}
.pd-zone-hdr span {
  font-size: 8px;
  opacity: 0.85;
  letter-spacing: 0.03em;
}
.pd-hazard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pd-hazard-list li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 9px;
  color: #333;
  line-height: 1.4;
}
.pd-haz-icon {
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pd-priority {
  float: right;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-left: auto;
  padding-left: 4px;
}
.pd-key-facts {
  font-size: 7.5px;
  color: #888;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid #d0c9be;
  line-height: 1.5;
}

/* ─── 911 DISPATCH BLOCK ─────────────────────────────────────────────────── */
.pd-dispatch {
  background: #C8000A;
  color: #fff;
  padding: 12px 16px 10px;
  border-top: 3px solid #fff;
}
.pd-dispatch-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid rgba(255,255,255,0.3);
  gap: 16px;
}
.pd-dispatch-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.2;
  flex: 1;
}
.pd-dispatch-opener {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  text-align: right;
  max-width: 280px;
  line-height: 1.4;
  flex-shrink: 0;
}

/* 8-step dispatch grid — 4 columns */
.pd-dispatch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px 10px;
  margin-bottom: 8px;
}

.pd-step {
  background: rgba(0,0,0,0.22);
  border-radius: 3px;
  padding: 6px 8px;
  border-left: 3px solid rgba(255,255,255,0.45);
}
.pd-step-label {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 3px;
}
.pd-step-value {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.pd-step-value-sm { font-size: 9px; }

/* Water step spans 2 cols, gold border */
.pd-step-water {
  grid-column: span 2;
  background: rgba(0,0,0,0.30);
  border-left-color: #FFD700;
}
.pd-step-label-gold {
  color: #FFD700 !important;
}
.pd-step-value-water {
  font-size: 9.5px;
  line-height: 1.6;
}
.pd-gold-num {
  color: #FFD700;
  font-weight: 900;
  margin-right: 2px;
}

/* Blank fill lines */
.pd-blank {
  display: inline-block;
  border-bottom: 1.5px solid rgba(255,255,255,0.55);
  min-width: 80px;
  height: 12px;
  vertical-align: bottom;
}
.pd-blank-sm { min-width: 36px; }
.pd-blank-md { min-width: 70px; }
.pd-blank-lg { min-width: 100px; }

/* Responder alert */
.pd-warn {
  color: #FFD700;
  font-size: 8.5px;
  font-weight: 700;
}

/* Dispatch footer strip */
.pd-dispatch-footer {
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.25);
  padding: 5px;
  border-radius: 2px;
  margin-top: 4px;
}

/* ── CONTACTS ROW ── */
.pd-contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid #d0c9be;
  background: #f8f6f0;
}
.pd-contact-cell {
  padding: 7px 12px;
  border-right: 1px solid #d0c9be;
}
.pd-contact-cell:last-child { border-right: none; }
.pd-contact-label {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 2px;
}
.pd-contact-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
}
.pd-contact-name.pd-contact-blank {
  border-bottom: 1px solid #d0c9be;
  width: 120px;
  display: inline-block;
  min-height: 14px;
}
.pd-contact-detail {
  font-size: 9px;
  color: #888;
  margin-top: 1px;
}
.pd-contact-detail.pd-contact-blank-sm {
  border-bottom: 1px solid #d0c9be;
  width: 100px;
  display: inline-block;
  min-height: 12px;
}

/* ── POSTER FOOTER ── */
.pd-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.55);
  padding: 5px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.04em;
  gap: 8px;
}
.pd-footer-brand {
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.pd-footer-meta { color: rgba(255,255,255,0.4); }
.pd-footer-right {
  text-align: right;
  color: rgba(255,255,255,0.4);
}

/* ── POSTER CTA BADGE (overlaid on bottom) ── */
.poster-cta-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 24px;
  background: var(--navy);
  border-top: 2px solid var(--teal);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
}

/* ─── SECTIONS ───────────────────────────────────────────────────────────── */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--cream-dark);
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.65;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}

.step {
  flex: 1;
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 12px;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  font-size: 24px;
  color: var(--teal);
  font-weight: 700;
  align-self: center;
  padding: 0 16px;
  flex-shrink: 0;
}

/* ─── HAZARD GRID ────────────────────────────────────────────────────────── */
.hazard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.hazard-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  position: relative;
}

.hazard-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 8px;
}

.hazard-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.hazard-icon { font-size: 28px; }

.hazard-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.zone-1 { background: rgba(232,0,45,0.1); color: var(--red-zone); }
.zone-2 { background: rgba(255,107,0,0.1); color: var(--orange); }
.zone-3 { background: rgba(30,58,95,0.1); color: var(--navy); }

/* ─── AUDIENCE GRID ──────────────────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.audience-card {
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
}

.audience-icon { font-size: 32px; margin-bottom: 16px; }

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.audience-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── PRICING ────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: start;
}

.pricing-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-svg {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(43,191,170,0.08);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-badge-gold {
  background: var(--orange);
}
.pricing-large {
  border-color: var(--orange);
  opacity: 0.88;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.pricing-desc {
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text);
}

/* ─── TRUST ──────────────────────────────────────────────────────────────── */
.section-trust {
  background: var(--navy);
  padding: 72px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  text-align: center;
  color: rgba(255,255,255,0.85);
}

.trust-icon { font-size: 28px; margin-bottom: 12px; }

.trust-item h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ─── FINAL CTA ──────────────────────────────────────────────────────────── */
.section-cta {
  background: var(--cream-dark);
  text-align: center;
  padding: 100px 0;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-light);
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-mascot {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.8;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.8);
}

.footer-sub-brand {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--teal); }

.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-left: auto; margin-right: auto; }
  .pricing-svg { transform: none; }
}
@media (max-width: 900px) {
  .hazard-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-svg { transform: none; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); align-self: center; padding: 8px 0; }

  /* Poster demo responsive */
  .pd-body { grid-template-columns: 240px 1fr; }
  .pd-dispatch-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-step-water { grid-column: span 2; }
  .pd-child-row { grid-template-columns: 1.5fr 1fr 2fr; }
  .pd-child-cell:nth-child(4),
  .pd-child-cell:nth-child(5) { display: none; }
  .pd-footer { flex-direction: column; gap: 2px; text-align: center; }
}

@media (max-width: 700px) {
  /* Stack poster body to single column */
  .pd-body { grid-template-columns: 1fr; }
  .pd-map-col { border-right: none; border-bottom: 2px solid #d0c9be; }
  .pd-map-wrap { max-width: 280px; margin: 0 auto; }
  .pd-dispatch-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-dispatch-header { flex-direction: column; gap: 6px; }
  .pd-dispatch-opener { text-align: left; max-width: 100%; }
  .pd-child-row { grid-template-columns: 1fr 1fr; }
  .pd-child-cell:nth-child(3),
  .pd-child-cell:nth-child(4),
  .pd-child-cell:nth-child(5) { display: none; }
  .pd-contacts { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 72px 20px 60px; }
  .hero-stat-row { gap: 24px; }
  .hero-stat { padding: 0 16px; }
  .hero-stat-divider { display: none; }
  .hazard-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .sample-section { padding: 56px 20px; }

  /* Poster at small screens */
  .pd-title { font-size: 11px; }
  .pd-dispatch-grid { grid-template-columns: 1fr 1fr; }
  .poster-cta-badge { flex-direction: column; gap: 10px; }
}
