/* ===== DESIGN TOKENS ===== */
:root {
    --bg:       #09090b;
    --bg-2:     #111116;
    --bg-card:  rgba(24, 24, 31, 0.4);
    --border:   rgba(255,255,255,0.07);
    --gold:     #FFD700;
    --gold-dim: rgba(255,215,0,0.15);
    --gold-glow:rgba(255,215,0,0.35);
    --green:    #34C759;
    --red:      #FF3B30;
    --text:     #FFFFFF;
    --muted:    #8E8E9A;
    --radius:   16px;
    --radius-lg:28px;
    --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Light Theme Overrides */
[data-theme="light"] {
    --bg:       #fafafa;
    --bg-2:     #ffffff;
    --bg-card:  rgba(255, 255, 255, 0.7);
    --border:   rgba(0,0,0,0.06);
    --gold:     #d97706; /* deeper gold for contrast */
    --gold-dim: rgba(217, 119, 6, 0.1);
    --gold-glow:rgba(217, 119, 6, 0.2);
    --green:    #16a34a;
    --text:     #111116;
    --muted:    #6b7280;
    --shadow-card: 0 10px 30px rgba(0,0,0,0.06);
}
[data-theme="light"] .navbar { background: rgba(255,255,255,0.85); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
[data-theme="light"] .logo { color: #111; }
[data-theme="light"] .hero-glow { filter: blur(90px); opacity: 0.3; }
[data-theme="light"] .map-status { background: rgba(255,255,255,0.85); color: #000; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
[data-theme="light"] .btn-primary { color: #fff; background: #000; box-shadow: 0 8px 25px rgba(0,0,0,0.15); border: 1px solid #222; }
[data-theme="light"] .btn-primary:hover { background: #222; box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
[data-theme="light"] .phone { background: #e5e5ea; border-color: #d1d1d6; box-shadow: inset 0 0 0 3px #111, 0 40px 80px rgba(0,0,0,0.15); }
[data-theme="light"] .sc-phone { background: #e5e5ea; border-color: #d1d1d6; box-shadow: inset 0 0 0 3px #111, 0 30px 60px rgba(0,0,0,0.1); }
[data-theme="light"] footer { background: #f4f4f5; border-top: 1px solid var(--border); }
[data-theme="light"] .footer-logo, [data-theme="light"] .footer-copy { color: #111; }
[data-theme="light"] .footer-links a { color: var(--muted); }
[data-theme="light"] .footer-links a:hover { color: #000; }
[data-theme="light"] .radar-sweep { background: conic-gradient(from 0deg, rgba(217, 119, 6, 0.2) 0deg, transparent 45deg, transparent 360deg); mix-blend-mode: multiply; }
[data-theme="light"] .map-vignette { background: linear-gradient(to bottom, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%), linear-gradient(to right, var(--bg) 0%, transparent 10%, transparent 90%, var(--bg) 100%); }
[data-theme="light"] .leaflet-tile { filter: brightness(110%) contrast(90%) hue-rotate(180deg) invert(100%); opacity: 0.15; }
[data-theme="light"] .float-chip { background: rgba(255,255,255,0.9); box-shadow: 0 8px 24px rgba(0,0,0,0.1); color: var(--text); }
[data-theme="light"] .driver-badge { background: rgba(22, 163, 74, 0.1); border-color: rgba(22, 163, 74, 0.2); }
[data-theme="light"] .hero-badge { background: rgba(217, 119, 6, 0.1); border-color: rgba(217, 119, 6, 0.2); }



/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); overflow-x: hidden; }
h1,h2,h3,h4,.logo { font-family: var(--font-head); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
section { padding: 100px 0; }
.mt-3 { margin-top: 1.2rem; }

/* ===== NAV ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    background: rgba(9,9,11,0.85); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 900; letter-spacing: -0.5px; color: var(--text); }
.logo img { display: block; height: 32px; width: auto; }
.logo .gold { color: var(--gold); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--muted); transition: color .25s; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.btn-nav-driver {
    font-size: 13px; font-weight: 700; color: var(--gold);
    border: 1px solid var(--gold); padding: 8px 16px; border-radius: 8px;
    transition: .25s;
}
.btn-nav-driver:hover { background: var(--gold-dim); }

.lang-switcher { display: flex; gap: 4px; }
.lang-switcher button, .theme-toggle {
    background: transparent; border: 1px solid var(--border);
    color: var(--muted); font-size: 14px; font-weight: 700;
    padding: 6px 12px; border-radius: 8px; cursor: pointer; transition: .2s; outline: none;
}
.theme-toggle { margin-right: 6px; }
.lang-switcher button.active { background: var(--gold); color: #fff; border-color: var(--gold); }
[data-theme="light"] .lang-switcher button.active { color: #fff; }
.lang-switcher button:hover, .theme-toggle:hover { background: var(--border); color: var(--text); }
[data-theme="light"] .theme-toggle i { color: #d97706; }

/* Mobile Menu */
.mobile-menu-btn { display: none; font-size: 24px; color: var(--text); background: transparent; border: none; cursor: pointer; padding: 4px; transition: .2s; }
.mobile-nav-overlay {
    position: fixed; top: 72px; left: 0; right: 0; background: var(--bg-card);
    backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--border); box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    padding: 24px; display: flex; flex-direction: column; gap: 24px;
    transform: translateY(-150%); opacity: 0; visibility: hidden; transition: .4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 998;
}
.mobile-nav-overlay.active { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav-overlay a { font-size: 18px; font-weight: 700; color: var(--text); text-align: center; padding: 12px; border-radius: 12px; background: rgba(128,128,128,0.05); }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: #000;
    font-family: var(--font-head); font-weight: 800; font-size: 16px;
    padding: 16px 32px; border-radius: 40px;
    box-shadow: 0 0 30px var(--gold-glow);
    transition: transform .2s, box-shadow .2s;
    border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px var(--gold-glow); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid var(--gold); color: var(--gold);
    font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: 40px;
    transition: .25s;
}
.btn-outline:hover { background: var(--gold-dim); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 110px; position: relative; overflow: hidden;
}
.hero-glow {
    position: absolute; top: -10%; left: -5%; width: 60vw; height: 60vw;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
    filter: blur(80px); pointer-events: none; z-index: 0;
}
.hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
    color: var(--gold); background: var(--gold-dim); border: 1px solid var(--gold-glow);
    padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.hero-text h1 { font-size: 58px; line-height: 1.08; margin-bottom: 20px; }
.hero-text p { font-size: 18px; color: var(--muted); margin-bottom: 36px; max-width: 480px; }
.pwa-hint { font-size: 13px; color: var(--muted); margin-top: 14px; display: flex; align-items: center; gap: 6px; }

/* Phone Stack */
.hero-phones { position: relative; display: flex; justify-content: center; align-items: center; height: 600px; }
.phone-stack { position: relative; width: 280px; height: 570px; }
.phone {
    position: absolute;
    width: 260px; height: 540px;
    background: #0f0f11; border-radius: 46px;
    border: 5px solid #2e2e30;
    box-shadow: 
        inset 0 0 0 3px #000, 
        inset 0 0 10px rgba(255,255,255,0.1), 
        0 40px 80px rgba(0,0,0,0.8), 
        0 0 0 2px rgba(255,255,255,0.03);
    overflow: hidden;
}
.phone::before {
    content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 90px; height: 26px; background: #000; border-radius: 20px; z-index: 20;
    box-shadow: inset 0 0 4px rgba(255,255,255,0.05); pointer-events: none;
}
.phone::after {
    content: ''; position: absolute; inset: 0; border-radius: 46px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%);
    pointer-events: none; z-index: 10;
}
.phone-screen { width: calc(100% - 6px); height: calc(100% - 6px); background: #000; overflow: hidden; border-radius: 40px; margin: 3px; position: relative; z-index: 1; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone-back {
    transform: rotate(4deg) translate(30px, 30px) scale(0.93);
    filter: brightness(0.6);
    z-index: 1;
}
.phone-front { top: 0; left: 0; z-index: 2; transform: rotate(-3deg); }

/* Floating Chips */
.float-chip {
    position: absolute; background: rgba(0,0,0,0.9); border: 1px solid var(--border);
    padding: 9px 16px; border-radius: 30px; font-size: 13px; font-weight: 700;
    display: flex; align-items: center; gap: 7px; backdrop-filter: blur(8px); z-index: 10;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.chip-a { top: 80px; left: -30px; animation: chip-float 5s ease-in-out infinite; }
.chip-b { bottom: 120px; right: -20px; animation: chip-float 6s ease-in-out infinite reverse; }
@keyframes chip-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--bg-2); }
.section-title { font-size: 42px; font-weight: 800; margin-bottom: 16px; }
.section-sub { font-size: 18px; color: var(--muted); max-width: 580px; margin: 0 auto 50px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.step-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 40px 30px; position: relative; overflow: hidden;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    transition: transform .3s, border-color .3s, box-shadow .3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.step-card:hover { transform: translateY(-6px); border-color: var(--gold-glow); box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 40px rgba(255,215,0,0.1); }
[data-theme="light"] .step-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 0 40px rgba(217, 119, 6, 0.1); border-color: var(--gold-glow); }
.step-num { position: absolute; top: 20px; right: 24px; font-size: 80px; font-weight: 900; color: rgba(255,215,0,0.05); line-height: 1; font-family: var(--font-head); }
[data-theme="light"] .step-num { color: rgba(0,0,0,0.03); }
.step-icon { font-size: 36px; color: var(--gold); margin-bottom: 20px; }
.step-card h3 { font-size: 20px; margin-bottom: 12px; }
.step-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ===== LIVE MAP ===== */
.map-section { padding: 0; }
.map-section .container { padding-top: 80px; }
.map-wrapper { position: relative; width: 100%; height: 560px; overflow: hidden; margin-top: 40px; }
#liveMap { width: 100%; height: 100%; z-index: 1; }
.map-vignette {
    position: absolute; inset: 0; z-index: 3; pointer-events: none;
    background: linear-gradient(to bottom, var(--bg) 0%, transparent 18%, transparent 82%, var(--bg) 100%),
                linear-gradient(to right, var(--bg) 0%, transparent 10%, transparent 90%, var(--bg) 100%);
}
.radar-sweep {
    position: absolute; top: 50%; left: 50%;
    width: 300%; height: 300%;
    transform-origin: 0 0;
    background: conic-gradient(from 0deg, rgba(255,215,0,0.3) 0deg, transparent 45deg, transparent 360deg);
    animation: radar-rotate 6s linear infinite;
    z-index: 2; pointer-events: none; mix-blend-mode: screen;
}
@keyframes radar-rotate { to { transform: rotate(360deg); } }
.map-status {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    z-index: 4; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
    border: 1px solid var(--gold); padding: 10px 22px; border-radius: 30px;
    display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--gold);
}
.status-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(52,199,89,.4)} 50%{opacity:.7;box-shadow:0 0 0 6px transparent} }

/* ===== SCREENSHOTS (Phone Mockup Cards) ===== */
.screenshots-section { background: var(--bg-2); }
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 50px;
    align-items: start;
    justify-items: center;
}

/* The outer wrapper: centers the phone + label */
.screenshot-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transition: transform .3s;
}
.screenshot-card:hover { transform: translateY(-8px); }

/* The phone bezel */
.sc-phone {
    position: relative;
    width: 200px;
    background: #0f0f11;
    border-radius: 36px;
    border: 4px solid #2e2e30;
    box-shadow:
        inset 0 0 0 2px #000,
        inset 0 0 6px rgba(255,255,255,0.05),
        0 24px 60px rgba(0,0,0,0.8),
        0 0 0 1px rgba(255,255,255,0.03);
    padding: 3px;
}

/* Glossy screen reflection */
.sc-phone::after {
    content: ''; position: absolute; inset: 0; border-radius: 38px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 40%);
    pointer-events: none; z-index: 10;
}

/* Side buttons (purely decorative CSS) */
.sc-phone::before {
    content: ''; position: absolute; right: -7px; top: 80px;
    width: 3px; height: 50px; background: #2e2e30; border-radius: 2px;
}

/* Dynamic island Replacement */
.sc-phone-notch { display: none; }
.sc-phone-bar { display: none; }

.sc-phone::before {
    content: ''; position: absolute; right: auto; left: 50%; top: 8px; transform: translateX(-50%);
    width: 60px; height: 18px; background: #000; border-radius: 12px; z-index: 20;
    box-shadow: inset 0 0 3px rgba(255,255,255,0.05);
}

/* Screen area */
.sc-phone-screen {
    background: #000; border-radius: 32px; overflow: hidden; position: relative; z-index: 1;
}

/* Image: full original proportion, never cropped */
.sc-phone-screen img {
    width: 100%;
    height: auto;
    display: block;
}

/* Home bar */
.sc-phone-bar {
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    margin: 10px auto 0;
}

.screenshot-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    text-align: center;
    max-width: 160px;
    line-height: 1.4;
}

/* ===== FEATURES ===== */
.features-section { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-item {
    background: var(--bg-card); border: 1px solid var(--border);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg); padding: 36px;
    transition: .3s; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.feature-item:hover { border-color: var(--gold-glow); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.feature-item i { font-size: 32px; color: var(--gold); margin-bottom: 18px; }
.feature-item h3 { font-size: 18px; margin-bottom: 10px; }
.feature-item p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ===== HONESTY SECTION ===== */
.honesty-section { background: var(--bg); padding-top: 40px; padding-bottom: 80px; }
.honesty-card {
    background: var(--bg-card); border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg); padding: 48px; text-align: center;
    position: relative; overflow: hidden; max-width: 800px; margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.honesty-card::before {
    content: ''; position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
    width: 200px; height: 100px; background: rgba(52,199,89,0.3); filter: blur(80px);
}
.honesty-icon { font-size: 48px; color: var(--green); margin-bottom: 24px; }
.honesty-title { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.honesty-desc { font-size: 16px; color: var(--muted); line-height: 1.7; }

/* ===== PWA ===== */
.pwa-section { background: var(--bg-2); }
.pwa-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.pwa-text h2 { font-size: 40px; margin-bottom: 16px; }
.pwa-text p { font-size: 16px; color: var(--muted); max-width: 480px; line-height: 1.7; }
.phone-pwa { width: 220px; height: 440px; }
.phone-pwa .phone-screen img { object-position: top; }

/* ===== DRIVER PAGE HERO ===== */
.driver-hero {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 110px; background: var(--bg); position: relative; overflow: hidden;
}
.driver-hero-glow {
    position: absolute; top: -10%; right: -5%; width: 55vw; height: 55vw;
    background: radial-gradient(circle, rgba(52,199,89,0.2) 0%, transparent 65%);
    filter: blur(80px); pointer-events: none; z-index: 0;
}
.driver-hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.driver-badge {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    color: var(--green); background: rgba(52,199,89,.12); border: 1px solid rgba(52,199,89,.3);
    padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.driver-hero-text h1 { font-size: 54px; line-height: 1.08; margin-bottom: 20px; }
.driver-hero-text p { font-size: 18px; color: var(--muted); margin-bottom: 36px; }

/* Driver Features */
.driver-feats { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.driver-feat { display: flex; align-items: flex-start; gap: 14px; }
.driver-feat i { color: var(--green); font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.driver-feat h4 { font-size: 17px; margin-bottom: 4px; }
.driver-feat p { font-size: 14px; color: var(--muted); }
.store-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btns img { height: 46px; transition: .25s; }
.store-btns img:hover { transform: translateY(-4px); }

/* Referral Block */
.referral-section { background: var(--bg-2); }
.referral-card {
    background: var(--bg-card); border: 1px solid rgba(255,215,0,0.2);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg); padding: 60px; text-align: center;
    position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.ref-bg-icon { position: absolute; right: -40px; top: -40px; font-size: 280px; color: var(--gold); opacity: 0.04; transform: rotate(15deg); pointer-events: none; }
.referral-title { font-size: 38px; color: var(--gold); margin-bottom: 14px; text-shadow: 0 0 40px var(--gold-glow); }
.referral-desc { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto 48px; }
.money-flow { display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap; }
.money-node {
    width: 240px; background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 24px; text-align: center; transition: .3s;
}
.money-node.highlight { border-color: var(--gold); box-shadow: 0 0 40px rgba(255,215,0,0.12); }
.money-node i { font-size: 36px; color: var(--muted); margin-bottom: 14px; }
.money-node.highlight i { color: var(--gold); }
.money-node h4 { font-size: 16px; margin-bottom: 12px; }
.money-amount { font-size: 44px; font-weight: 900; font-family: var(--font-head); }
.money-node small { font-size: 13px; color: var(--muted); display: block; margin-top: 8px; }
.money-node.highlight .money-amount { color: var(--gold); }
.flow-arrow { font-size: 28px; color: rgba(255,215,0,.4); }

/* ===== FOOTER ===== */
footer { background: #000; padding: 48px 0 28px; border-top: 1px solid var(--border); }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-size: 20px; font-weight: 900; font-family: var(--font-head); }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); transition: .2s; }
.footer-links a:hover { color: var(--text); }
.footer-cities { font-size: 12px; color: #333; line-height: 2; margin-bottom: 24px; border-top: 1px solid var(--border); padding-top: 24px; }
.footer-cities span { margin-right: 4px; }
.footer-copy { font-size: 12px; color: #333; text-align: center; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; visibility: hidden; }

/* ===== LEAFLET CUSTOMIZATION ===== */
.leaflet-tile { filter: invert(100%) hue-rotate(180deg) brightness(80%) contrast(110%); }
.leaflet-container { background: var(--bg); }

/* ===================================================
   RESPONSIVE — TABLET  ≤ 960px
   =================================================== */
@media (max-width: 960px) {
    section { padding: 70px 0; }

    /* Nav */
    .nav-links { display: none; }
    .btn-nav-driver { display: none; }
    .mobile-menu-btn { display: block; }
    .logo { font-size: 18px; }

    /* Hero */
    .hero { padding-top: 90px; min-height: auto; padding-bottom: 60px; }
    .hero-inner,
    .driver-hero-inner,
    .pwa-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 42px; }
    .driver-hero-text h1 { font-size: 40px; }
    .hero-text p,
    .driver-hero-text p { margin-left: auto; margin-right: auto; }
    .pwa-hint { justify-content: center; }
    .hero-badge, .driver-badge { margin-left: auto; margin-right: auto; }

    /* Phone stack in hero */
    .hero-phones { height: 420px; margin-top: 20px; }
    .phone-stack { width: 220px; height: 430px; }
    .phone { width: 210px; height: 418px; border-radius: 36px; }
    .chip-a { left: 0px; top: 40px; font-size: 12px; padding: 7px 12px; }
    .chip-b { right: 0px; bottom: 80px; font-size: 12px; padding: 7px 12px; }

    /* Steps & Features */
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .section-title { font-size: 32px; }

    /* Screenshots — 2 cols */
    .screenshots-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sc-phone { width: 170px; }

    /* Map */
    .map-wrapper { height: 400px; }

    /* PWA */
    .pwa-phone { display: none; }
    .pwa-inner { grid-template-columns: 1fr; }

    /* Driver features */
    .driver-feats { text-align: left; }
    .store-btns { justify-content: center; }

    /* Referral */
    .referral-card { padding: 40px 24px; }
    .referral-title { font-size: 28px; }
    .money-flow { flex-direction: column; gap: 16px; }
    .flow-arrow { transform: rotate(90deg); font-size: 20px; }
    .money-node { width: 100%; max-width: 280px; padding: 28px 20px; }
    .money-amount { font-size: 36px; }

    /* Footer */
    .footer-top { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ===================================================
   RESPONSIVE — MOBILE  ≤ 640px
   =================================================== */
@media (max-width: 640px) {
    section { padding: 56px 0; }
    .container { padding: 0 16px; }

    /* Nav — logo + lang only */
    .nav-container { height: 60px; }
    .btn-nav-driver { display: none; }
    .logo { font-size: 16px; }

    /* Hero */
    .hero { padding-top: 76px; }
    .hero-text h1 { font-size: 32px; line-height: 1.12; }
    .driver-hero-text h1 { font-size: 30px; }
    .hero-text p,
    .driver-hero-text p { font-size: 15px; }
    .btn-primary { font-size: 14px; padding: 14px 24px; width: 100%; justify-content: center; }

    /* Phone stack — smaller on small screens */
    .hero-phones { height: 360px; }
    .phone-stack { width: 180px; height: 360px; }
    .phone { width: 170px; height: 348px; border-radius: 30px; border-width: 6px; }
    .float-chip { display: none; } /* hide chips — too cramped */

    /* Steps & Features — single column */
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .section-title { font-size: 26px; }
    .section-sub { font-size: 15px; }
    .step-card { padding: 28px 20px; }
    .step-num { font-size: 60px; }
    .feature-item { padding: 24px 20px; }

    /* Screenshots — 2 cols but smaller phones */
    .screenshots-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .sc-phone { width: 140px; border-width: 5px; border-radius: 28px; padding: 10px 6px; }
    .sc-phone-notch { width: 44px; height: 8px; margin-bottom: 7px; }
    .screenshot-label { font-size: 12px; }

    /* Map */
    .map-wrapper { height: 320px; }
    .map-section .container { padding-top: 50px; }
    .map-status { font-size: 11px; padding: 8px 14px; white-space: nowrap; }

    /* Driver feats */
    .driver-feat h4 { font-size: 15px; }
    .driver-feat p { font-size: 13px; }
    .driver-feats { gap: 14px; }

    /* Referral */
    .referral-card { padding: 28px 16px; }
    .referral-title { font-size: 22px; }
    .referral-desc { font-size: 14px; margin-bottom: 28px; }

    /* Footer */
    .footer-links { flex-direction: column; gap: 12px; }
    .footer-cities { font-size: 11px; line-height: 1.9; }
}

/* ===================================================
   RESPONSIVE — TINY  ≤ 380px
   =================================================== */
@media (max-width: 380px) {
    .hero-text h1 { font-size: 26px; }
    .screenshots-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .sc-phone { width: 120px; }
    .section-title { font-size: 22px; }
}

/* ===================================================
   COOKIE BANNER
   =================================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    z-index: 9999;
    margin: 0 auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    transform: translateY(20px);
    opacity: 0;
}
.cookie-content { display: flex; align-items: center; gap: 16px; }
.cookie-content p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }
.cookie-content i { color: var(--gold); font-size: 24px; }
.cookie-content a { color: var(--gold); text-decoration: underline; transition: 0.2s; }
.cookie-content a:hover { color: var(--text); }
.cookie-btn { background: var(--gold); color: #000; border: none; padding: 10px 24px; border-radius: 20px; font-weight: 700; font-size: 14px; cursor: pointer; transition: 0.2s; white-space: nowrap; margin-left: 20px; box-shadow: 0 4px 15px rgba(255,215,0,0.3); }
[data-theme="light"] .cookie-btn { color: #fff; }
.cookie-btn:hover { background: var(--text); color: var(--bg); transform: translateY(-2px); }
@media (max-width: 600px) {
    .cookie-banner { flex-direction: column; text-align: center; gap: 16px; padding: 20px; }
    .cookie-btn { margin-left: 0; width: 100%; }
}

/* APK Promo Card - Premium Plaque Design */
.apk-promo-card {
    margin-top: 35px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 28px;
    padding: 35px;
    max-width: 540px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.5),
        inset 0 0 20px rgba(255,215,0,0.05);
    text-align: left;
    animation: pulse-border 4s infinite alternate;
}

@keyframes pulse-border {
    0% { border-color: rgba(255, 215, 0, 0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
    100% { border-color: rgba(255, 215, 0, 0.6); box-shadow: 0 20px 60px rgba(255, 215, 0, 0.1); }
}

.apk-promo-card::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}

.apk-promo-card h3 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.apk-promo-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.85);
    position: relative; z-index: 1;
}
.apk-promo-card .bonus-text {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.4;
    position: relative; z-index: 1;
}
.apk-promo-card .bonus-text span {
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow);
    font-weight: 900;
    font-size: 1.1em;
}
.apk-promo-card small {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    opacity: 0.7;
    color: var(--muted);
}
.apk-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: #000;
    padding: 16px 36px;
    border-radius: 16px;
    font-weight: 900;
    font-size: 17px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px var(--gold-glow);
    position: relative; z-index: 2;
    text-transform: uppercase;
}
.apk-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 45px var(--gold-glow);
    filter: brightness(1.1);
}
.apk-btn i { font-size: 20px; }

[data-theme="light"] .apk-promo-card { 
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-color: rgba(217, 119, 6, 0.3);
}
@media (max-width: 640px) {
    section { padding: 56px 0; }
    .container { padding: 0 16px; }

    /* Nav — logo + lang only */
    .nav-container { height: 60px; }
    .btn-nav-driver { display: none; }
    .logo { font-size: 16px; }

    /* Hero */
    .hero { padding-top: 76px; }
    .hero-text h1 { font-size: 32px; line-height: 1.12; }
    .driver-hero-text h1 { font-size: 30px; }
    .hero-text p,
    .driver-hero-text p { font-size: 15px; }
    .btn-primary { font-size: 14px; padding: 14px 24px; width: 100%; justify-content: center; }

    /* Phone stack — smaller on small screens */
    .hero-phones { height: 360px; }
    .phone-stack { width: 180px; height: 360px; }
    .phone { width: 170px; height: 348px; border-radius: 30px; border-width: 6px; }
    .float-chip { display: none; } /* hide chips — too cramped */

    /* Steps & Features — single column */
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .section-title { font-size: 26px; }
    .section-sub { font-size: 15px; }
    .step-card { padding: 28px 20px; }
    .step-num { font-size: 60px; }
    .feature-item { padding: 24px 20px; }

    /* Screenshots — 2 cols but smaller phones */
    .screenshots-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .sc-phone { width: 140px; border-width: 5px; border-radius: 28px; padding: 10px 6px; }
    .sc-phone-notch { width: 44px; height: 8px; margin-bottom: 7px; }
    .screenshot-label { font-size: 12px; }

    /* Map */
    .map-wrapper { height: 320px; }
    .map-section .container { padding-top: 50px; }
    .map-status { font-size: 11px; padding: 8px 14px; white-space: nowrap; }

    /* Driver feats */
    .driver-feat h4 { font-size: 15px; }
    .driver-feat p { font-size: 13px; }
    .driver-feats { gap: 14px; }

    /* Referral */
    .referral-card { padding: 28px 16px; }
    .referral-title { font-size: 22px; }
    .referral-desc { font-size: 14px; margin-bottom: 28px; }

    /* Footer */
    .footer-links { flex-direction: column; gap: 12px; }
    .footer-cities { font-size: 11px; line-height: 1.9; }
}

/* ===================================================
   RESPONSIVE — TINY  ≤ 380px
   =================================================== */
@media (max-width: 380px) {
    .hero-text h1 { font-size: 26px; }
    .screenshots-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .sc-phone { width: 120px; }
    .section-title { font-size: 22px; }
}

/* ===================================================
   SCHEDULED ORDERS SECTION (ULTRA PREMIUM)
   =================================================== */
.scheduled-section {
    padding: 140px 0;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.scheduled-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.07) 0%, transparent 70%);
    z-index: 0;
    filter: blur(100px);
}

.scheduled-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.scheduled-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 70px 50px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

/* Glass shine effect on hover */
.scheduled-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 55%
    );
    transform: rotate(-45deg);
    transition: all 0.8s;
    pointer-events: none;
    opacity: 0;
}

.scheduled-card:hover::after {
    transform: rotate(-45deg) translate(20%, 20%);
    opacity: 1;
}

.scheduled-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.1);
}

.scheduled-card.emergency:hover {
    border-color: rgba(255, 59, 48, 0.4);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 59, 48, 0.1);
}

.sch-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    padding: 8px 18px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.scheduled-card.emergency .sch-badge {
    background: rgba(255, 59, 48, 0.1);
    color: #ff5e57;
    border-color: rgba(255, 59, 48, 0.3);
}

/* Pulsing dot for Live badge */
.sch-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    display: inline-block;
    animation: badge-pulse 1.5s infinite;
}

@keyframes badge-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.sch-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, transparent 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 8px;
}

.scheduled-card.emergency .sch-icon-wrap {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.15) 0%, transparent 100%);
    border-color: rgba(255, 59, 48, 0.2);
    color: #ff5e57;
}

.scheduled-card h3 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(to bottom right, #ffffff 30%, #a1a1a1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scheduled-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
    font-weight: 400;
}

.sch-features {
    list-style: none;
    padding: 30px 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sch-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.sch-features li i {
    width: 24px;
    height: 24px;
    background: rgba(52, 199, 89, 0.15);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.scheduled-card.emergency .sch-features li i {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
}

@media (max-width: 992px) {
    .scheduled-grid { grid-template-columns: 1fr; gap: 30px; }
    .scheduled-card { padding: 50px 30px; }
    .scheduled-section { padding: 100px 0; }
    .scheduled-card h3 { font-size: 26px; }
}

/* Light Theme Adjustments */
[data-theme="light"] .scheduled-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .scheduled-card h3 {
    background: linear-gradient(to bottom right, #000 30%, #444 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
[data-theme="light"] .sch-features li { color: #333; }
[data-theme="light"] .sch-features { border-top-color: rgba(0, 0, 0, 0.05); }

/* Cookie Banner */
.cookie-banner {
    position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 600px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
    padding: 16px 24px; display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5); z-index: 9999; margin: 0 auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    transform: translateY(20px); opacity: 0;
}
.cookie-content { display: flex; align-items: center; gap: 16px; }
.cookie-content p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }
.cookie-btn { background: var(--gold); color: #000; border: none; padding: 10px 24px; border-radius: 20px; font-weight: 700; font-size: 14px; cursor: pointer; transition: 0.2s; white-space: nowrap; margin-left: 20px; }

/* APK Promo */
.apk-promo-card {
    margin-top: 35px; background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3); backdrop-filter: blur(25px); border-radius: 28px;
    padding: 35px; max-width: 540px; position: relative; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); text-align: left;
}
.apk-promo-card h3 { color: var(--gold); font-size: 24px; margin-bottom: 14px; font-weight: 800; }
.apk-btn { display: inline-flex; align-items: center; gap: 12px; background: var(--gold); color: #000; padding: 16px 36px; border-radius: 16px; font-weight: 900; }

/* ===================================================
   RESPONSIVE — TABLET  ≤ 960px
   =================================================== */
@media (max-width: 960px) {
    section { padding: 70px 0; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-inner, .driver-hero-inner, .pwa-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 42px; }
    .hero-phones { height: 420px; }
    .phone-stack { width: 220px; height: 430px; }
    .phone { width: 210px; height: 418px; }
    .steps-grid, .features-grid, .scheduled-grid { grid-template-columns: 1fr; }
    .screenshots-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .money-flow { flex-direction: column; }
}

/* ===================================================
   RESPONSIVE — MOBILE  ≤ 640px
   =================================================== */
@media (max-width: 640px) {
    .section-title { font-size: 32px; }
    .hero-text h1 { font-size: 34px; }
    .scheduled-card { padding: 40px 24px; }
    .sch-badge { top: 20px; right: 20px; font-size: 10px; }
    .apk-promo-card { padding: 30px 20px; text-align: center; margin-left: auto; margin-right: auto; }
    .apk-btn { width: 100%; justify-content: center; }
}
/* ===== FLOATING TELEGRAM BUTTON ===== */
.tg-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tg-icon {
    width: 60px;
    height: 60px;
    background: #0088cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.tg-float:hover .tg-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.6);
}

.tg-label {
    background: rgba(0, 136, 204, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 136, 204, 0.3);
    color: var(--text);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.tg-float:hover .tg-label {
    opacity: 1;
    transform: translateX(0);
}

/* Glow effect */
.tg-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: rgba(0, 136, 204, 0.4);
    z-index: -1;
    animation: tg-pulse 2s infinite;
}

@keyframes tg-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 640px) {
    .tg-float { bottom: 20px; right: 20px; }
    .tg-icon { width: 50px; height: 50px; font-size: 22px; }
    .tg-label { display: none; } /* Hide label on mobile to avoid blocking content */
}

/* Promo Code Block */
.promo-code-box {
    margin-top: 25px;
    background: var(--bg-card);
    border: 1.5px dashed var(--gold);
    border-radius: 16px;
    padding: 18px 24px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 100%;
    position: relative;
    overflow: hidden;
}
.promo-code-box:hover {
    background: var(--gold-dim);
    transform: translateY(-3px);
    border-style: solid;
    box-shadow: 0 10px 30px var(--gold-glow);
}
.promo-code-text {
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
}
.promo-code-text b {
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 2px;
    font-family: var(--font-head);
    display: inline-block;
    margin: 4px 0;
}
.promo-code-text span {
    color: var(--gold);
    font-weight: 800;
}
.promo-code-box .fa-copy {
    font-size: 12px;
    margin-left: 8px;
    opacity: 0.6;
}

/* ===================================================
   COVERAGE MAP MODAL
   =================================================== */
.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

button.btn-outline {
    background: transparent;
    cursor: pointer;
    outline: none;
    font-family: var(--font-head);
}

.coverage-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    opacity: 0;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.coverage-modal.active {
    display: flex;
    opacity: 1;
}

.coverage-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 1000px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.02);
    animation: modal-slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-slide-in {
    from { transform: translateY(30px) scale(0.97); }
    to { transform: translateY(0) scale(1); }
}

.coverage-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coverage-modal-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}

.coverage-modal-close {
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    outline: none;
}

.coverage-modal-close:hover {
    color: var(--text);
}

.coverage-modal-body {
    flex: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.coverage-map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#coverageMap {
    width: 100%;
    height: 100%;
    background: var(--bg);
}

/* Floating panels inside the Map */
.coverage-floating-panel {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coverage-search-box {
    display: flex;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    align-items: center;
}

.coverage-search-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 8px 12px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
}

.coverage-search-box input::placeholder {
    color: var(--muted);
}

.coverage-search-box button {
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.coverage-search-box button:hover {
    color: var(--text);
    background: var(--border);
}

.coverage-search-box .gps-btn {
    color: var(--gold);
}
.coverage-search-box .gps-btn:hover {
    color: var(--text);
    background: var(--gold-dim);
}

/* Status Card */
.coverage-status-card {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    display: flex;
    gap: 12px;
    transition: all 0.3s ease;
}

.coverage-status-card.info { border-left: 4px solid var(--muted); }
.coverage-status-card.high { border-left: 4px solid var(--green); }
.coverage-status-card.medium { border-left: 4px solid var(--gold); }
.coverage-status-card.low { border-left: 4px solid #FFA500; }
.coverage-status-card.none { border-left: 4px solid var(--red); }

.status-icon {
    font-size: 20px;
    color: var(--muted);
    margin-top: 2px;
}
.coverage-status-card.high .status-icon { color: var(--green); }
.coverage-status-card.medium .status-icon { color: var(--gold); }
.coverage-status-card.low .status-icon { color: #FFA500; }
.coverage-status-card.none .status-icon { color: var(--red); }

.status-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}
.status-text p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--muted);
}

/* Legend */
.coverage-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 240px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.coverage-legend h5 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: var(--text);
}

.legend-scale {
    margin-bottom: 10px;
}

.legend-gradient {
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(to right, rgba(255, 215, 0, 0.6) 0%, rgba(255, 215, 0, 0.3) 50%, rgba(255, 215, 0, 0.05) 100%);
}

[data-theme="light"] .legend-gradient {
    background: linear-gradient(to right, rgba(217, 119, 6, 0.5) 0%, rgba(217, 119, 6, 0.25) 50%, rgba(217, 119, 6, 0.05) 100%);
}

.legend-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--muted);
    margin-top: 4px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--muted);
    margin-top: 8px;
}

.legend-color-box {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    border: 1px dashed var(--border);
    background: transparent;
}

/* Light Theme adjustments */
[data-theme="light"] .coverage-modal {
    background: rgba(250, 250, 250, 0.85);
}
[data-theme="light"] .coverage-search-box,
[data-theme="light"] .coverage-status-card,
[data-theme="light"] .coverage-legend {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
[data-theme="light"] .coverage-modal-close {
    color: var(--muted);
}
[data-theme="light"] .coverage-modal-close:hover {
    color: #000;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .coverage-modal {
        padding: 0;
    }
    .coverage-modal-content {
        height: 100%;
        border-radius: 0;
        border: none;
    }
    .coverage-floating-panel {
        top: 10px;
        left: 10px;
        right: 10px;
        width: auto;
    }
    .coverage-legend {
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: auto;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .legend-item {
        margin-top: 4px;
    }
}


