
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }


        :root {
    /* Brand blue + combinations (Kept vibrant for Light Mode) */
    --blue:        #0395EF;
    --blue-dark:   #0278c7;
    --blue-deeper: #005691;
    --blue-glow:   rgba(3, 149, 239, 0.12); /* Slightly softer glow */
    --blue-pale:   rgba(3, 149, 239, 0.06);

    /* Light Mode Backgrounds — clean, airy, and layered */
    --bg:      #FFFFFF;         /* Primary Background */
    --bg2:     #F8FAFC;         /* Secondary Background (Sections) */
    --surface: #F1F5F9;         /* Tertiary Surfaces */
    --card:    #FFFFFF;         /* Cards (Usually white with a shadow) */
    --card2:   #FDFDFD;         /* Secondary Cards */

    /* Text — deep charcoal/navy, never pure black for better readability */
    --text:    #0F172A;         /* Primary Headlines */
    --muted:   #64748B;         /* Muted Subtitles & Descriptions */

    /* Border — subtle and crisp */
    --border:  rgba(3, 149, 239, 0.15);
    --border2: rgba(15, 23, 42, 0.08);

    /* Accent white for CTA text on blue buttons */
    --white:   #ffffff;

    --green:   #16a34a;         /* Slightly deeper green for contrast on white */
}

        body {
            font-family: 'Manrope', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        /* ══════════════════════════════
           NAVBAR
        ══════════════════════════════ */
     
        #navbar {
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0;
    z-index: 200;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6vw;
    
    /* Light Mode Adjustments */
    background: rgba(255, 255, 255, 0.85); /* Semi-transparent white */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    /* Using a subtle dark border or the blue brand border */
    border-bottom: 1px solid var(--border2); 
    
    /* Soft shadow adds depth that wasn't needed in dark mode */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03); 
    
    transition: all 0.3s ease;
}

/* Ensure your nav links are visible */
#navbar a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

#navbar a:hover {
    color: var(--blue);
}


        .nav-logo img { height: 40px; }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-size: 0.78rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--muted);
            text-decoration: none;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: #fff; }

        .nav-links .btn-nav {
            background: var(--blue) !important;
            color: #fff !important;
            padding: 0.55rem 1.4rem;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 0.45rem;
            transition: background 0.2s, transform 0.2s;
            font-size: 0.78rem !important;
            letter-spacing: 0.06em !important;
        }

        .nav-links .btn-nav:hover {
            background: var(--blue-dark) !important;
            transform: translateY(-1px);
        }

        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
        .hamburger span { display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: all 0.3s; }



/* ══════════════════════════════
   HERO - LIGHT MODE UPDATED
   ══════════════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--bg);
    display: flex;
    align-items: center;
    padding: 120px 6vw 60px;
    position: relative;
    overflow: hidden; /* Keeps the grid/glow inside */
}

/* Updated radial glow for Light Mode (Sky Blue tint) */
.hero::before {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3,149,239,0.08) 0%, transparent 70%);
    top: -200px; right: -150px;
    pointer-events: none;
}

/* Softer grid for Light Mode */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(3,149,239,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3,149,239,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    display: flex;
    flex-direction: column; /* Force vertical stack for Mobile */
    align-items: center;
    text-align: center;      /* Center text for Mobile */
    gap: 4rem;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* Desktop layout: Side by side */
/* Desktop Layout Switch */
@media (min-width: 992px) {
    .hero-inner {
        flex-direction: row; /* Side-by-side for Desktop */
        text-align: left;
        justify-content: space-between;
    }
}


.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(3,149,239,0.2);
    background: var(--blue-pale);
    color: var(--blue-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 50px; /* Modern pill shape */
    margin-bottom: 1.6rem;
    animation: fadeInUp 0.6s ease both;
}

/* --- TEXT STYLES --- */
.hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    color: var(--text);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}
.hero-headline .accent {
    color: var(--blue);
    display: block;
}

.hero-body {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2.5rem; /* Centered for mobile */
}

@media (min-width: 992px) {
    .hero-body { margin-left: 0; }
}
/* Fixed Bold text for light mode */
.hero-body strong { 
    color: var(--text); 
    font-weight: 700; 
}

/* ══════════════════════════════
   MOBILE BADGE & VISUAL FIXES
   ══════════════════════════════ */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 320px; /* Keeps phone size consistent */
    margin-top: 20px;
    animation: fadeInUp 0.8s 0.4s ease both;
}

.phone-frame {
    position: relative;
    z-index: 10;
}

.phone-frame img {
    width: 100%;
    height: auto;
    border-radius: 38px;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.15); /* Soft premium shadow */
}

/* Floating Badges Visibility Fix */
.float-badge {
    position: absolute;
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12); /* Essential for visibility on white */
    border: 1px solid rgba(0,0,0,0.04);
    z-index: 20;
    min-width: 140px;
}

/* Position Adjustments */
.float-badge.tl { top: 10%; left: -25px; }
.float-badge.br { bottom: 15%; right: -25px; }

/* Pulse Dot Fix for Light Mode */
.pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
}




/* Animation for dot */
@keyframes pdot {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(34,197,94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94, 0); }
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .hero { padding-top: 100px; text-align: center; }
    .hero-inner { gap: 3.5rem; }
    .hero-body { margin-left: auto; margin-right: auto; }
    .hero-visual { order: 2; } /* Ensures image comes AFTER text/buttons */
    
    .float-badge {
        scale: 0.9; /* Slightly smaller on mobile */
    }
    .float-badge.tl { left: -10px; }
    .float-badge.br { right: -10px; }
}


      
      .download-block { animation: fadeInUp 0.6s 0.3s ease both; }

.dl-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted); /* Use #64748B or similar */
    margin-bottom: 1rem;
}

.dl-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.2rem; }



.dl-badges {
    display: flex;
    gap: 1rem;
    justify-content: center; /* Center buttons on mobile */
    flex-wrap: wrap;
}
@media (min-width: 992px) {
    .dl-badges { justify-content: flex-start; }
}

/* Main Download Button: Deep Navy (Classic Tech Style) */
.dl-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #0F172A; /* Deep Navy/Black */
    color: #ffffff !important;
    padding: 0.72rem 1.4rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Manrope', sans-serif;
    border: 1px solid #0F172A;
}

.dl-badge:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15); 
    background: #1e293b;
}

.dl-badge i { font-size: 1.55rem; color: #ffffff; }
.dl-badge .bt small { 
    display: block; 
    font-size: 0.62rem; 
    font-weight: 600; 
    opacity: 0.7; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
}
.dl-badge .bt span { 
    display: block; 
    font-size: 0.92rem; 
    font-weight: 800; 
    line-height: 1.15; 
}

/* Secondary Outlined Button: Clean & Airy */
.dl-badge.outlined {
    background: #ffffff;
    color: #0F172A !important;
    border: 1px solid rgba(15, 23, 42, 0.12); /* Subtle dark border */
}

.dl-badge.outlined i { color: #0F172A; }
.dl-badge.outlined .bt small { color: #64748B; opacity: 0.8; }
.dl-badge.outlined .bt span { color: #0F172A; }

.dl-badge.outlined:hover { 
    border-color: var(--blue); 
    background: rgba(3, 149, 239, 0.04); 
    box-shadow: 0 12px 24px rgba(3, 149, 239, 0.1); 
    color: var(--blue) !important;
}

.dl-badge.outlined:hover i,
.dl-badge.outlined:hover span {
    color: var(--blue);
}
      
        /* Stats row */
        .hero-stats { display: flex; align-items: center; gap: 2rem; }
        .stat { display: flex; flex-direction: column; }
        .stat strong { font-family: 'Bebas Neue', sans-serif; font-size: 2.1rem; color: var(--blue); letter-spacing: 0.02em; line-height: 1; }
        .stat span { font-size: 0.7rem; font-weight: 600; color: var(--muted); letter-spacing: 0.07em; text-transform: uppercase; margin-top: 0.2rem; }
        .sdiv { width: 1px; height: 38px; background: var(--border); }

        /* ── PHONE ── */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            animation: fadeInUp 0.8s 0.15s ease both;
        }

        .phone-frame { position: relative; width: fit-content; }

        .phone-frame img {
            width: 270px;
            border-radius: 42px;
            border: 10px solid #1a2535;
            box-shadow:
                0 50px 100px rgba(0,0,0,0.7),
                0 0 0 1px rgba(3,149,239,0.15),
                0 0 80px rgba(3,149,239,0.1);
            display: block;
            animation: floatPhone 5s ease-in-out infinite;
        }

        @keyframes floatPhone { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

        .float-badge {
            position: absolute;
            background: var(--card2);
            border: 1px solid rgba(3,149,239,0.2);
            border-radius: 12px;
            padding: 0.65rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.65rem;
            white-space: nowrap;
            box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 20px rgba(3,149,239,0.08);
        }

        .float-badge.tl { top: 12%; left: -130px; animation: floatPhone 4s 0.5s ease-in-out infinite; }
        .float-badge.br { bottom: 14%; right: -120px; animation: floatPhone 4.5s 1s ease-in-out infinite; }

        .fb-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
        .fb-icon.g { background: rgba(34,197,94,0.13); color: var(--green); }
        .fb-icon.b { background: rgba(3,149,239,0.15); color: var(--blue); }

        .fb-txt .val { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.88rem; color: var(--text); }
        .fb-txt .lbl { font-size: 0.66rem; font-weight: 500; color: var(--muted); }

        /* ══════════════════════════════
           CITY BAND — Blue on blue-dark
        ══════════════════════════════ */
        .city-band {
            background: var(--blue);
            padding: 26px 6vw;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2.2rem;
            position: relative;
            overflow: hidden;
        }

        /* Subtle inner glow */
        .city-band::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
            pointer-events: none;
        }

        .cb-label { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
        .cb-name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.05em; color: #fff; line-height: 1; }
        .cb-divider { width: 1px; height: 42px; background: rgba(255,255,255,0.2); }
        .cb-pill { display: flex; align-items: center; gap: 0.45rem; background: rgba(255,255,255,0.15); border-radius: 100px; padding: 0.35rem 0.9rem; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; }
        .cb-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pdot 1.6s infinite; }

        /* ══════════════════════════════
           SECTION SHARED
        ══════════════════════════════ */
        .wrap { max-width: 1200px; margin: 0 auto; padding: 0 6vw; }

        .stag { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.7rem; }
        .stitle { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.4rem, 4vw, 3.6rem); letter-spacing: 0.02em; line-height: 1; margin-bottom: 0.7rem; }
        .ssub { font-size: 0.92rem; font-weight: 400; color: var(--muted); max-width: 460px; line-height: 1.75; margin-bottom: 3.5rem; }

        /* ══════════════════════════════
           FEATURES
        ══════════════════════════════ */
        .feat-sec { padding: 100px 0; background: var(--surface); }

        .feat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .feat-card {
            background: var(--card);
            padding: 3rem 2.2rem;
            border-right: 1px solid var(--border);
            transition: background 0.3s;
            position: relative;
            overflow: hidden;
        }

        .feat-card:last-child { border-right: none; }

        .feat-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 100%; height: 2px;
            background: var(--blue);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .feat-card:hover { background: var(--card2); }
        .feat-card:hover::after { transform: scaleX(1); }

        .fi {
            width: 52px; height: 52px;
            border-radius: 12px;
            background: var(--blue-pale);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.25rem;
            color: var(--blue);
            margin-bottom: 1.4rem;
            transition: background 0.3s, transform 0.3s, color 0.3s;
        }

        .feat-card:hover .fi { background: var(--blue); color: (var(--text)); transform: rotate(-8deg) scale(1.05); }

        .feat-card h3 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1rem; color: var(--text); margin-bottom: 0.6rem; }
        .feat-card p { font-size: 0.87rem; font-weight: 400; color: var(--muted); line-height: 1.75; }

        /* ══════════════════════════════
           HOW IT WORKS
        ══════════════════════════════ */
        .hiw-sec { padding: 100px 0; background: var(--bg2); }

        .hiw-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
        }

        .hiw-grid::before {
            content: '';
            position: absolute;
            top: 38px;
            left: calc(16.66% + 50px);
            width: calc(66.66% - 100px);
            height: 1px;
            border-top: 2px dashed rgba(3,149,239,0.2);
            pointer-events: none;
        }

        .step-card {
            background: var(--card);
            border: 1px solid var(--border2);
            border-radius: 20px;
            padding: 2.8rem 2rem 2.5rem;
            text-align: center;
            transition: all 0.35s ease;
        }

        .step-card:hover {
            transform: translateY(-10px);
            border-color: rgba(3,149,239,0.3);
            box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px var(--blue-glow);
        }

        .snum { font-family: 'Bebas Neue', sans-serif; font-size: 0.85rem; letter-spacing: 0.14em; color: var(--blue); opacity: 0.65; display: block; margin-bottom: 1rem; }

        .sico {
            width: 76px; height: 76px;
            border-radius: 18px;
            background: var(--blue-pale);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.8rem;
            color: var(--blue);
            margin: 0 auto 1.6rem;
            transition: all 0.3s ease;
        }

        .step-card:hover .sico { background: var(--blue); color: #fff; transform: rotate(-8deg) scale(1.06); }

        .step-card h3 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.05rem; margin-bottom: 0.6rem; }
        .step-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.75; font-weight: 400; }

        /* ══════════════════════════════
           REVIEWS — auto-scroll marquee
        ══════════════════════════════ */
        .rev-sec { padding: 100px 0; background: var(--surface); overflow: hidden; }

        .rev-track {
            display: flex;
            gap: 1.4rem;
            animation: scrollX 32s linear infinite;
            width: max-content;
            margin-top: 3rem;
            padding: 0 6vw;
        }

        .rev-track:hover { animation-play-state: paused; }

        @keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    .rev-card {
    /* Cards should be white in light mode, but elevated with a shadow */
    background: var(--card); 
    border: 1px solid var(--border2);
    border-radius: 16px;
    padding: 2rem;
    width: 290px;
    flex-shrink: 0;
    
    /* Light Mode Essential: Depth */
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
    
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rev-card:hover { 
    border-color: var(--blue); 
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -12px rgba(3, 149, 239, 0.12);
}

.rev-stars { 
    color: var(--blue); 
    font-size: 0.85rem; 
    letter-spacing: 0.08em; 
    margin-bottom: 1rem; 
}

.rev-text { 
    font-size: 0.88rem; 
    line-height: 1.78; 
    /* CHANGED: Swapped from white to a readable dark slate */
    color: #475569; 
    margin-bottom: 1.3rem; 
    font-weight: 400; 
}

.reviewer { 
    display: flex; 
    align-items: center; 
    gap: 0.7rem; 
}

.rav { 
    width: 36px; 
    height: 36px; 
    border-radius: 50%; 
    background: var(--blue-pale); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 0.88rem; 
    color: var(--blue); 
    font-weight: 800; 
    border: 1px solid var(--border); 
}

.rname { 
    font-weight: 700; 
    font-size: 0.85rem; 
    color: var(--text); /* Uses the dark navy variable */
}

.rloc { 
    font-size: 0.7rem; 
    color: var(--muted); 
    font-weight: 500; 
}

        /* ══════════════════════════════
           FOOTER
        ══════════════════════════════ */
        footer {
            background: var(--bg);
            padding: 70px 6vw 36px;
            border-top: 1px solid var(--border);
        }

        .foot-inner { max-width: 1200px; margin: 0 auto; }

        .foot-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid var(--border2);
            margin-bottom: 2.5rem;
        }

        .foot-logo img { height: 36px; margin-bottom: 1.2rem; }

        .foot-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.75; max-width: 280px; margin-bottom: 1.4rem; font-weight: 400; }

        .foot-soc { display: flex; gap: 0.7rem; }
        .foot-soc a { width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.9rem; text-decoration: none; transition: all 0.2s; }
        .foot-soc a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

        .foot-col h4 { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.2rem; }
        .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
        .foot-col ul li a { font-size: 0.87rem; color: var(--muted); text-decoration: none; font-weight: 400; transition: color 0.2s; }
        .foot-col ul li a:hover { color: var(--text); }

        .foot-bot { display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.2); }

        /* ══════════════════════════════
           FLOATING WHATSAPP
        ══════════════════════════════ */
        .wa-btn { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.55rem; box-shadow: 0 8px 24px rgba(37,211,102,0.45); z-index: 500; text-decoration: none; transition: transform 0.25s, box-shadow 0.25s; }
        .wa-btn:hover { transform: scale(1.12); color: white; box-shadow: 0 14px 36px rgba(37,211,102,0.55); }

        /* ══════════════════════════════
           SCROLL REVEAL
        ══════════════════════════════ */
        .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        @keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

        /* ══════════════════════════════
           MOBILE
        ══════════════════════════════ */
        @media (max-width: 900px) {
            .hamburger { display: flex; 
            }


            

            .nav-links {
                display: none;
                position: absolute;
                top: 72px; left: 0; right: 0;
                flex-direction: column;
                background: var(--bg);
                padding: 1.5rem 6vw 2rem;
                border-bottom: 1px solid var(--border);
                gap: 1.2rem;
                align-items: flex-start;
            }

            .nav-links.open { display: flex; }

            .hero { padding: 100px 5vw 60px; }
            .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
            .hero-body { margin: 0 auto 2.5rem; }
            .dl-badges { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-visual { order: 2; }
            .float-badge.tl { left: -5px; top: 4%; }
            .float-badge.br { right: -5px; bottom: 4%; }
            .phone-frame img { width: 200px; }

            .city-band { flex-direction: column; gap: 0.6rem; text-align: center; }
            .cb-divider { width: 40px; height: 1px; }

            .feat-grid { grid-template-columns: 1fr; border-radius: 0; }
            .feat-card { border-right: none; border-bottom: 1px solid var(--border); }
            .feat-card:last-child { border-bottom: none; }

            .hiw-grid { grid-template-columns: 1fr; }
            .hiw-grid::before { display: none; }

            .foot-top { grid-template-columns: 1fr; gap: 2.5rem; }
            .foot-bot { flex-direction: column; gap: 0.5rem; text-align: center; }
        }
