/* ── CUSTOM PROPERTIES ── */
:root {
  --void:        #040c07;
  --surface:     #0a130a;
  --panel:       #0f1c0f;
  --edge:        #1a321a;
  --hazard:      #b3ff00;
  --hazard-dim:  #7ab300;
  --danger:      #ff3b3b;
  --warning:     #ff9500;
  --text:        #dff0d8;
  --muted:       #587550;
  --lt-bg:       #f0f8ec;
  --lt-surface:  #e2f0dc;
  --lt-text:     #0a1409;
  --lt-muted:    #3a5535;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.35);
  --glow:        0 0 16px rgba(179,255,0,0.18);
  --radius:      6px;
  --radius-lg:   12px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--void);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--hazard); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* ── LAYOUT CONTAINER ── */
.zone-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none !important;
}
.btn-primary {
  background: var(--hazard);
  color: var(--void);
  border-color: var(--hazard);
}
.btn-primary:hover {
  background: transparent;
  color: var(--hazard);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--edge);
}
.btn-ghost:hover {
  border-color: var(--hazard);
  color: var(--hazard);
}
.btn-light {
  background: var(--lt-text);
  color: var(--lt-bg);
  border-color: var(--lt-text);
}
.btn-light:hover {
  background: var(--hazard);
  color: var(--lt-text);
  border-color: var(--hazard);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-spinner {
  width: 16px; height: 16px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FADE-IN ── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── ACCENT TEXT ── */
.accent { color: var(--hazard); }

/* ═══════════════════════════════════════════
   TOPBAR
════════════════════════════════════════════ */
#zone-topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--edge);
  padding: 9px 0;
  font-size: 0.78rem;
  font-family: 'Sora', sans-serif;
}
#zone-topbar .zone-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}
.topbar-item svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--hazard); }
.topbar-item a { color: var(--text); font-weight: 600; }
.topbar-item a:hover { color: var(--hazard); text-decoration: none; }
.topbar-badge {
  background: var(--hazard);
  color: var(--void);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
#zone-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--void);
  border-bottom: 2px solid var(--hazard);
  box-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 20px;
}

/* Logo */
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.brand-mark svg { width: 36px; height: 36px; flex-shrink: 0; }
.brand-wordmark {
  display: flex;
  flex-direction: column;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.brand-wordmark em {
  font-style: normal;
  color: var(--hazard);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links > li > a,
.nav-links > li > span {
  display: block;
  padding: 8px 12px;
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li.has-drop:hover > a { color: var(--hazard); text-decoration: none; }

/* Dropdown */
.has-drop { position: relative; }
.drop-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--panel);
  border: 1px solid var(--edge);
  border-top: 2px solid var(--hazard);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 12px 0;
  box-shadow: var(--shadow);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s, visibility 0.15s;
  z-index: 200;
}
.has-drop.is-open .drop-panel { visibility: visible; opacity: 1; pointer-events: auto; }
.drop-cat {
  padding: 6px 16px 4px;
  font-family: 'Sora', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hazard);
}
.drop-panel a {
  display: block;
  padding: 7px 16px;
  color: var(--text);
  font-size: 0.82rem;
  transition: color 0.12s, background 0.12s;
}
.drop-panel a:hover { color: var(--hazard); background: rgba(179,255,0,0.06); text-decoration: none; }

.nav-phone {
  color: var(--hazard);
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-phone:hover { text-decoration: none; color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  padding: 7px 9px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mob-menu {
  display: none;
  background: var(--panel);
  border-top: 1px solid var(--edge);
  overflow-y: auto;
  max-height: 70vh;
}
#mob-menu.open { display: block; }
.mob-inner ul { padding: 8px 0 16px; }
.mob-inner li a,
.mob-inner li span {
  display: block;
  padding: 9px 20px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
}
.mob-inner li a:hover { color: var(--hazard); text-decoration: none; }
.mob-sub { padding-left: 32px !important; font-size: 0.82rem !important; color: var(--muted) !important; }
.mob-sub:hover { color: var(--hazard) !important; }
.mob-cat { color: var(--hazard) !important; font-size: 0.65rem !important; font-weight: 700 !important; letter-spacing: 0.1em; text-transform: uppercase; padding-top: 12px !important; }

/* ═══════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#zone-hero {
  background: var(--void);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
#zone-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(179,255,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(179,255,0,0.1);
  border: 1px solid rgba(179,255,0,0.25);
  color: var(--hazard);
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--hazard);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-left h1 { margin-bottom: 16px; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text);
  opacity: 0.85;
  margin-bottom: 24px;
  max-width: 520px;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--edge);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
}
.hero-chip svg { width: 13px; height: 13px; color: var(--hazard); flex-shrink: 0; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btns .btn { min-width: 160px; justify-content: center; }

/* Contamination Widget */
.haz-widget {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-top: 3px solid var(--hazard);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow);
}
.haz-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--edge);
}
.haz-widget-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hazard);
}
.haz-live-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--danger);
}
.haz-live-dot::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--danger);
  border-radius: 50%;
  animation: pulse-dot 1.2s ease-in-out infinite;
}
.haz-widget-body { padding: 18px; }
.haz-row {
  margin-bottom: 18px;
}
.haz-row:last-child { margin-bottom: 0; }
.haz-row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.haz-row-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}
.haz-row-status {
  font-family: 'Sora', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.haz-s-danger { color: var(--danger); }
.haz-s-warn   { color: var(--warning); }
.haz-s-clear  { color: var(--hazard); opacity: 0; }
.haz-track {
  height: 7px;
  background: var(--edge);
  border-radius: 4px;
  overflow: hidden;
}
.haz-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--danger);
  width: 100%;
}
/* Animations — trigger via .is-clearing class added by JS */
.is-clearing .haz-fill-1 { animation: haz-reduce 1.4s ease-in-out 0s forwards; }
.is-clearing .haz-fill-2 { animation: haz-reduce 1.4s ease-in-out 0.3s forwards; }
.is-clearing .haz-fill-3 { animation: haz-reduce 1.4s ease-in-out 0.6s forwards; }
.is-clearing .haz-s-danger { animation: haz-fade-out 0.3s ease 1.2s forwards; }
.is-clearing .haz-s-warn   { animation: haz-fade-out 0.3s ease 1.35s forwards; }
.is-clearing .haz-s-clear  { animation: haz-fade-in  0.4s ease 1.5s forwards; }
.is-clearing .haz-widget-status { animation: haz-status-switch 0.4s ease 1.8s forwards; }
@keyframes haz-reduce { from { width: 100%; background: var(--danger); } to { width: 6%; background: var(--hazard); } }
@keyframes haz-fade-out { from { opacity: 1; } to { opacity: 0; pointer-events: none; } }
@keyframes haz-fade-in  { from { opacity: 0; } to { opacity: 1; } }
@keyframes haz-status-switch { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } }

.haz-widget-status {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(255,59,59,0.1);
  border: 1px solid rgba(255,59,59,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--danger);
  transition: background 0.4s, border-color 0.4s, color 0.4s;
}
.haz-widget-status.is-cleared {
  background: rgba(179,255,0,0.08);
  border-color: rgba(179,255,0,0.3);
  color: var(--hazard);
}
.haz-status-icon { width: 18px; height: 18px; flex-shrink: 0; }
.haz-cleared { color: var(--hazard) !important; }
.haz-widget-foot {
  padding: 10px 18px;
  border-top: 1px solid var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.haz-foot-label {
  font-size: 0.62rem;
  color: var(--muted);
  font-family: 'Sora', sans-serif;
}
.haz-foot-cta {
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  color: var(--hazard);
}
.haz-foot-cta:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   TRUST STRIP
════════════════════════════════════════════ */
#zone-trust {
  background: var(--surface);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  padding: 22px 0;
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}
.trust-item svg { width: 15px; height: 15px; color: var(--hazard); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
#zone-services {
  padding: 80px 0;
  background: var(--void);
}
.section-head {
  text-align: center;
  margin-bottom: 52px;
}
.section-kicker {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hazard);
  margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 0.95rem; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-tile {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.svc-tile:hover {
  border-color: var(--hazard);
  box-shadow: var(--glow);
}
.svc-tile-icon {
  width: 44px; height: 44px;
  background: rgba(179,255,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.svc-tile-icon svg { width: 22px; height: 22px; color: var(--hazard); }
.svc-tile h3 { font-size: 0.95rem; margin-bottom: 8px; color: var(--white); }
.svc-tile p { font-size: 0.82rem; color: var(--muted); margin-bottom: 0; line-height: 1.5; }

/* ═══════════════════════════════════════════
   PROCESS
════════════════════════════════════════════ */
#zone-process {
  background: var(--surface);
  padding: 80px 0;
}
.proc-list { display: flex; flex-direction: column; gap: 0; }
.proc-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 24px;
  align-items: start;
  border-bottom: 1px solid var(--edge);
  padding: 28px 0;
  position: relative;
}
.proc-step:last-child { border-bottom: none; }
.proc-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
.proc-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--panel);
  border: 2px solid var(--edge);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.proc-step:hover .proc-icon-wrap { border-color: var(--hazard); }
.proc-icon-wrap svg { width: 20px; height: 20px; color: var(--hazard); }
.proc-num-tag {
  font-family: 'Sora', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--hazard);
  margin-top: 6px;
  letter-spacing: 0.06em;
}
.proc-connector {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  bottom: -28px;
  background: var(--edge);
}
.proc-step:last-child .proc-connector { display: none; }
.proc-right { padding-top: 8px; }
.proc-right h3 { font-size: 1rem; margin-bottom: 6px; color: var(--white); }
.proc-right p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0; }
.proc-hazard-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: rgba(179,255,0,0.08);
  border: 1px solid rgba(179,255,0,0.2);
  border-radius: 100px;
  font-size: 0.62rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  color: var(--hazard);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════════
   PRICING — LIGHT ZONE
════════════════════════════════════════════ */
#zone-pricing {
  background: var(--lt-bg);
  padding: 80px 0;
}
#zone-pricing .section-head h2 { color: var(--lt-text); }
#zone-pricing .section-head p  { color: var(--lt-muted); }
#zone-pricing .section-kicker  { color: var(--hazard-dim); }
.price-strips { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.price-strip {
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid #d0e8c8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.price-strip:hover { border-color: var(--hazard-dim); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.price-strip-left {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid #d0e8c8;
}
.price-pip {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pip-red    { background: var(--danger); }
.pip-amber  { background: #ff9500; }
.pip-yellow { background: #ffd600; }
.pip-lime   { background: var(--hazard-dim); }
.price-svc-name {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lt-text);
}
.price-strip-mid {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--lt-surface);
  text-align: center;
  border-right: 1px solid #d0e8c8;
}
.price-range {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--lt-text);
  line-height: 1.1;
}
.price-label {
  font-size: 0.65rem;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  color: var(--lt-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.price-strip-right {
  padding: 18px 20px;
  display: flex;
  align-items: center;
}
.price-note {
  font-size: 0.78rem;
  color: var(--lt-muted);
  margin-bottom: 0;
  line-height: 1.45;
}
.price-disclaimer {
  background: var(--lt-surface);
  border: 1px solid #d0e8c8;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.82rem;
  color: var(--lt-muted);
  text-align: center;
  margin-bottom: 28px;
}
.price-cta { text-align: center; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
#zone-testi {
  background: var(--void);
  padding: 80px 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
}
.testi-stars {
  color: var(--hazard);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testi-quote {
  font-size: 0.88rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
  opacity: 0.9;
  line-height: 1.6;
}
.testi-author {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
}
.testi-role {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   SEO CONTENT SECTION
════════════════════════════════════════════ */
#zone-content {
  background: var(--surface);
  padding: 80px 0;
}
.content-cols {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.content-aside {
  position: sticky;
  top: 80px;
}
.aside-card {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-top: 3px solid var(--hazard);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.aside-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hazard);
  margin-bottom: 16px;
}
.aside-contact-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
  font-size: 0.82rem;
  color: var(--text);
}
.aside-contact-line svg { width: 14px; height: 14px; color: var(--hazard); flex-shrink: 0; }
.aside-contact-line a { color: var(--white); font-weight: 600; }
.aside-contact-line a:hover { color: var(--hazard); text-decoration: none; }
.aside-avail {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(179,255,0,0.07);
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--hazard);
  letter-spacing: 0.06em;
  margin: 12px 0;
}
.aside-avail::before { content: ''; width: 6px; height: 6px; background: var(--hazard); border-radius: 50%; }
.aside-card .btn { width: 100%; justify-content: center; margin-top: 14px; }

.content-body h1 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
  font-weight: 800 !important;
  color: var(--white) !important;
  margin-bottom: 20px !important;
  line-height: 1.2 !important;
}
.content-body > p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.content-body > p a { color: var(--hazard); }
.content-body > p a:hover { text-decoration: underline; }
.content-body h2 {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1.25 !important;
}
.content-body h3 {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  margin: 16px 0 8px !important;
}
.content-body details {
  border: 1px solid var(--edge);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
}
.content-body details[open] { border-color: var(--hazard); }
.content-body summary {
  padding: 16px 20px;
  background: var(--panel);
  cursor: pointer;
  list-style: none;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 12px;
}
.content-body summary::-webkit-details-marker { display: none; }
.content-body summary::after {
  content: '+';
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hazard);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.content-body details[open] summary::after { content: '&times;'; transform: rotate(45deg); }
.content-body summary h2 {
  pointer-events: none;
}
.content-body .detail-body {
  padding: 20px;
  background: var(--surface);
  border-top: 1px solid var(--edge);
}
.content-body .detail-body p,
.content-body .detail-body ul,
.content-body .detail-body ol {
  font-size: 0.88rem;
  color: var(--text);
  opacity: 0.9;
  margin-bottom: 0.8rem;
}
.content-body .detail-body p:last-child { margin-bottom: 0; }
.content-body .detail-body h3 { margin-bottom: 8px !important; }
.content-body .detail-body ul { list-style: disc; padding-left: 20px; }
.content-body .detail-body li { margin-bottom: 4px; }
.content-body .detail-body a { color: var(--hazard); }
.first-h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 20px 0 12px;
}
.first-h2-body {
  font-size: 0.88rem;
  color: var(--text);
  opacity: 0.9;
  margin-bottom: 1rem;
}
.first-h2-body:last-of-type { margin-bottom: 0; }

/* ═══════════════════════════════════════════
   CONTACT FORM
════════════════════════════════════════════ */
#zone-contact {
  background: var(--void);
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 28px; }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-line-icon {
  width: 38px; height: 38px;
  background: rgba(179,255,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-line-icon svg { width: 17px; height: 17px; color: var(--hazard); }
.contact-line-text { padding-top: 2px; }
.contact-line-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-line-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
}
.contact-line-value a { color: var(--white); }
.contact-line-value a:hover { color: var(--hazard); text-decoration: none; }
.contact-avail {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(179,255,0,0.08);
  border: 1px solid rgba(179,255,0,0.2);
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hazard);
  letter-spacing: 0.05em;
  margin-top: 8px;
}
.contact-avail::before { content: ''; width: 7px; height: 7px; background: var(--hazard); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }

.form-card {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-top: 3px solid var(--hazard);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-card h2 { font-size: 1.3rem; margin-bottom: 6px; }
.form-card > p { font-size: 0.85rem; color: var(--muted); margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field.full { grid-column: 1/-1; }
.form-field label {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field label span { color: var(--hazard); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.88rem;
  transition: border-color 0.15s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--hazard); }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23587550' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 14px; padding-right: 36px; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field option { background: var(--panel); }
.honeypot-field { display: none !important; }
#form-message { font-size: 0.85rem; padding: 10px 14px; border-radius: var(--radius); margin-top: 4px; }
#form-message.success { background: rgba(179,255,0,0.1); border: 1px solid rgba(179,255,0,0.3); color: var(--hazard); }
#form-message.error   { background: rgba(255,59,59,0.1); border: 1px solid rgba(255,59,59,0.3); color: #ff6b6b; }
.form-submit .btn { width: 100%; justify-content: center; padding: 14px; font-size: 0.9rem; }

/* ═══════════════════════════════════════════
   BOTTOM CTA
════════════════════════════════════════════ */
#zone-cta {
  background: var(--surface);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  padding: 72px 0;
  text-align: center;
}
#zone-cta h2 { margin-bottom: 12px; }
#zone-cta > .zone-wrap > p { color: var(--muted); max-width: 520px; margin: 0 auto 32px; }
.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-btns .btn { min-width: 180px; justify-content: center; }

/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
#zone-footer {
  background: var(--void);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--edge);
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 12px 0 16px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-phone-link {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hazard);
  margin-bottom: 4px;
}
.footer-phone-link:hover { text-decoration: none; color: var(--white); }
.footer-email {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-socials {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.fsoc {
  width: 34px; height: 34px;
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.fsoc:hover { border-color: var(--hazard); background: rgba(179,255,0,0.1); text-decoration: none; }
.fsoc svg { width: 14px; height: 14px; color: var(--muted); }
.fsoc:hover svg { color: var(--hazard); }
footer address { font-style: normal; font-size: 0.78rem; color: var(--muted); line-height: 1.7; }
.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hazard);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.83rem;
  color: var(--muted);
  padding: 3px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--hazard); text-decoration: none; }
.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid var(--edge);
  margin-top: 0;
}
.footer-bottom .zone-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: var(--muted); font-size: 0.75rem; }
.footer-legal a:hover { color: var(--hazard); text-decoration: none; }

/* ═══════════════════════════════════════════
   STICKY CTA BUTTON
════════════════════════════════════════════ */
#sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
#sticky-cta.is-visible { opacity: 1; pointer-events: auto; }
#sticky-cta .btn { box-shadow: 0 4px 20px rgba(0,0,0,0.5), var(--glow); }
@media (max-width: 560px) {
  #sticky-cta .btn span { display: none; }
  #sticky-cta .btn { border-radius: 50%; padding: 14px; }
}

/* ═══════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════ */
#back-top {
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 89;
  width: 38px; height: 38px;
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, border-color 0.15s;
}
#back-top.is-visible { opacity: 1; pointer-events: auto; }
#back-top:hover { border-color: var(--hazard); }
#back-top svg { width: 16px; height: 16px; color: var(--text); }

/* ═══════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .haz-widget { max-width: 480px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-cols { grid-template-columns: 240px 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .topbar-left .topbar-item:last-child { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .price-strip { grid-template-columns: 1fr; }
  .price-strip-left, .price-strip-mid, .price-strip-right { border-right: none; border-bottom: 1px solid #d0e8c8; }
  .price-strip-right { border-bottom: none; }
  .content-cols { grid-template-columns: 1fr; }
  .content-aside { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom .zone-wrap { flex-direction: column; text-align: center; }
  #zone-hero { padding: 48px 0 56px; }
}
@media (max-width: 520px) {
  .svc-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { min-width: unset; }
  .cta-btns { flex-direction: column; align-items: center; }
}
