/* ── 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;
    color: #c8d8cc;
    line-height: 1.7;
    background: #080c0e;
}

:root {
    --void: #080c0e;
    --void-mid: #0d1510;
    --void-card: #111f15;
    --hazard: #b8ff3c;
    --hazard-dim: rgba(184,255,60,0.10);
    --hazard-glow: rgba(184,255,60,0.30);
    --hazard-border: rgba(184,255,60,0.22);
    --white: #ffffff;
    --grey: #8a9e90;
    --light-zone: #edf4ef;
    --light-text: #0f1f13;
    --light-card: #ffffff;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.55);
    --shadow-hazard: 0 6px 28px rgba(184,255,60,0.28);
}

.zone { max-width: 1220px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--hazard); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.22s, color 0.22s, transform 0.18s, box-shadow 0.22s, border-color 0.22s;
    border: 2px solid transparent;
}
.btn-hazard {
    background: var(--hazard);
    color: #080c0e;
    box-shadow: var(--shadow-hazard);
}
.btn-hazard:hover {
    background: #cbff59;
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(184,255,60,0.42);
    color: #080c0e;
    text-decoration: none;
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--void);
    border-color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}
.btn-outline-dark {
    background: transparent;
    color: var(--light-text);
    border-color: rgba(15,31,19,0.35);
}
.btn-outline-dark:hover {
    background: var(--light-text);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ── BRAND LOGO ── */
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}
.brand-logo:hover { text-decoration: none; }
.logo-mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(184,255,60,0.45));
}
.logo-mark--sm { width: 30px; height: 30px; }
.logo-wordmark {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
}
.logo-wordmark em {
    font-style: normal;
    color: var(--hazard);
}

/* ── TOPBAR ── */
#topbar {
    background: #050809;
    border-bottom: 1px solid rgba(184,255,60,0.14);
    padding: 10px 0;
}
.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.topbar-phone {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.45rem;
    color: var(--hazard);
    text-decoration: none;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.topbar-phone svg { width: 20px; height: 20px; flex-shrink: 0; }
.topbar-phone:hover { color: #cbff59; text-decoration: none; }
.topbar-info {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.topbar-meta {
    font-size: 0.82rem;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 6px;
}
.topbar-meta svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-meta a { color: var(--grey); }
.topbar-meta a:hover { color: var(--hazard); }
.topbar-badge {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--void);
    background: var(--hazard);
    padding: 3px 9px;
    border-radius: 4px;
}

/* ── NAVIGATION ── */
#nav-bar {
    background: rgba(8,12,14,0.97);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 16px;
}
.nav-brand { flex-shrink: 0; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
    color: #d4e8d8;
    text-decoration: none;
    padding: 10px 14px;
    display: block;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li.has-drop > a:hover { color: var(--hazard); text-decoration: none; }
.nav-links > li.has-drop > a::after {
    content: ' ▾';
    font-size: 0.65rem;
    opacity: 0.7;
}

/* ── DROPDOWN ── */
.drop-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #0d1510;
    border: 1px solid var(--hazard-border);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 240px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.7);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s, visibility 0.18s;
}
.has-drop.is-open .drop-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.drop-group {
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hazard);
    padding: 10px 18px 4px;
    border-top: 1px solid rgba(184,255,60,0.12);
    margin-top: 6px;
}
.drop-group:first-child { border-top: none; margin-top: 0; }
.drop-panel a {
    display: block;
    padding: 7px 18px;
    color: #b8ccc0;
    font-size: 0.87rem;
    transition: color 0.18s, background 0.18s;
}
.drop-panel a:hover {
    color: var(--hazard);
    background: var(--hazard-dim);
    text-decoration: none;
}

/* ── NAV PHONE & CTA ── */
.nav-phone {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hazard);
    text-decoration: none;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: color 0.2s;
}
.nav-phone:hover { color: #cbff59; text-decoration: none; }

/* ── HAMBURGER ── */
.mob-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 6px;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}
.mob-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.22s, opacity 0.22s;
}
.mob-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-toggle.open span:nth-child(2) { opacity: 0; }
.mob-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
#mob-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0d1510;
    border-bottom: 1px solid var(--hazard-border);
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
}
#mob-nav.open { display: block; }
.mob-nav-list { padding: 12px 0 20px; }
.mob-nav-list li a {
    display: block;
    padding: 9px 24px;
    color: #c8d8cc;
    font-size: 0.9rem;
    transition: color 0.18s;
}
.mob-nav-list li a:hover { color: var(--hazard); text-decoration: none; }
.mob-cat {
    display: block;
    padding: 10px 24px 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hazard);
    border-top: 1px solid rgba(184,255,60,0.12);
    margin-top: 8px;
}
.mob-cat:first-child { border-top: none; margin-top: 0; }
.mob-sub {
    padding-left: 36px !important;
    font-size: 0.84rem !important;
    color: #8a9e90 !important;
}
.mob-sub:hover { color: var(--hazard) !important; }

/* ── HERO ── */
#hero {
    position: relative;
    background: var(--void);
    overflow: hidden;
    padding: 90px 0 80px;
    text-align: center;
}
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(184,255,60,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.particle-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.h-dot {
    position: absolute;
    border-radius: 50%;
    background: #b8ff3c;
    animation: dot-rise linear infinite;
}
@keyframes dot-rise {
    0%   { transform: translateY(0)    scale(1);   opacity: 0; }
    10%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateY(-80px) scale(0.7); opacity: 0; }
}
.hero-text {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}
.hero-eyebrow {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hazard);
    border: 1px solid var(--hazard-border);
    border-radius: 4px;
    padding: 5px 14px;
    margin-bottom: 22px;
}
#hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
}
#hero h1 span { color: var(--hazard); }
.hero-sub {
    font-size: 1.05rem;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border: 1px solid var(--hazard-border);
    border-radius: 8px;
    overflow: hidden;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.hero-stat {
    flex: 1;
    min-width: 140px;
    padding: 20px 16px;
    border-right: 1px solid var(--hazard-border);
    background: rgba(184,255,60,0.04);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--hazard);
    line-height: 1;
    display: block;
    letter-spacing: 0.02em;
}
.hero-stat-label {
    font-size: 0.72rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-top: 4px;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── TRUST STRIP ── */
#trust-strip {
    background: var(--light-zone);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 28px;
}
.trust-badge {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1a3322;
    display: flex;
    align-items: center;
    gap: 7px;
}
.trust-badge svg { width: 16px; height: 16px; flex-shrink: 0; color: #16a34a; }

/* ── SERVICES ── */
#services {
    background: var(--void-mid);
    padding: 80px 0;
}
#services .section-head { text-align: center; margin-bottom: 52px; }
#services .section-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}
#services .section-head p { color: var(--grey); max-width: 560px; margin: 0 auto; }
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.svc-card {
    background: var(--void-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
.svc-card:hover {
    border-color: var(--hazard-border);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.45), 0 0 0 1px rgba(184,255,60,0.12);
}
.svc-icon {
    width: 48px;
    height: 48px;
    background: var(--hazard-dim);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.svc-icon svg { width: 24px; height: 24px; color: var(--hazard); }
.svc-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.svc-desc { font-size: 0.875rem; color: var(--grey); line-height: 1.65; margin: 0; }

/* ── PROCESS ── */
#process {
    background: var(--void);
    padding: 80px 0;
}
#process .section-head { text-align: center; margin-bottom: 56px; }
#process .section-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}
#process .section-head p { color: var(--grey); max-width: 520px; margin: 0 auto; }
.steps-track { display: flex; flex-direction: column; gap: 0; max-width: 900px; margin: 0 auto; }
.step-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 28px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.step-row:last-child { border-bottom: none; }
.step-hex-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.step-hex {
    width: 64px;
    height: 64px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: var(--hazard);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.step-num {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #080c0e;
    line-height: 1;
}
.step-connector {
    width: 2px;
    flex: 1;
    min-height: 24px;
    background: linear-gradient(to bottom, rgba(184,255,60,0.4), rgba(184,255,60,0.08));
    margin: 6px auto 0;
}
.step-row:last-child .step-connector { display: none; }
.step-body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0 28px;
    padding-top: 6px;
}
.step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}
.step-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hazard);
    display: block;
    margin-bottom: 6px;
}
.step-desc { font-size: 0.875rem; color: var(--grey); line-height: 1.65; margin: 0; }

/* ── WHY US ── */
#why-us {
    background: var(--void-mid);
    padding: 80px 0;
}
#why-us .section-head { text-align: center; margin-bottom: 52px; }
#why-us .section-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}
#why-us .section-head p { color: var(--grey); max-width: 520px; margin: 0 auto; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.why-cell {
    background: var(--void-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 28px 24px;
}
.why-cell:hover { border-color: var(--hazard-border); }
.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hazard-dim);
    border: 1px solid var(--hazard-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.why-icon svg { width: 20px; height: 20px; color: var(--hazard); }
.why-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.why-desc { font-size: 0.855rem; color: var(--grey); line-height: 1.65; margin: 0; }

/* ── PRICING (LIGHT ZONE) ── */
#pricing {
    background: var(--light-zone);
    padding: 80px 0;
}
#pricing .section-head { text-align: center; margin-bottom: 52px; }
#pricing .section-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--light-text);
    text-transform: uppercase;
    margin-bottom: 12px;
}
#pricing .section-head p { color: #3d5948; max-width: 560px; margin: 0 auto; }
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 32px;
}
.scenario-card {
    background: var(--light-card);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    border-top: 4px solid var(--hazard);
    display: flex;
    flex-direction: column;
}
.scenario-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: #1a3322;
    border-radius: 4px;
    padding: 3px 9px;
    display: inline-block;
    margin-bottom: 14px;
    align-self: flex-start;
}
.scenario-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.scenario-desc {
    font-size: 0.855rem;
    color: #3d5948;
    margin-bottom: 20px;
    line-height: 1.6;
}
.scenario-price {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1;
    margin-bottom: 4px;
}
.scenario-price-label {
    font-size: 0.75rem;
    color: #5a7568;
    margin-bottom: 20px;
    display: block;
}
.scenario-includes {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 18px;
    margin-top: auto;
}
.scenario-includes li {
    font-size: 0.84rem;
    color: #2a4535;
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    line-height: 1.4;
}
.scenario-includes li:last-child { border-bottom: none; }
.scenario-includes li::before {
    content: '';
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: #16a34a;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414L8.414 15l-4.121-4.121a1 1 0 111.414-1.414L8.414 12.172l7.879-7.879a1 1 0 011.414 0z'/%3E%3C/svg%3E") center/contain no-repeat;
    margin-top: 2px;
}
.pricing-note {
    text-align: center;
    font-size: 0.84rem;
    color: #4a6a58;
    max-width: 600px;
    margin: 0 auto;
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: var(--void);
    padding: 80px 0;
}
#testimonials .section-head { text-align: center; margin-bottom: 52px; }
#testimonials .section-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi-item {
    background: var(--void-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 28px 24px;
}
.testi-initial {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hazard);
    color: var(--void);
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.testi-stars {
    color: var(--hazard);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.testi-text {
    font-size: 0.875rem;
    color: #9ab0a2;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
}
.testi-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    letter-spacing: 0.04em;
}
.testi-loc { font-size: 0.78rem; color: var(--grey); margin-top: 2px; }

/* ── SEO CONTENT ── */
#seo-content {
    background: var(--void-mid);
    padding: 80px 0;
}
.seo-split {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}
.seo-body h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    padding: 0;
    margin: 0;
    list-style: none;
    display: block;
}
.seo-body h2::marker, .seo-body h2::-webkit-details-marker { display: none; }
.seo-accord {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 0;
}
.seo-accord-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: var(--void-card);
}
.seo-accord-item:last-child { border-bottom: none; }
.seo-accord-summary {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
    transition: background 0.18s;
}
.seo-accord-summary:hover { background: rgba(255,255,255,0.03); }
.seo-accord-summary::-webkit-details-marker { display: none; }
.seo-accord-summary h2 {
    font-family: 'Oswald', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: var(--white) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    cursor: pointer !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}
.accord-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--hazard);
    transition: transform 0.22s;
}
details[open] .accord-chevron { transform: rotate(180deg); }
.seo-accord-body {
    padding: 0 24px 24px;
    font-size: 0.88rem;
    color: #8a9e90;
    line-height: 1.75;
}
.seo-accord-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #c8d8cc;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 20px 0 10px;
}
.seo-accord-body p { margin-bottom: 0.9rem; }
.seo-accord-body ul {
    margin: 0 0 0.9rem 0;
    padding-left: 0;
    list-style: none;
}
.seo-accord-body ul li {
    padding: 4px 0 4px 22px;
    position: relative;
    font-size: 0.87rem;
}
.seo-accord-body ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--hazard);
    font-size: 0.7rem;
    top: 6px;
}
.seo-sidebar { position: sticky; top: 80px; }
.emergency-card {
    background: var(--void-card);
    border: 1px solid var(--hazard-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
}
.emergency-card-tag {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--void);
    background: var(--hazard);
    border-radius: 4px;
    padding: 4px 10px;
    margin-bottom: 14px;
}
.emergency-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.emergency-card p {
    font-size: 0.82rem;
    color: var(--grey);
    margin-bottom: 20px;
    line-height: 1.6;
}
.emergency-phone {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hazard);
    text-decoration: none;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    transition: color 0.2s;
}
.emergency-phone:hover { color: #cbff59; text-decoration: none; }
.emergency-card .btn { width: 100%; text-align: center; }
.emergency-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
    color: var(--grey);
    font-size: 0.75rem;
}
.emergency-divider::before, .emergency-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

/* ── FAQ ── */
#faq {
    background: var(--void);
    padding: 80px 0;
}
#faq .section-head { text-align: center; margin-bottom: 52px; }
#faq .section-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.faq-split {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.faq-col { display: flex; flex-direction: column; gap: 0; }
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: var(--void-card);
    border-radius: 0;
    overflow: hidden;
}
.faq-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.faq-item:last-child {
    border-bottom: none;
    border-radius: 0 0 var(--radius) var(--radius);
}
.faq-q {
    padding: 18px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
    transition: background 0.18s;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q-num {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--hazard);
    letter-spacing: 0.08em;
    min-width: 24px;
}
.faq-q-text {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    flex: 1;
    line-height: 1.3;
}
.faq-chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--hazard);
    transition: transform 0.22s;
}
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-ans {
    padding: 0 22px 18px 58px;
    font-size: 0.875rem;
    color: #8a9e90;
    line-height: 1.7;
}
.coverage-col { position: sticky; top: 80px; }
.coverage-box {
    background: var(--void-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 28px 24px;
}
.coverage-box-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hazard);
    margin-bottom: 14px;
    display: block;
}
.coverage-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}
.coverage-box p {
    font-size: 0.84rem;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 16px;
}
.coverage-nations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
}
.coverage-nation {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: #b8ccc0;
}
.coverage-nation::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hazard);
    flex-shrink: 0;
}

/* ── CONTACT / QUOTE ── */
#freequote {
    background: var(--void-mid);
    padding: 80px 0;
}
.quote-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.quote-left h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.quote-left p { color: var(--grey); margin-bottom: 28px; }
.quote-contact-list { display: flex; flex-direction: column; gap: 16px; }
.quote-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.quote-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--hazard-dim);
    border: 1px solid var(--hazard-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.quote-contact-icon svg { width: 18px; height: 18px; color: var(--hazard); }
.quote-contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey);
    display: block;
    margin-bottom: 2px;
}
.quote-contact-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}
.quote-contact-value a { color: var(--white); text-decoration: none; }
.quote-contact-value a:hover { color: var(--hazard); }
.form-box {
    background: var(--void-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 36px 32px;
}
.form-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}
.form-box .form-sub { font-size: 0.84rem; color: var(--grey); margin-bottom: 24px; }
.form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.field-wrap { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field-wrap label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #8a9e90;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}
.field-wrap label span { color: var(--hazard); }
.field-wrap input,
.field-wrap select,
.field-wrap textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 11px 14px;
    color: var(--white);
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}
.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap textarea:focus {
    outline: none;
    border-color: var(--hazard);
    background: rgba(184,255,60,0.04);
}
.field-wrap select option { background: #111f15; color: var(--white); }
.field-wrap textarea { height: 110px; resize: vertical; }
.honey { display: none !important; visibility: hidden; }
#form-msg {
    grid-column: 1 / -1;
    padding: 11px 14px;
    border-radius: 6px;
    font-size: 0.875rem;
    display: none;
}
#form-msg.success { background: rgba(22,163,74,0.15); color: #86efac; border: 1px solid rgba(22,163,74,0.3); display: block; }
#form-msg.error { background: rgba(239,68,68,0.12); color: #fca5a5; border: 1px solid rgba(239,68,68,0.25); display: block; }
.form-submit { grid-column: 1 / -1; }
.form-submit .btn { width: 100%; text-align: center; justify-content: center; display: flex; align-items: center; gap: 8px; }
.btn-spinner {
    width: 18px;
    height: 18px;
    animation: spin 0.7s linear infinite;
    flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FOOTER ── */
#footer {
    background: #050809;
    border-top: 1px solid rgba(184,255,60,0.1);
    padding: 60px 0 0;
}
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-brand-col .brand-logo { margin-bottom: 16px; display: block; }
.footer-brand-desc {
    font-size: 0.84rem;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 18px;
}
.footer-contact-detail {
    font-size: 0.88rem;
    color: #b8ccc0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-contact-detail svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--hazard); }
.footer-contact-detail a { color: #b8ccc0; text-decoration: none; }
.footer-contact-detail a:hover { color: var(--hazard); }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.soc-link {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.soc-link svg { width: 16px; height: 16px; }
.soc-link:hover { border-color: var(--hazard); color: var(--hazard); background: var(--hazard-dim); text-decoration: none; }
.footer-col-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-links-col a,
.footer-svc-col a {
    display: block;
    font-size: 0.855rem;
    color: var(--grey);
    padding: 5px 0;
    transition: color 0.18s;
}
.footer-links-col a:hover,
.footer-svc-col a:hover { color: var(--hazard); text-decoration: none; }
.footer-contact-col .footer-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.footer-contact-col .footer-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--hazard);
    margin-top: 3px;
}
.footer-contact-col .footer-item a {
    color: var(--grey);
    font-size: 0.855rem;
    transition: color 0.18s;
}
.footer-contact-col .footer-item a:hover { color: var(--hazard); }
.footer-contact-col .footer-item span {
    font-size: 0.855rem;
    color: var(--grey);
    line-height: 1.5;
}
.footer-bar {
    background: #030507;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 16px 0;
}
.footer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bar-inner span { font-size: 0.8rem; color: #5a7568; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: #5a7568; text-decoration: none; transition: color 0.18s; }
.footer-legal a:hover { color: var(--hazard); }

/* ── STICKY CTA ── */
#sticky-quote {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s;
}
#sticky-quote.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sticky-inner {
    background: var(--hazard);
    color: #080c0e;
    border: none;
    border-radius: 8px;
    padding: 13px 22px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 28px rgba(184,255,60,0.4);
    text-decoration: none;
    transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
}
.sticky-inner:hover { background: #cbff59; transform: translateY(-2px); box-shadow: 0 10px 36px rgba(184,255,60,0.5); text-decoration: none; }
.sticky-inner svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (max-width: 560px) {
    .sticky-inner span { display: none; }
    .sticky-inner { border-radius: 50%; padding: 14px; }
}

/* ── FADE-UP ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.55s, transform 0.55s; }
.fade-up.shown { opacity: 1; transform: translateY(0); }

/* ── BACK TO TOP ── */
#back-top {
    position: fixed;
    bottom: 92px;
    right: 28px;
    z-index: 89;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--void-card);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--grey);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, color 0.2s, border-color 0.2s;
}
#back-top.vis { opacity: 1; pointer-events: auto; }
#back-top:hover { color: var(--hazard); border-color: var(--hazard-border); }
#back-top svg { width: 18px; height: 18px; }

/* ── UTILITY ── */
.section-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    border: none;
    margin: 0;
}
.hazard-text { color: var(--hazard); }

/* ── LEGAL PAGES ── */
.legal-page { padding: 72px 0 96px; }
.legal-body { max-width: 780px; }
.legal-body h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 8px;
}
.legal-body h2 {
    font-size: 1.25rem;
    color: var(--hazard);
    margin-top: 2.4rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}
.legal-body h3 { font-size: 1.05rem; color: var(--white); margin-top: 1.6rem; margin-bottom: 0.4rem; }
.legal-body p { color: #b0c4b8; margin-bottom: 1rem; }
.legal-body strong { color: var(--white); }
.legal-body ul { list-style: disc; margin-left: 1.4rem; margin-bottom: 1rem; }
.legal-body ul li { color: #b0c4b8; margin-bottom: 0.3rem; }
.legal-body a { color: var(--hazard); }
.legal-body a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .scenario-grid { grid-template-columns: 1fr; gap: 20px; max-width: 480px; margin-left: auto; margin-right: auto; }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    .seo-split { grid-template-columns: 1fr 260px; gap: 32px; }
    .faq-split { grid-template-columns: 1fr 280px; gap: 32px; }
    .quote-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-phone { display: none; }
    .mob-toggle { display: flex; }
    .svc-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .seo-split { grid-template-columns: 1fr; }
    .faq-split { grid-template-columns: 1fr; }
    .step-body { grid-template-columns: 1fr; gap: 6px; }
    .footer-main { grid-template-columns: 1fr; gap: 32px; }
    .scenario-grid { max-width: 100%; }
    #hero { padding: 60px 0 50px; }
    .hero-stats { flex-direction: column; max-width: 300px; }
    .hero-stat { border-right: none; border-bottom: 1px solid var(--hazard-border); width: 100%; }
    .hero-stat:last-child { border-bottom: none; }
    .topbar-info { display: none; }
    .footer-bar-inner { justify-content: center; text-align: center; }
    .footer-legal { justify-content: center; }
    .coverage-col { position: static; }
    .seo-sidebar { position: static; }
    .form-fields { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { text-align: center; }
    .quote-inner { gap: 28px; }
    .form-box { padding: 24px 20px; }
}
