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

:root {
    --black:        #07111C;
    --black-mid:    #0D1B2A;
    --black-light:  #132030;
    --black-card:   #0F1A26;
    --lime:         #2EB86A;
    --lime-dark:    #229955;
    --blue:         #1389D4;
    --blue-dark:    #0D6DB0;
    --white:        #ffffff;
    --white-70:     rgba(255,255,255,0.70);
    --white-40:     rgba(255,255,255,0.40);
    --white-12:     rgba(255,255,255,0.12);
    --white-06:     rgba(255,255,255,0.06);
    --blue-10:      rgba(19,137,212,0.10);
    --blue-glow:    rgba(19,137,212,0.25);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--lime); }
::selection { background: var(--lime); color: var(--white); }

/* ─── NOISE OVERLAY ─── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 300px 300px;
}

/* ─────────────────────────────────────
   NAVIGATION
───────────────────────────────────── */
nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: 72px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(7,17,28,0.93);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--white-06);
    transition: border-color 0.3s, background 0.3s;
}

nav.scrolled {
    border-bottom-color: rgba(19,137,212,0.25);
    background: rgba(7,17,28,0.97);
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    height: 36px;
    width: auto;
    display: block;
    object-fit: cover;
    flex-shrink: 0;
}

.logo-text { line-height: 1; }
.logo-text .name {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 21px;
    letter-spacing: 2.5px;
    color: var(--white);
}
.logo-text .tagline {
    display: block;
    font-size: 8.5px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--lime);
    font-weight: 600;
    margin-top: 2px;
}

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

.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 11.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--lime);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-quote {
    background: var(--lime);
    color: var(--white) !important;
    padding: 10px 26px;
    clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-quote::after { display: none !important; }
.nav-quote:hover { background: var(--lime-dark) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}
.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-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(7,17,28,0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: 0 6%;
    border-bottom: 1px solid var(--white-06);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    display: block;
    padding: 16px 0;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white-70);
    text-decoration: none;
    border-bottom: 1px solid var(--white-06);
    transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; color: var(--lime); }
.mobile-nav a:hover { color: var(--white); }

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
#hero {
    position: relative;
    min-height: 100svh;
    height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
    padding-bottom: 0;
    padding-left: 6%;
    padding-right: 6%;
    background: var(--black);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 44px 44px;
    animation: gridDrift 28s ease-in-out infinite alternate;
    z-index: 2;
    -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 32%, transparent 54%);
    mask-image: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 32%, transparent 54%);
}
@keyframes gridDrift {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(22px,16px) scale(1.02); }
}

.hero-atmosphere {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(7,17,28,0.97) 0%,
            rgba(7,17,28,0.94) 26%,
            rgba(7,17,28,0.86) 40%,
            rgba(7,17,28,0.60) 52%,
            rgba(7,17,28,0.22) 63%,
            rgba(7,17,28,0.05) 71%,
            rgba(7,17,28,0) 76%
        ),
        radial-gradient(ellipse 55% 45% at 20% 22%, rgba(19,137,212,0.03) 0%, transparent 55%),
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(7,17,28,0.5) 0%, transparent 70%);
}

.hero-scan {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(255,255,255,0.006) 3px,
        rgba(255,255,255,0.006) 4px
    );
}


.hero-glow-br {
    position: absolute;
    bottom: -8%;
    right: -4%;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(19,137,212,0.14) 0%, rgba(19,137,212,0.04) 40%, transparent 65%);
    pointer-events: none;
    z-index: 1;
    animation: glowDrift 9s ease-in-out infinite alternate;
}
.hero-glow-tl {
    position: absolute;
    top: 15%;
    left: -8%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(46,184,106,0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: glowDrift 12s ease-in-out infinite alternate-reverse;
}

@keyframes glowDrift {
    0%   { transform: translate(0,0) scale(1); opacity: 0.9; }
    100% { transform: translate(-24px,-18px) scale(1.08); opacity: 0.7; }
}

.hero-image {
    position: absolute;
    inset: 72px 0 0 0;
    width: 100%;
    height: calc(100svh - 72px);
    pointer-events: none;
    z-index: 0;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 74% center;
    display: block;
    opacity: 0.90;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 960px;
    height: calc(100svh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 72px;
}

.fade-up { opacity: 0; transform: translateY(20px); }
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.hero-content .fade-up:nth-child(1) { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards 0.18s; }
.hero-content .fade-up:nth-child(2) { animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) forwards 0.34s; }
.hero-content .fade-up:nth-child(3) { animation: fadeUp 1.0s cubic-bezier(0.16,1,0.3,1) forwards 0.50s; }
.hero-content .fade-up:nth-child(4) { animation: fadeUp 1.0s cubic-bezier(0.16,1,0.3,1) forwards 0.68s; }
.hero-content .fade-up:nth-child(5) { animation: fadeUp 1.0s cubic-bezier(0.16,1,0.3,1) forwards 0.84s; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue));
}
.hero-eyebrow span {
    font-size: 10px;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(63px, 8.8vw, 121px);
    line-height: 0.88;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 32px;
}
.hero-h1 .line2 {
    color: var(--lime);
    display: block;
}
.hero-h1 .line3 {
    color: rgba(255,255,255,0.90);
    display: block;
}

.hero-sub {
    font-size: clamp(15px,1.4vw,17px);
    color: rgba(255,255,255,0.62);
    max-width: 520px;
    line-height: 1.88;
    font-weight: 300;
    margin-bottom: 48px;
    letter-spacing: 0.2px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-data-strip {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.07);
    width: fit-content;
}
.hero-data-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 36px;
    margin-right: 36px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-data-item:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}
.hero-data-num {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1;
}
.hero-data-lbl {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
}

.hero-scroll {
    position: absolute;
    bottom: 52px;
    left: 6%;
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 1.05s;
    z-index: 4;
}
.hero-scroll span {
    font-size: 9px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
}
.scroll-track {
    width: 44px; height: 1px;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}
.scroll-track::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--blue);
    animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse { 0%{left:-100%} 100%{left:100%} }

/* ─── BUTTONS ─── */
.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.11) 0%, transparent 42%), var(--lime);
    color: var(--white);
    padding: 17px 40px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    clip-path: polygon(12px 0%,100% 0%,calc(100% - 12px) 100%,0% 100%);
    position: relative;
    overflow: hidden;
    filter: drop-shadow(0 4px 16px rgba(46,184,106,0.26)) drop-shadow(0 1px 5px rgba(0,0,0,0.32));
    transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), background 0.2s, filter 0.28s cubic-bezier(0.22,1,0.36,1);
}
.btn-red::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.11);
    transform: translateX(-110%);
    transition: transform 0.4s ease;
}
.btn-red:hover {
    background: linear-gradient(180deg, rgba(255,255,255,0.11) 0%, transparent 42%), var(--lime-dark);
    transform: translateY(-2px);
    filter: drop-shadow(0 8px 26px rgba(46,184,106,0.38)) drop-shadow(0 2px 8px rgba(0,0,0,0.42));
}
.btn-red:hover::before { transform: translateX(0); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,0.85);
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.22);
    cursor: pointer;
    clip-path: polygon(12px 0%,100% 0%,calc(100% - 12px) 100%,0% 100%);
    transition: border-color 0.25s, color 0.25s, transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); color: var(--white); transform: translateY(-2px); }


/* ─────────────────────────────────────
   SECTION UTILITIES
───────────────────────────────────── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.section-eyebrow::before {
    content: '';
    display: block;
    width: 36px; height: 1px;
    background: var(--blue);
    opacity: 0.8;
}
.section-eyebrow span {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(42px,5vw,68px);
    letter-spacing: 1.5px;
    line-height: 0.95;
}
.section-title .r { color: var(--lime); }

.top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--lime) 30%, var(--blue) 70%, transparent 100%);
    opacity: 0.7;
}

/* Scroll-reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.95s cubic-bezier(0.16,1,0.3,1), transform 0.95s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.95s cubic-bezier(0.16,1,0.3,1), transform 0.95s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.95s cubic-bezier(0.16,1,0.3,1), transform 0.95s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.in { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal-scale.in { opacity: 1; transform: scale(1); }

/* ─────────────────────────────────────
   SERVICES
───────────────────────────────────── */
#services {
    position: relative;
    padding: 130px 6%;
    background: var(--black-mid);
}

.services-header { margin-bottom: 64px; }

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

.s-card {
    background: var(--black-card);
    padding: 52px 38px;
    position: relative;
    overflow: hidden;
    cursor: default;
}
.s-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.s-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(46,184,106,0.07), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}
.s-card:hover::before { transform: scaleX(1); }
.s-card:hover::after  { opacity: 1; }

.s-card-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 88px;
    color: rgba(255,255,255,0.025);
    position: absolute;
    top: 8px; right: 16px;
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s;
}
.s-card:hover .s-card-num { color: rgba(46,184,106,0.07); }

.s-icon {
    width: 52px; height: 52px;
    color: var(--blue);
    margin-bottom: 30px;
    transition: transform 0.35s ease;
}
.s-card:hover .s-icon { transform: scale(1.1) rotate(-4deg); }

.s-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.8px;
    color: var(--white);
    margin-bottom: 14px;
}
.s-desc {
    font-size: 13.5px;
    color: var(--white-70);
    line-height: 1.82;
    font-weight: 300;
}

.s-card:nth-child(1).in { transition-delay: 0.05s; }
.s-card:nth-child(2).in { transition-delay: 0.15s; }
.s-card:nth-child(3).in { transition-delay: 0.25s; }
.s-card:nth-child(4).in { transition-delay: 0.35s; }

/* ─────────────────────────────────────
   WHY US
───────────────────────────────────── */
#why-us {
    position: relative;
    padding: 160px 6%;
    background: var(--black);
    overflow: hidden;
}

/* Ghost background identifier */
.why-bg-text {
    position: absolute;
    right: -2%;
    bottom: -4%;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(100px, 14vw, 200px);
    color: rgba(255,255,255,0.018);
    letter-spacing: -1px;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 112px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-left {
    min-width: 0;
}

.why-body {
    font-size: 16px;
    color: rgba(255,255,255,0.58);
    line-height: 2.0;
    font-weight: 300;
    margin: 32px 0 56px;
    letter-spacing: 0.15px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 44px;
    width: 100%;
    max-width: 760px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding-right: 34px;
    margin-right: 0;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child {
    border-right: none;
    padding-right: 0;
}

.stat-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 58px;
    color: var(--blue);
    line-height: 0.95;
    letter-spacing: 0.5px;
}
.stat-lbl {
    font-size: 9.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 8px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.pillar {
    background: linear-gradient(145deg, var(--black-light) 0%, rgba(15,26,38,0.95) 100%);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.5s;
}
.pillar::before {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 44px; height: 44px;
    border-right: 1.5px solid rgba(46,184,106,0.3);
    border-bottom: 1.5px solid rgba(46,184,106,0.3);
    transition: width 0.35s, height 0.35s, border-color 0.35s;
}
.pillar:hover::before {
    width: 56px;
    height: 56px;
    border-color: rgba(46,184,106,0.6);
}

/* Subtle top highlight on hover */
.pillar::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(19,137,212,0.3), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.pillar:hover::after { transform: scaleX(1); }

.pillar-icon {
    width: 40px; height: 40px;
    color: var(--blue);
    margin-bottom: 18px;
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.pillar:hover .pillar-icon { transform: scale(1.1); }

.pillar-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--white);
}
.pillar-text {
    font-size: 12.5px;
    color: rgba(255,255,255,0.55);
    line-height: 1.78;
    font-weight: 300;
}

/* pillar stagger — handled by JS */

/* ─────────────────────────────────────
   COVERAGE
───────────────────────────────────── */
#coverage {
    position: relative;
    padding: 128px 6% 148px;
    background: #020810;
    overflow: hidden;
    isolation: isolate;
}

/* Subtle grid texture over the dark left side */
#coverage::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(19,137,212,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(19,137,212,0.022) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 55%);
    pointer-events: none;
    z-index: 1;
}

#coverage::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 4%, rgba(46,184,106,0.55) 26%, rgba(19,137,212,0.65) 60%, transparent 92%);
    opacity: 0.65;
    z-index: 2;
}

.cov-bg-map {
    position: absolute;
    inset: 0;
    background-image: url('assets/backgrounds/coverage-background.png');
    background-size: 78% auto;
    background-position: right 42% center;
    background-repeat: no-repeat;
    opacity: 0.88;
    z-index: 0;
    pointer-events: none;
}

.cov-bg-map::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            #030C16 0%,
            rgba(3,12,22,0.98) 28%,
            rgba(3,12,22,0.72) 43%,
            rgba(3,12,22,0.22) 62%,
            rgba(3,12,22,0.04) 100%);
    pointer-events: none;
}

.cov-layout {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.cov-left {
    max-width: 100%;
}

#coverage .section-title {
    font-size: clamp(64px, 5.4vw, 104px);
    letter-spacing: 2px;
    line-height: 0.91;
    white-space: nowrap;
}

.cov-rule {
    width: 28px;
    height: 1px;
    background: var(--lime);
    margin: 22px 0;
    opacity: 0.75;
}

.cov-body {
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.78;
    color: rgba(255,255,255,0.60);
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 32px;
}

/* ── County Row Cards ── */
.cov-rows {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.cov-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(8,17,30,0.88);
    border: 1px solid rgba(19,137,212,0.10);
    border-left: 2px solid rgba(46,184,106,0.35);
    position: relative;
    cursor: default;
    transition: background 0.3s, border-left-color 0.3s;
}
.cov-row:hover {
    background: rgba(11,24,42,0.95);
    border-left-color: #2EB86A;
}

.cov-row-icon {
    width: 38px; height: 38px;
    border: 1px solid rgba(19,137,212,0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s;
}
.cov-row:hover .cov-row-icon { border-color: rgba(19,137,212,0.45); }
.cov-row-icon svg {
    width: 17px; height: 17px;
    color: var(--blue);
    display: block;
}

.cov-row-content { flex: 1; }

.cov-row-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 21px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.85);
    line-height: 1;
    margin-bottom: 6px;
    transition: color 0.3s;
}
.cov-row:hover .cov-row-name { color: var(--white); }

.cov-row-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 3px;
}

.cov-row-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #2EB86A;
    flex-shrink: 0;
    animation: covDotPulse 2.5s ease-in-out infinite;
}

@keyframes covDotPulse {
    0%, 100% { box-shadow: 0 0 4px rgba(46,184,106,0.5); }
    50%       { box-shadow: 0 0 10px rgba(46,184,106,0.9); }
}

.cov-row-status {
    font-size: 8px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #2EB86A;
    font-weight: 600;
}

.cov-row-response {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
    font-weight: 500;
    padding-left: 12px;
}

.cov-row-arrow {
    width: 14px; height: 14px;
    color: rgba(19,137,212,0.38);
    flex-shrink: 0;
    display: block;
    transition: color 0.3s, transform 0.3s;
}
.cov-row:hover .cov-row-arrow {
    color: rgba(19,137,212,0.85);
    transform: translateX(3px);
}

/* ── Stats bar ── */
.cov-stats {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(19,137,212,0.13);
    border-radius: 8px;
    background: rgba(5,12,22,0.76);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.025);
}

.cov-stat {
    padding: 18px 16px;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.cov-stat-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 2.3vw, 38px);
    letter-spacing: 0.5px;
    color: #2EB86A;
    line-height: 1;
    flex-shrink: 0;
}

.cov-stat-label {
    font-size: 9px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.44);
    line-height: 1.5;
}

/* Map panel removed — background image now on #coverage section */

/* Pulsing operational nodes */
.cov-node {
    position: absolute;
    left: var(--nx);
    top: var(--ny);
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    pointer-events: none;
    z-index: 3;
    display: grid;
    place-items: center;
}

.cov-node-ring {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #2EB86A;
    transform-origin: center;
    animation: covRingOut 3.2s ease-out infinite;
}

.cov-node.blue .cov-node-ring { border-color: #1389D4; }
.cov-node-ring.d { animation-delay: 0.95s; }

@keyframes covRingOut {
    0%   { transform: scale(0.38); opacity: 0.72; }
    68%  { transform: scale(2.8); opacity: 0; }
    100% { transform: scale(0.38); opacity: 0; }
}

.cov-node-core {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2EB86A;
    box-shadow: 0 0 10px rgba(46,184,106,0.85);
    animation: covCorePulse 3.2s ease-in-out infinite;
}

.cov-node.blue .cov-node-core {
    background: #1389D4;
    box-shadow: 0 0 10px rgba(19,137,212,0.85);
}

@keyframes covCorePulse {
    0%, 100% { transform: scale(0.82); opacity: 0.72; }
    50%       { transform: scale(1.18); opacity: 1; }
}

.cov-node[data-n="2"] .cov-node-ring   { animation-delay: 1.05s; }
.cov-node[data-n="2"] .cov-node-ring.d { animation-delay: 2s; }
.cov-node[data-n="2"] .cov-node-core   { animation-delay: 1.05s; }

.cov-node[data-n="3"] .cov-node-ring   { animation-delay: 2.1s; }
.cov-node[data-n="3"] .cov-node-ring.d { animation-delay: 3.05s; }
.cov-node[data-n="3"] .cov-node-core   { animation-delay: 2.1s; }

/* ── Map county labels ── */
.cov-map-labels {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
}

.cov-map-label {
    position: absolute;
    left: var(--lx);
    top: var(--ly);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* Subtle tick line from node */
.cov-map-label::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    width: 10px;
    height: 1px;
    margin-right: 6px;
    background: rgba(255,255,255,0.18);
}

.cml-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.88);
    line-height: 1;
}

.cml-sub {
    font-size: 7.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
}

.cml-status {
    font-size: 7px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2EB86A;
    font-weight: 600;
    margin-top: 1px;
}

/* ── Bottom strip ── */
.cov-strip {
    position: relative;
    z-index: 2;
    margin: 48px auto 0;
    width: min(920px, 70vw);
    border: 1px solid rgba(19,137,212,0.15);
    border-radius: 8px;
    background: rgba(5,12,22,0.72);
    backdrop-filter: blur(8px);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.76);
    flex-wrap: wrap;
    text-align: center;
}

.cov-strip::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 120px;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #2EB86A 40%, #1389D4 60%, transparent);
    box-shadow: 0 0 12px rgba(19,137,212,0.5);
}

.cov-strip-icon  { color: #2EB86A; font-size: 14px; line-height: 1; }
.cov-strip-accent { color: #2EB86A; font-weight: 700; }
.cov-strip-sep   { color: rgba(255,255,255,0.18); }

/* ─────────────────────────────────────
   CONTACT
───────────────────────────────────── */
#contact {
    position: relative;
    padding: 156px 6% 164px;
    background: var(--black);
    overflow: hidden;
}

/* Subtle atmospheric corner glow */
#contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(19,137,212,0.04) 0%, transparent 65%);
    pointer-events: none;
}

.contact-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 88px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-lead {
    font-size: 16px;
    color: rgba(255,255,255,0.56);
    line-height: 1.98;
    font-weight: 300;
    margin: 32px 0 56px;
    letter-spacing: 0.15px;
}

.c-info-stack { display: flex; flex-direction: column; gap: 24px; }

.c-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.c-info-icon {
    width: 40px; height: 40px;
    background: rgba(19,137,212,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
    transition: background 0.3s;
}
.c-info-item:hover .c-info-icon { background: rgba(19,137,212,0.16); }
.c-info-icon svg { width: 16px; height: 16px; color: var(--blue); }

.c-info-lbl {
    font-size: 9.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.85;
}
.c-info-val {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    font-weight: 300;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(10,22,34,0.6);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    position: relative;
}

/* Top accent line on form */
form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--lime));
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    position: relative;
}
.field label {
    font-size: 9.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    transition: color 0.25s;
}
.field:focus-within label { color: var(--blue); }

.field input,
.field textarea,
.field select {
    background: rgba(7,17,28,0.8);
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    clip-path: polygon(7px 0%,100% 0%,calc(100% - 7px) 100%,0% 100%);
}
.field textarea {
    resize: vertical;
    min-height: 122px;
    clip-path: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.field select { cursor: pointer; }
.field select option { background: #0d1b2a; }
.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: rgba(19,137,212,0.35);
    border-bottom-color: var(--blue);
    background: rgba(10,24,38,0.95);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.18); }

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: var(--lime);
    color: var(--white);
    padding: 18px 44px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    clip-path: polygon(12px 0%,100% 0%,calc(100% - 12px) 100%,0% 100%);
    margin-top: 6px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.submit-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.1);
    transform: translateX(-110%);
    transition: transform 0.4s ease;
}
.submit-btn:hover { background: var(--lime-dark); transform: translateY(-2px); }
.submit-btn:hover::before { transform: translateX(0); }
.submit-btn svg { transition: transform 0.25s; }
.submit-btn:hover svg { transform: translateX(5px); }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
footer {
    background: linear-gradient(180deg, var(--black-mid) 0%, rgba(5,10,18,1) 100%);
    position: relative;
    overflow: hidden;
}

/* Atmospheric depth gradient */
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 30%; right: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(19,137,212,0.35), transparent);
    pointer-events: none;
}

/* Subtle bottom atmosphere */
footer::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 240px;
    background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(19,137,212,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-top-line {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--lime) 25%, var(--blue) 60%, transparent 100%);
    opacity: 0.65;
}

.footer-top {
    padding: 96px 6% 84px;
    display: grid;
    grid-template-columns: 1.65fr 1fr 1fr;
    gap: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 28px;
}

.footer-logo-name {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.85);
}

.footer-logo-sub {
    display: block;
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    font-weight: 600;
    margin-top: 2px;
}

.footer-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.52);
    line-height: 2.04;
    font-weight: 300;
    max-width: 300px;
    margin-bottom: 32px;
    letter-spacing: 0.15px;
}

.footer-slogan {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--blue);
    opacity: 0.65;
    text-transform: uppercase;
}


.footer-col-label {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.50);
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.footer-nav li a {
    display: flex;
    align-items: center;
    gap: 0px;
    padding: 13px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.60);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.4px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.3s, gap 0.3s;
}
.footer-nav li:last-child a { border-bottom: none; }

.footer-nav li a::before {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--blue);
    flex-shrink: 0;
    transition: width 0.28s ease, margin-right 0.28s ease;
    margin-right: 0;
}
.footer-nav li a:hover { color: rgba(255,255,255,0.85); gap: 0; }
.footer-nav li a:hover::before { width: 14px; margin-right: 10px; }

.footer-contacts { display: flex; flex-direction: column; }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    font-size: 12.5px;
    color: rgba(255,255,255,0.60);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.3s;
    font-weight: 300;
    letter-spacing: 0.2px;
}
.footer-contact-item:last-child { border-bottom: none; }
.footer-contact-item svg {
    width: 14px; height: 14px;
    color: var(--blue);
    flex-shrink: 0;
    opacity: 0.80;
}
a.footer-contact-item:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
    padding: 30px 6%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,0.045);
    position: relative;
    z-index: 1;
}

.footer-copy {
    justify-self: start;
    font-size: 11px;
    color: rgba(255,255,255,0.50);
    letter-spacing: 0.4px;
    font-weight: 300;
}
.footer-copy span { color: var(--blue); opacity: 0.88; }

.footer-tag {
    justify-self: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 4.5px;
    color: rgba(19,137,212,0.88);
    text-transform: uppercase;
    opacity: 1;
}

.footer-neutron {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    opacity: 0.68;
    filter: none;
    transition: opacity 0.3s ease;
}
.footer-neutron:hover { opacity: 1; }

.neutron-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    filter: none;
}

.footer-neutron span {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.66);
    font-weight: 500;
    white-space: nowrap;
}

/* ─── RECAPTCHA BADGE ─── */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.recaptcha-disclaimer {
    margin-top: 14px;
    font-size: 10px;
    line-height: 1.5;
    color: rgba(255,255,255,0.28);
    text-align: center;
}

.recaptcha-disclaimer a {
    color: rgba(19,137,212,0.7);
    text-decoration: none;
}


/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .why-inner,
    .contact-inner { grid-template-columns: 1fr; gap: 60px; }
    .pillars-grid { grid-template-columns: 1fr; }
    form { padding: 28px 24px; }
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .hero-image {
        display: block !important;
        position: absolute;
        inset: 72px 0 0 0;
        width: 100%;
        height: calc(100svh - 72px);
        opacity: 1;
        z-index: 1;
        clip-path: none !important;
    }
    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 86% center;
        display: block;
        opacity: 1;
        filter: brightness(.74) contrast(1.08) saturate(1.02);
    }
    .hero-image::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        background: linear-gradient(
            90deg,
            rgba(5,12,22,.78) 0%,
            rgba(5,12,22,.58) 45%,
            rgba(5,12,22,.32) 100%
        );
    }
    .hero-image::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 3;
        background: linear-gradient(
            180deg,
            rgba(5,12,22,.38) 0%,
            rgba(5,12,22,.14) 42%,
            rgba(5,12,22,.58) 100%
        );
        pointer-events: none;
    }
    .hero-atmosphere,
    .hero-scan,
    .hero-glow-br,
    .hero-glow-tl { display: none; }
    .hero-content { position: relative; z-index: 5; max-width: 92%; padding-bottom: 52px; }
    .nav-links  { display: none; }
    .hamburger  { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .s-card        { padding: 44px 36px 40px; }
    .s-name        { font-size: 24px; letter-spacing: 1.5px; }
    .s-desc        { font-size: 13px; }
    .form-row   { grid-template-columns: 1fr; }
    .hero-h1            { font-size: clamp(46px,11.6vw,75px); margin-bottom: 52px; }
    .hero-eyebrow       { margin-bottom: 38px; }
    .hero-eyebrow span  { font-size: 11px; letter-spacing: .30em; }
    .hero-sub           { font-size: 17px; line-height: 1.75; margin-bottom: 40px; }
    .hero-ctas          { gap: 12px; }
    .btn-red            { padding: 15px 37px; font-size: 11px; }
    .btn-outline        { padding: 14px 37px; font-size: 11px; }
    .hero-scroll        { gap: 12px; bottom: 36px; }
    .hero-scroll span   { font-size: 7.5px; letter-spacing: 3px; }
    .scroll-track       { width: 37px; }
    .hero-data-strip    { display: none; }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 44px;
        padding: 56px 6% 48px;
    }
    .footer-brand { grid-column: auto; }
    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 16px;
        padding: 24px 6%;
    }
    .footer-copy,
    .footer-tag,
    .footer-neutron { justify-self: center; }
    .footer-tag {
        font-size: 10px;
        letter-spacing: 4px;
        color: rgba(19,137,212,0.65);
    }
    .footer-neutron { opacity: 0.75; }

    /* Why Us */
    #why-us {
        padding: 88px 5% 96px;
        overflow: hidden;
    }
    .why-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 52px;
    }
    .why-left {
        width: 100%;
        max-width: 100%;
    }
    #why-us .section-title {
        font-size: clamp(42px, 13vw, 64px);
        line-height: 0.92;
        letter-spacing: 1.5px;
    }
    .why-body {
        font-size: 14.5px;
        line-height: 1.85;
        margin: 28px 0 40px;
        max-width: 100%;
    }
    .stats-row {
        display: none;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2px;
        width: 100%;
    }
    .pillar {
        padding: 36px 28px;
        width: 100%;
    }
    .pillar-text {
        font-size: 12.5px;
        line-height: 1.75;
    }
}

/* ── Coverage responsive ── */
@media (max-width: 1120px) {
    .cov-strip { width: 100%; }
}

@media (max-width: 900px) {
    #coverage .section-title { white-space: normal; }
    .cov-bg-map {
        background-size: 120% auto;
        background-position: center top;
        opacity: 0.35;
    }
}

@media (max-width: 768px) {
    .cov-map-labels,
    .cov-node { display: none; }
    .cov-bg-map { opacity: 0.18; }
    #coverage { padding: 88px 5% 100px; }
    .cov-row { padding: 16px 18px; }
    .cov-row-name { font-size: 18px; }
    .cov-stats { grid-template-columns: 1fr; }
    .cov-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .cov-stat:last-child { border-bottom: none; }
    .cov-strip { padding: 14px 16px; font-size: 9px; gap: 10px; }
}

@media (max-width: 480px) {
    nav { padding: 0 4%; gap: 12px; justify-content: flex-start; }
    .logo-icon { height: 30px; }
    .logo-text .name { font-size: 18px; }
    #hero, #why-us, #coverage, #contact { padding-left: 5%; padding-right: 5%; }
    #services { padding-left: 5%; padding-right: 5%; }
    .s-card          { padding: 40px 28px 36px; }
    .footer-top { padding: 48px 5% 40px; }
    .footer-bottom { padding: 20px 5%; }
    #coverage .section-title { font-size: clamp(44px, 14.5vw, 68px); }
    .cov-row      { padding: 14px 16px; gap: 12px; }
    .cov-row-name { font-size: 17px; }
    .cov-map-panel { aspect-ratio: 4 / 3; }
    .cov-strip { font-size: 8.5px; letter-spacing: 1.5px; }

    /* Why Us small mobile */
    #why-us {
        padding: 76px 5% 84px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #coverage *, #coverage *::before, #coverage *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}
