@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght=400;500;600;700;800&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Wanted Sans Variable', 'Wanted Sans', 'Plus Jakarta Sans', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: #FFFFFF;
            color: #0F172A;
            overflow-x: hidden;
        }

        /* --- Header Navigation --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 6%;
            height: 64px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(14px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #E2E8F0;
            gap: 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }
        .logo img {
            height: 48px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        /* Nav links */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-left: auto;
            margin-right: 16px;
        }
        .nav-links a {
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            color: #475569;
            padding: 7px 14px;
            border-radius: 10px;
            white-space: nowrap;
            position: relative;
            transition: color 0.2s ease, background 0.2s ease;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 3px; left: 50%; right: 50%;
            height: 2px;
            background: #F24F32;
            border-radius: 2px;
            transition: left 0.25s ease, right 0.25s ease;
        }
        .nav-links a:hover {
            color: #F24F32;
            background: rgba(242,79,50,0.06);
        }
        .nav-links a:hover::after { left: 14px; right: 14px; }
        .nav-links a.active {
            color: #F24F32;
            background: rgba(242,79,50,0.06);
        }
        .nav-links a.active::after { left: 14px; right: 14px; }

        .btn-top {
            background: #F24F32;
            color: #FFF;
            padding: 9px 20px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(242, 79, 50, 0.2);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .btn-top:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 22px rgba(242, 79, 50, 0.35);
        }

        @media (max-width: 960px) {
            .nav-links { display: none; }
        }

        /* ===== HERO SECTION — ENHANCED ===== */
        .hero-section {
            min-height: 100vh;
            max-height: 100vh;
            padding: 90px 6% 30px 6%;
            display: grid;
            grid-template-columns: 52% 48%;
            align-items: center;
            gap: 30px;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        /* Animated mesh gradient background */
        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 60% 50% at 80% 20%, rgba(242,79,50,0.08) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 20% 80%, rgba(59,130,246,0.06) 0%, transparent 70%),
                radial-gradient(ellipse 30% 30% at 60% 60%, rgba(139,92,246,0.04) 0%, transparent 60%);
            pointer-events: none;
            animation: heroBgShift 8s ease-in-out infinite alternate;
        }
        @keyframes heroBgShift {
            0%   { opacity: 1; transform: scale(1); }
            100% { opacity: 0.7; transform: scale(1.04); }
        }

        /* Floating orbs */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(60px);
        }
        .hero-orb-1 {
            width: 350px; height: 350px;
            background: rgba(242,79,50,0.1);
            top: -80px; right: 5%;
            animation: orbDrift1 10s ease-in-out infinite;
        }
        .hero-orb-2 {
            width: 250px; height: 250px;
            background: rgba(59,130,246,0.08);
            bottom: 5%; left: 2%;
            animation: orbDrift2 13s ease-in-out infinite;
        }
        @keyframes orbDrift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,20px)} }
        @keyframes orbDrift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-25px)} }

        /* Dot grid */
        .hero-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(15,23,42,0.06) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
            mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 40%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 40%, transparent 100%);
        }

        /* ---- Hero Content (left) ---- */
        .hero-content {
            position: relative;
            z-index: 2;
            opacity: 0;
            animation: heroSlideIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
        }
        @keyframes heroSlideIn {
            from { opacity: 0; transform: translateX(-30px); }
            to   { opacity: 1; transform: translateX(0); }
        }

        .tag {
            color: #F24F32;
            font-weight: 700;
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(242, 79, 50, 0.08);
            border: 1px solid rgba(242,79,50,0.2);
            padding: 5px 14px;
            border-radius: 20px;
            animation: tagPulse 3s ease-in-out infinite;
        }
        @keyframes tagPulse {
            0%,100% { box-shadow: 0 0 0 0 rgba(242,79,50,0); }
            50%      { box-shadow: 0 0 0 5px rgba(242,79,50,0.08); }
        }

        /* Live dot inside tag */
        .tag-dot {
            width: 6px; height: 6px;
            background: #F24F32;
            border-radius: 50%;
            animation: liveBlink 1.4s ease-in-out infinite;
        }

        h1 {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.12;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
            color: #0F172A;
        }
        h1 span { color: #F24F32; }

        /* Animated underline on h1 span */
        h1 .hero-underline {
            position: relative;
            display: inline-block;
        }
        h1 .hero-underline::after {
            content: '';
            position: absolute;
            bottom: -3px; left: 0;
            width: 0%; height: 3px;
            background: linear-gradient(90deg, #F24F32, #f59e0b);
            border-radius: 2px;
            animation: underlineDraw 1s cubic-bezier(0.16,1,0.3,1) 0.8s forwards;
        }
        @keyframes underlineDraw { to { width: 100%; } }

        p {
            color: #475569;
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 28px;
            max-width: 500px;
        }

        /* CTA buttons */
        .hero-trust-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        .hero-trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(242, 79, 50, 0.07);
            border: 1px solid rgba(242, 79, 50, 0.18);
            color: #c73e22;
            font-size: 0.72rem;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 20px;
            white-space: nowrap;
        }

        .hero-cta-group {
            display: flex;
            gap: 14px;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }
        .hero-btn-primary {
            background: #F24F32;
            color: #fff;
            padding: 14px 28px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 28px rgba(242,79,50,0.35);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            position: relative;
            overflow: hidden;
        }
        .hero-btn-primary::before {
            content: '';
            position: absolute;
            top: -100%; left: -60%;
            width: 50%; height: 300%;
            background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
            transform: skewX(-15deg);
        }
        .hero-btn-primary:hover::before { animation: shimmerScan 0.6s ease forwards; }
        .hero-btn-primary:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 14px 36px rgba(242,79,50,0.5);
        }
        .hero-btn-secondary {
            color: #0F172A;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 20px;
            border-radius: 14px;
            border: 1.5px solid #E2E8F0;
            transition: border-color 0.25s ease, transform 0.25s ease;
        }
        .hero-btn-secondary:hover { border-color: #F24F32; transform: translateY(-2px); }

        /* Hero stat pills */
        .hero-stats {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .hero-stat {
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0;
            animation: heroSlideIn 0.6s ease forwards;
        }
        .hero-stat:nth-child(1) { animation-delay: 0.9s; }
        .hero-stat:nth-child(2) { animation-delay: 1.05s; }
        .hero-stat:nth-child(3) { animation-delay: 1.2s; }
        .hero-stat-icon {
            font-size: 1.1rem;
            width: 36px; height: 36px;
            background: rgba(242,79,50,0.07);
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
        }
        .hero-stat-text strong { font-size: 1rem; font-weight: 800; color: #0F172A; display: block; }
        .hero-stat-text span   { font-size: 0.72rem; color: #64748B; font-weight: 500; }

        /* ---- Right: Phone mockup area ---- */
        .hero-mockup-container {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            animation: phoneReveal 1s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
        }
        @keyframes phoneReveal {
            from { opacity: 0; transform: translateY(40px) scale(0.92); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* Rotating ring behind phone */
        .phone-ring {
            position: absolute;
            border-radius: 50%;
            border: 1.5px dashed rgba(242,79,50,0.25);
            pointer-events: none;
        }
        .phone-ring-1 {
            width: 360px; height: 360px;
            animation: ringRotate 20s linear infinite;
        }
        .phone-ring-2 {
            width: 440px; height: 440px;
            border-style: dotted;
            border-color: rgba(59,130,246,0.15);
            animation: ringRotate 30s linear infinite reverse;
        }
        @keyframes ringRotate { to { transform: rotate(360deg); } }

        /* Glow behind phone */
        .phone-glow {
            position: absolute;
            width: 280px; height: 280px;
            background: radial-gradient(circle, rgba(242,79,50,0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: glowPulse 3s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes glowPulse { 0%,100%{transform:scale(1);opacity:0.6} 50%{transform:scale(1.2);opacity:1} }

        /* Floating badge chips around phone */
        .phone-chip {
            position: absolute;
            background: #fff;
            border: 1px solid rgba(15,23,42,0.08);
            border-radius: 40px;
            padding: 8px 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 24px rgba(15,23,42,0.1);
            font-size: 0.72rem;
            font-weight: 700;
            color: #0F172A;
            white-space: nowrap;
            z-index: 20;
            pointer-events: none;
        }
        .chip-icon { font-size: 0.95rem; }
        .chip-sub { font-size: 0.62rem; font-weight: 500; color: #64748B; display: block; }

        .chip-1 {
            top: 12%; right: -10px;
            animation: chipFloat1 4s ease-in-out infinite;
        }
        .chip-2 {
            bottom: 22%; left: -20px;
            animation: chipFloat2 5s ease-in-out infinite;
        }
        .chip-3 {
            bottom: 10%; right: 0px;
            animation: chipFloat3 4.5s ease-in-out infinite;
        }
        @keyframes chipFloat1 { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-10px) rotate(1deg)} }
        @keyframes chipFloat2 { 0%,100%{transform:translateY(0) rotate(1deg)} 50%{transform:translateY(-8px) rotate(-2deg)} }
        @keyframes chipFloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

        /* Rating stars chip special */
        .chip-stars { color: #f59e0b; letter-spacing: 1px; }

        /* ---- iPhone Frame ---- */
        .iphone-frame {
            width: 300px;
            position: relative;
            border-radius: 32px;
            box-shadow:
                0 30px 60px rgba(15,23,42,0.25),
                0 0 80px rgba(242,79,50,0.12);
            overflow: hidden;
            animation: phoneFloat 6s ease-in-out infinite;
        }
        @keyframes phoneFloat {
            0%,100% { transform: translateY(0) rotate(0.5deg); }
            50%      { transform: translateY(-14px) rotate(-0.5deg); }
        }

        .phone-asset-img {
            display: block;
            width: 100%;
            max-width: 100%;
            height: auto;
            object-fit: cover;
        }

        /* ---- Map ---- */
        .map-canvas {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 62%;
            background: linear-gradient(160deg, #e8f0fe 0%, #EBF1F6 60%, #dbeafe 100%);
            overflow: hidden;
        }

        /* Animated map grid pan */
        .map-canvas::before {
            content: '';
            position: absolute;
            width: 300%; height: 300%;
            background-image:
                linear-gradient(rgba(59,130,246,0.07) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59,130,246,0.07) 1px, transparent 1px);
            background-size: 36px 36px;
            top: -100%; left: -100%;
            animation: mapPan 18s linear infinite;
        }
        @keyframes mapPan { 0%{transform:translate(0,0) rotate(3deg)} 100%{transform:translate(36px,36px) rotate(3deg)} }

        /* Road network */
        .map-road {
            position: absolute;
            background: #FFFFFF;
            border-radius: 4px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.08);
        }
        .road-1 { top: 42%; left: 0; width: 100%; height: 14px; transform: rotate(-8deg); }
        .road-2 { top: 0; left: 46%; width: 12px; height: 100%; }
        .road-3 { top: 60%; left: 0; width: 100%; height: 10px; transform: rotate(6deg); opacity: 0.6; }

        /* Route line */
        .map-route {
            position: absolute;
            top: 28%; left: 30%;
            width: 80px; height: 3px;
            background: linear-gradient(90deg, #1d4ed8, #F24F32);
            border-radius: 2px;
            transform: rotate(-8deg);
            z-index: 8;
            animation: routeDash 2s ease-in-out infinite;
        }
        @keyframes routeDash { 0%,100%{opacity:1} 50%{opacity:0.4} }

        /* User pin */
        .user-pin {
            position: absolute;
            top: 48%; left: 50%;
            transform: translate(-50%,-50%);
            width: 13px; height: 13px;
            background: #1d4ed8;
            border: 2.5px solid #fff;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(29,78,216,0.5);
            z-index: 10;
        }

        /* Multi-ring pulse */
        .user-pulse, .user-pulse2 {
            position: absolute;
            top: 48%; left: 50%;
            transform: translate(-50%,-50%);
            border-radius: 50%;
            z-index: 9;
        }
        .user-pulse  { width: 32px; height: 32px; background: rgba(29,78,216,0.12); animation: mapPulse 2s infinite ease-out; }
        .user-pulse2 { width: 52px; height: 52px; background: rgba(29,78,216,0.06); animation: mapPulse 2s 0.6s infinite ease-out; }

        /* Cleaner pins */
        .cleaner-pin {
            position: absolute;
            width: 30px; height: 30px;
            background: #F24F32;
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 12px rgba(242,79,50,0.4);
            animation: bouncePin 2.5s infinite ease-in-out;
            z-index: 12;
        }
        .cleaner-pin::after {
            content: '';
            position: absolute;
            bottom: -6px; left: 50%;
            transform: translateX(-50%);
            width: 6px; height: 6px;
            background: rgba(242,79,50,0.3);
            border-radius: 50%;
        }
        .cleaner-pin span { transform: rotate(45deg); font-size: 11px; }
        .p1 { top: 18%; left: 18%; animation-delay: 0.3s; }
        .p2 { top: 28%; left: 66%; animation-delay: 0.9s; }
        .p3 { top: 52%; left: 24%; animation-delay: 1.5s; }

        /* Pin radius circles */
        .pin-radius {
            position: absolute;
            border-radius: 50%;
            border: 1.5px dashed rgba(242,79,50,0.25);
            animation: pinRadiusExpand 2.5s ease-out infinite;
        }
        .p1 ~ .pin-radius { top: calc(18% + 15px); left: calc(18% + 15px); width: 50px; height: 50px; transform: translate(-50%,-50%); animation-delay: 0.3s; }

        @keyframes pinRadiusExpand {
            0%   { transform: translate(-50%,-50%) scale(0.5); opacity: 0.8; }
            100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
        }

        /* Search bar */
        .google-search-container {
            position: absolute;
            top: 38px; left: 10px; right: 10px;
            background: #FFFFFF;
            border: 1px solid rgba(226,232,240,0.8);
            border-radius: 20px;
            padding: 7px 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 4px 16px rgba(15,23,42,0.08);
            z-index: 100;
            backdrop-filter: blur(8px);
        }
        .search-left-side { display: flex; align-items: center; gap: 8px; flex: 1; }
        .search-icon { color: #64748B; font-size: 0.8rem; }
        .search-text-input {
            font-size: 0.78rem; font-weight: 500; color: #0F172A;
            position: relative; overflow: hidden; white-space: nowrap;
        }
        .search-text-input::after {
            content: 'Search location...';
            animation: typingSearch 7s infinite steps(20);
            color: #64748B;
        }

        /* Blinking cursor */
        .search-text-input::before {
            content: '|';
            color: #F24F32;
            font-weight: 300;
            animation: cursorBlink 1s step-end infinite;
            margin-left: 1px;
            position: absolute;
            right: -6px;
        }
        @keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }

        .profile-avatar {
            width: 24px; height: 24px;
            background: #F24F32;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.6rem; font-weight: 700; color: #FFF;
            box-shadow: 0 2px 6px rgba(242,79,50,0.3);
        }

        /* ---- Bottom Drawer ---- */
        .phone-drawer {
            position: absolute;
            bottom: 0; left: 0;
            width: 100%; height: 44%;
            background: #FFFFFF;
            border-top: 1px solid #E2E8F0;
            border-radius: 22px 22px 0 0;
            padding: 12px 12px;
            z-index: 200;
            box-shadow: 0 -6px 24px rgba(0,0,0,0.06);
            display: flex; flex-direction: column;
            animation: drawerSlideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.9s both;
        }
        @keyframes drawerSlideUp {
            from { transform: translateY(60px); opacity: 0; }
            to   { transform: translateY(0); opacity: 1; }
        }

        .drawer-line {
            width: 32px; height: 3.5px;
            background: #E2E8F0; border-radius: 10px;
            margin: -4px auto 10px auto; flex-shrink: 0;
        }
        .drawer-title {
            font-size: 0.72rem; font-weight: 700;
            margin-bottom: 8px; color: #64748B; flex-shrink: 0;
        }
        .cleaners-list-container {
            display: flex; flex-direction: column;
            gap: 6px; overflow-y: auto; flex: 1;
        }
        .cleaners-list-container::-webkit-scrollbar { display: none; }

        .app-card {
            background: #F8FAFC;
            border-radius: 12px;
            padding: 10px;
            display: flex; align-items: center; gap: 10px;
            border: 1px solid #E2E8F0;
            transition: transform 0.2s ease, border-color 0.2s ease;
            animation: cardFadeIn 0.4s ease both;
        }
        .app-card:nth-child(1) { animation-delay: 1.1s; }
        .app-card:nth-child(2) { animation-delay: 1.3s; }
        @keyframes cardFadeIn {
            from { opacity: 0; transform: translateX(20px); }
            to   { opacity: 1; transform: translateX(0); }
        }

        /* Online status dot on cleaner cards */
        .card-status {
            width: 7px; height: 7px;
            background: #10b981;
            border-radius: 50%;
            margin-left: auto;
            flex-shrink: 0;
            box-shadow: 0 0 0 2px rgba(16,185,129,0.2);
            animation: liveBlink 2s ease-in-out infinite;
        }

        /* --- Global Sections Framework --- */
        .features-section, .specs-section {
            padding: 90px 6%;
            background: #F8FAFC;
            border-top: 1px solid #E2E8F0;
        }
        /* ===== HOW CLEAN GAADI OPERATES — REDESIGN ===== */
        .features-section {
            position: relative;
            background: #0B0F1A;
            overflow: hidden;
            padding: 110px 6% 120px;
            border-top: none;
        }

        /* Ambient background blobs */
        .features-section::before {
            content: '';
            position: absolute;
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(242,79,50,0.12) 0%, transparent 70%);
            top: -200px; left: -200px;
            border-radius: 50%;
            pointer-events: none;
        }
        .features-section::after {
            content: '';
            position: absolute;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
            bottom: -150px; right: -150px;
            border-radius: 50%;
            pointer-events: none;
        }

        /* Section header overrides for dark bg */
        .features-section .section-header .tag {
            background: rgba(242,79,50,0.15);
            color: #F24F32;
            border: 1px solid rgba(242,79,50,0.3);
        }
        .features-section .section-header h2 { color: #FFFFFF; }
        .features-section .section-header p.section-sub { color: #94A3B8; }

        /* ---- Process Timeline Grid ---- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            row-gap: 48px;
            position: relative;
            z-index: 1;
        }

        /* Connector line between cards */
        .features-grid::before {
            content: '';
            position: absolute;
            top: 68px;
            left: calc(16.66% + 26px);
            right: calc(16.66% + 26px);
            height: 2px;
            background: linear-gradient(90deg,
                rgba(242,79,50,0.6) 0%,
                rgba(59,130,246,0.6) 33%,
                rgba(2,132,199,0.6) 50%,
                rgba(16,185,129,0.6) 66%,
                rgba(139,92,246,0.6) 83%,
                rgba(245,158,11,0.6) 100%
            );
            z-index: 0;
        }

        /* ---- Feature Card Redesign ---- */
        .feature-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 32px 28px 36px;
            border-radius: 24px;
            margin: 0 10px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.45s cubic-bezier(0.16,1,0.3,1),
                        box-shadow 0.45s cubic-bezier(0.16,1,0.3,1),
                        border-color 0.45s ease,
                        background 0.45s ease;

            /* Scroll-reveal initial state */
            opacity: 0;
            transform: translateY(40px);
            animation: none;
        }

        .feature-card.revealed {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1),
                        box-shadow 0.45s cubic-bezier(0.16,1,0.3,1),
                        border-color 0.45s ease,
                        background 0.45s ease;
        }

        /* Staggered reveal delays */
        .feature-card:nth-child(1) { transition-delay: 0s; }
        .feature-card:nth-child(2) { transition-delay: 0.1s; }
        .feature-card:nth-child(3) { transition-delay: 0.2s; }
        .feature-card:nth-child(4) { transition-delay: 0.3s; }
        .feature-card:nth-child(5) { transition-delay: 0.4s; }
        .feature-card:nth-child(6) { transition-delay: 0.5s; }

        /* Glowing top border on hover */
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0; left: 10%; right: 10%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent, #F24F32), transparent);
            opacity: 0;
            border-radius: 2px;
            transition: opacity 0.4s ease;
        }

        /* Inner glow sweep on hover */
        .feature-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, var(--accent-bg, rgba(242,79,50,0.12)) 0%, transparent 65%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
            border-radius: 24px;
        }

        .feature-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 32px 64px -16px var(--accent-shadow, rgba(242,79,50,0.35)),
                        0 0 0 1px var(--accent, #F24F32);
            border-color: transparent;
            background: rgba(255,255,255,0.07);
        }
        .feature-card:hover::before { opacity: 1; }
        .feature-card:hover::after  { opacity: 1; }
        .feature-card:hover .step-number { opacity: 0.18; transform: scale(1.1); }
        .feature-card:hover .feature-icon { transform: scale(1.15) rotate(-5deg); }

        /* ---- Step Number ---- */
        .step-number {
            position: absolute;
            top: 18px; right: 20px;
            font-size: 4rem;
            font-weight: 900;
            color: var(--accent, #F24F32);
            opacity: 0.06;
            line-height: 1;
            user-select: none;
            transition: opacity 0.4s ease, transform 0.4s ease;
            letter-spacing: -2px;
        }

        /* ---- Step Dot connector (visible circle above card) ---- */
        .feature-card .step-dot {
            width: 20px; height: 20px;
            background: var(--accent, #F24F32);
            border-radius: 50%;
            border: 3px solid #0B0F1A;
            box-shadow: 0 0 0 3px var(--accent, #F24F32), 0 0 20px var(--accent, #F24F32);
            margin: 0 auto 28px auto;
            position: relative;
            z-index: 2;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }
        .feature-card:hover .step-dot {
            transform: scale(1.3);
            box-shadow: 0 0 0 4px var(--accent, #F24F32), 0 0 30px var(--accent, #F24F32);
        }

        /* ---- Feature Icon ---- */
        .feature-icon {
            font-size: 1.5rem;
            margin-bottom: 18px;
            background: var(--accent-bg, rgba(242,79,50,0.1));
            width: 56px; height: 56px;
            text-align: center;
            line-height: 56px;
            border-radius: 16px;
            display: inline-block;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 8px 24px var(--accent-shadow, rgba(242,79,50,0.2));
            position: relative;
            z-index: 1;
            transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
        }

        .feature-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #F1F5F9;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .feature-card p {
            font-size: 0.875rem;
            color: #94A3B8;
            line-height: 1.6;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        /* ---- Scroll-reveal animation ---- */
        @keyframes revealCard {
            from { opacity: 0; transform: translateY(40px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ---- Pulse glow on step dot ---- */
        @keyframes dotPulse {
            0%, 100% { box-shadow: 0 0 0 3px var(--accent, #F24F32), 0 0 16px var(--accent, #F24F32); }
            50%       { box-shadow: 0 0 0 6px rgba(255,255,255,0), 0 0 32px var(--accent, #F24F32); }
        }
        .feature-card.revealed .step-dot {
            animation: dotPulse 2.5s ease-in-out infinite;
        }

        /* Responsive */
        @media (max-width: 1100px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .features-grid::before { display: none; }
            .feature-card { margin: 0; }
        }
        @media (max-width: 768px) {
            .features-grid { grid-template-columns: 1fr; gap: 12px; }
            .feature-card { margin: 0; padding: 24px 20px 28px; }
        }
        /* ===== CLEANGAADI SPECIFICATIONS — BENTO REDESIGN ===== */
        .specs-section {
            position: relative;
            background: #F0F4FF;
            overflow: hidden;
            padding: 110px 6% 120px;
            border-top: none;
        }

        /* Decorative mesh grid background */
        .specs-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(59,130,246,0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59,130,246,0.06) 1px, transparent 1px);
            background-size: 48px 48px;
            pointer-events: none;
        }
        /* Top aurora gradient */
        .specs-section::after {
            content: '';
            position: absolute;
            top: -120px; left: 50%;
            transform: translateX(-50%);
            width: 900px; height: 400px;
            background: radial-gradient(ellipse, rgba(59,130,246,0.18) 0%, rgba(139,92,246,0.1) 40%, transparent 70%);
            pointer-events: none;
        }

        .specs-section .section-header { position: relative; z-index: 2; }
        .specs-section .section-header h2 { color: #0F172A; }
        .specs-section .section-header p.section-sub { color: #475569; }
        .specs-section .section-header .tag {
            background: rgba(59,130,246,0.1);
            color: #3b82f6;
            border: 1px solid rgba(59,130,246,0.25);
        }

        /* ---- Bento Grid ---- */
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-template-rows: auto auto;
            gap: 20px;
            position: relative;
            z-index: 2;
        }

        /* Bento layout spans */
        .spec-card:nth-child(1) { grid-column: span 2; }
        .spec-card:nth-child(2) { grid-column: span 2; }
        .spec-card:nth-child(3) { grid-column: span 2; }
        .spec-card:nth-child(4) { grid-column: span 3; } /* Highlight — wider */
        .spec-card:nth-child(5) { grid-column: span 2; }
        .spec-card:nth-child(6) { grid-column: span 1; }

        /* ---- Base Spec Card ---- */
        .spec-card {
            background: #FFFFFF;
            border: 1px solid rgba(59,130,246,0.12);
            padding: 32px 28px 36px;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transform-style: preserve-3d;
            transition: box-shadow 0.4s ease, border-color 0.4s ease;
            will-change: transform;

            /* Scroll-reveal */
            opacity: 0;
            transform: translateY(50px) scale(0.96);
        }
        .spec-card.revealed {
            animation: specReveal 0.65s cubic-bezier(0.16,1,0.3,1) forwards;
        }
        .spec-card:nth-child(1).revealed { animation-delay: 0s; }
        .spec-card:nth-child(2).revealed { animation-delay: 0.08s; }
        .spec-card:nth-child(3).revealed { animation-delay: 0.16s; }
        .spec-card:nth-child(4).revealed { animation-delay: 0.24s; }
        .spec-card:nth-child(5).revealed { animation-delay: 0.32s; }
        .spec-card:nth-child(6).revealed { animation-delay: 0.40s; }

        @keyframes specReveal {
            from { opacity: 0; transform: translateY(50px) scale(0.96); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* Shimmer scan line */
        .spec-card::before {
            content: '';
            position: absolute;
            top: -100%;
            left: -60%;
            width: 50%;
            height: 300%;
            background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.55) 50%, transparent 60%);
            transform: skewX(-15deg);
            transition: none;
            pointer-events: none;
        }
        .spec-card:hover::before {
            animation: shimmerScan 0.7s ease forwards;
        }
        @keyframes shimmerScan {
            to { left: 160%; }
        }

        /* Glow ring on hover */
        .spec-card::after {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 25px;
            background: linear-gradient(135deg, var(--accent, #3b82f6), transparent 50%);
            opacity: 0;
            z-index: -1;
            transition: opacity 0.4s ease;
        }
        .spec-card:hover {
            box-shadow: 0 24px 60px -12px var(--accent-shadow, rgba(59,130,246,0.3)),
                        0 0 0 1px var(--accent, #3b82f6);
            border-color: transparent;
        }
        .spec-card:hover::after { opacity: 0.15; }
        .spec-card:hover .spec-icon-box { transform: rotate(-8deg) scale(1.15); }
        .spec-card:hover .spec-stat-num { letter-spacing: 2px; }

        /* ---- Highlight card (4th) ---- */
        .spec-card.highlight-card {
            background: linear-gradient(135deg, #0F172A 0%, #1E1132 50%, #0F172A 100%);
            border: 1.5px solid rgba(242,79,50,0.4);
            box-shadow: 0 16px 48px -12px rgba(242,79,50,0.25);
            color: #FFF;
        }
        .spec-card.highlight-card h3 { color: #FFF; }
        .spec-card.highlight-card p  { color: #94A3B8; }
        .spec-card.highlight-card:hover {
            box-shadow: 0 32px 80px -16px rgba(242,79,50,0.5),
                        0 0 0 1.5px #F24F32;
        }
        /* Animated radial pulse inside highlight card */
        .spec-card.highlight-card::after {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%,-50%);
            width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(242,79,50,0.12) 0%, transparent 55%);
            animation: hCardPulse 3s ease-in-out infinite;
            pointer-events: none;
            border-radius: 0;
            opacity: 1;
        }
        @keyframes hCardPulse {
            0%, 100% { transform: translate(-50%,-50%) scale(0.85); opacity: 0.6; }
            50%       { transform: translate(-50%,-50%) scale(1.1);  opacity: 1; }
        }

        /* ---- Icon ---- */
        .spec-icon-box {
            font-size: 1.6rem;
            margin-bottom: 20px;
            background: var(--accent-bg, rgba(59,130,246,0.1));
            width: 58px; height: 58px;
            border-radius: 18px;
            display: flex; align-items: center; justify-content: center;
            border: 1px solid rgba(255,255,255,0.6);
            box-shadow: 0 8px 24px var(--accent-shadow, rgba(59,130,246,0.2));
            position: relative; z-index: 1;
            transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
        }

        /* ---- Animated stat number inside card ---- */
        .spec-stat {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin: 12px 0 8px;
        }
        .spec-stat-num {
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent, #3b82f6);
            letter-spacing: 0;
            transition: letter-spacing 0.3s ease;
            font-variant-numeric: tabular-nums;
        }
        .spec-stat-unit {
            font-size: 0.8rem;
            font-weight: 600;
            color: #94A3B8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .spec-card.highlight-card .spec-stat-num { color: #F24F32; }

        /* ---- Badge ---- */
        .spec-badge {
            position: absolute;
            top: 20px; right: 20px;
            font-size: 0.62rem;
            font-weight: 700;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }

        /* ---- Card text ---- */
        .spec-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #0F172A;
            margin-bottom: 8px;
            position: relative; z-index: 1;
        }
        .spec-card p {
            font-size: 0.85rem;
            color: #64748B;
            line-height: 1.6;
            margin: 0;
            position: relative; z-index: 1;
        }

        /* ---- Floating particles inside cards ---- */
        .spec-particle {
            position: absolute;
            border-radius: 50%;
            background: var(--accent, #3b82f6);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        .spec-card:hover .spec-particle { opacity: 0.12; }
        .spec-particle:nth-child(1) {
            width: 80px; height: 80px;
            bottom: -20px; right: -20px;
            animation: floatP 4s ease-in-out infinite;
        }
        .spec-particle:nth-child(2) {
            width: 40px; height: 40px;
            top: 30%; right: 15%;
            animation: floatP 3s ease-in-out infinite reverse;
            animation-delay: 1s;
        }
        @keyframes floatP {
            0%, 100% { transform: translateY(0px) scale(1); }
            50%       { transform: translateY(-14px) scale(1.1); }
        }

        /* ---- Responsive ---- */
        @media (max-width: 1100px) {
            .specs-grid { grid-template-columns: repeat(4, 1fr); }
            .spec-card:nth-child(1) { grid-column: span 2; }
            .spec-card:nth-child(2) { grid-column: span 2; }
            .spec-card:nth-child(3) { grid-column: span 2; }
            .spec-card:nth-child(4) { grid-column: span 2; }
            .spec-card:nth-child(5) { grid-column: span 2; }
            .spec-card:nth-child(6) { grid-column: span 2; }
        }
        @media (max-width: 768px) {
            .specs-grid { grid-template-columns: 1fr; }
            .spec-card:nth-child(n) { grid-column: span 1; }
        }

        .section-header { text-align: center; margin-bottom: 50px; }
        .section-header h2 { font-size: 2.3rem; font-weight: 800; color: #0F172A; letter-spacing: -0.5px; }
        .section-header p.section-sub {
            color: #64748B;
            font-size: 1rem;
            max-width: 560px;
            margin: 14px auto 0 auto;
        }

        /* Spec badge colors */
        .badge-setup { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }
        .badge-gps { background: rgba(14, 165, 233, 0.08); color: #0284c7; }
        .badge-compare { background: rgba(16, 185, 129, 0.08); color: #10b981; }
        .badge-bestprice { background: #F24F32; color: #FFF; }
        .badge-track { background: rgba(139, 92, 246, 0.08); color: #8b5cf6; }
        .badge-history { background: rgba(245, 158, 11, 0.08); color: #f59e0b; }

        /* --- Core Animations --- */
        @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
        @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
        @keyframes mapPulse { 0% { transform: translate(-50%, -50%) scale(0.6); opacity: 1; } 100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; } }
        @keyframes bouncePin { 0%, 100% { transform: rotate(-45deg) translateY(0); } 50% { transform: rotate(-45deg) translateY(-6px); } }
        @keyframes typingSearch {
            0%, 100% { content: 'Search location...'; color: #64748B; }
            25% { content: 'Padur, Chennai...'; color: #0F172A; }
            60% { content: 'OMR, Sholinganallur...'; color: #0F172A; }
            85% { content: 'Velachery, Chennai...'; color: #0F172A; }
        }

        /* Responsive Viewports */
        @media (max-width: 1100px) {
            .specs-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .hero-section { grid-template-columns: 1fr; text-align: center; max-height: none; min-height: auto; padding-top: 100px; }
            .hero-content > p { margin: 0 auto 20px auto; }
            .hero-stats { justify-content: center; }
            .hero-cta-group { justify-content: center; }
            .phone-ring, .phone-chip { display: none; }
            .specs-grid { grid-template-columns: 1fr; }
        }

/* Hide hamburger on desktop, hide btn-top on mobile */
        .hamburger-btn { display: none; }
        @media (max-width: 768px) {
            .btn-top { display: none; }
            .hamburger-btn {
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: 5px;
                background: none;
                border: 1.5px solid #E2E8F0;
                border-radius: 10px;
                width: 40px; height: 40px;
                padding: 8px;
                cursor: pointer;
                align-items: center;
                transition: border-color 0.2s ease;
                z-index: 1001;
            }
            .hamburger-btn:hover { border-color: #F24F32; }
            .hamburger-btn span {
                display: block;
                width: 18px; height: 2px;
                background: #0F172A;
                border-radius: 2px;
                transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease;
            }
            .hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #F24F32; }
            .hamburger-btn.open span:nth-child(2) { opacity: 0; }
            .hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #F24F32; }
        }

        /* Overlay */
        .mobile-nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(15,23,42,0.5);
            z-index: 1099;
            backdrop-filter: blur(3px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .mobile-nav-overlay.active { opacity: 1; }

        /* Drawer */
        .mobile-nav {
            position: fixed;
            top: 0; right: 0;
            width: min(320px, 85vw);
            height: 100%;
            background: #ffffff;
            z-index: 1100;
            transform: translateX(100%);
            transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
            display: flex;
            flex-direction: column;
            box-shadow: -8px 0 40px rgba(15,23,42,0.15);
        }
        .mobile-nav.open { transform: translateX(0); }

        .mobile-nav-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 22px;
            border-bottom: 1px solid #E2E8F0;
        }
        .mobile-nav-close {
            background: #F8FAFC;
            border: 1px solid #E2E8F0;
            border-radius: 8px;
            width: 34px; height: 34px;
            font-size: 0.85rem;
            cursor: pointer;
            color: #64748B;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.2s, color 0.2s;
        }
        .mobile-nav-close:hover { background: #F24F32; color: #fff; border-color: #F24F32; }

        .mobile-nav-links {
            list-style: none;
            padding: 16px 14px;
            margin: 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .mobile-nav-links li a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 13px 14px;
            border-radius: 12px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            color: #0F172A;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .mobile-nav-links li a:hover {
            background: rgba(242,79,50,0.07);
            color: #F24F32;
        }

        .mobile-nav-cta {
            padding: 16px 18px 28px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            border-top: 1px solid #E2E8F0;
        }
        .mobile-nav-btn {
            background: #F24F32;
            color: #fff;
            padding: 13px;
            border-radius: 13px;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            text-align: center;
            box-shadow: 0 6px 20px rgba(242,79,50,0.35);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .mobile-nav-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(242,79,50,0.45); }
        .mobile-nav-btn-outline {
            border: 1.5px solid #E2E8F0;
            color: #0F172A;
            padding: 12px;
            border-radius: 13px;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            text-align: center;
            transition: border-color 0.2s, color 0.2s;
        }
        .mobile-nav-btn-outline:hover { border-color: #F24F32; color: #F24F32; }

/* ===== STATS COUNTS SECTION ===== */
        .counts-section {
            position: relative;
            padding: 60px 6%;
            background: #ffffff;
            overflow: hidden;
        }

        /* Mesh grid bg */
        .counts-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(242,79,50,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(242,79,50,0.04) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        /* Aurora blobs */
        .counts-aurora {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            pointer-events: none;
        }
        .counts-aurora-1 {
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(242,79,50,0.08) 0%, transparent 70%);
            top: -180px; left: -180px;
            animation: cAurora1 9s ease-in-out infinite;
        }
        .counts-aurora-2 {
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
            bottom: -160px; right: -160px;
            animation: cAurora2 11s ease-in-out infinite;
        }
        @keyframes cAurora1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(50px,40px) scale(1.12)} }
        @keyframes cAurora2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-40px,-50px) scale(1.1)} }

        /* ---- Header ---- */
        .counts-header {
            text-align: center;
            position: relative;
            z-index: 2;
            margin-bottom: 72px;
        }
        .counts-tag {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(242,79,50,0.12);
            color: #F24F32;
            border: 1px solid rgba(242,79,50,0.3);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 5px 16px;
            border-radius: 20px;
            margin-bottom: 18px;
        }
        .counts-tag-dot {
            width: 6px; height: 6px;
            background: #F24F32;
            border-radius: 50%;
            animation: cDotBlink 1.4s ease-in-out infinite;
        }
        @keyframes cDotBlink { 0%,100%{opacity:1} 50%{opacity:0.15} }
        .counts-header h2 {
            font-size: 2.6rem;
            font-weight: 900;
            letter-spacing: -1px;
            color: #0F172A;
            margin: 0 0 14px;
            line-height: 1.15;
        }
        .counts-header h2 span {
            background: linear-gradient(135deg, #F24F32, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .counts-header p {
            color: #64748B;
            font-size: 1rem;
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ---- Cards Grid ---- */
        .counts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            position: relative;
            z-index: 2;
        }

        .count-card {
            background: #F8FAFC;
            border: 1px solid #E2E8F0;
            border-radius: 28px;
            padding: 44px 36px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            cursor: default;

            /* Scroll reveal start state */
            opacity: 0;
            transform: translateY(50px) scale(0.94);
            transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
                        transform 0.7s cubic-bezier(0.16,1,0.3,1),
                        border-color 0.4s ease,
                        box-shadow 0.4s ease,
                        background 0.4s ease;
        }
        .count-card:nth-child(1) { transition-delay: 0s; }
        .count-card:nth-child(2) { transition-delay: 0.14s; }
        .count-card:nth-child(3) { transition-delay: 0.28s; }

        .count-card.revealed {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Top glow border sweep on hover */
        .count-card::before {
            content: '';
            position: absolute;
            top: 0; left: 15%; right: 15%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--c-accent, #F24F32), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 2px;
        }
        /* Inner radial glow on hover */
        .count-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 50% at 50% 0%, var(--c-glow, rgba(242,79,50,0.14)) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }
        .count-card:hover {
            background: #ffffff;
            border-color: var(--c-accent, #F24F32);
            box-shadow: 0 28px 64px -16px var(--c-shadow, rgba(242,79,50,0.35)),
                        0 0 0 1px var(--c-accent, #F24F32);
            transform: translateY(-10px) scale(1.02);
        }
        .count-card:hover::before { opacity: 1; }
        .count-card:hover::after  { opacity: 1; }
        .count-card:hover .count-icon-ring { transform: scale(1.12) rotate(-6deg); box-shadow: 0 0 0 8px var(--c-glow, rgba(242,79,50,0.12)), 0 12px 32px var(--c-shadow, rgba(242,79,50,0.3)); }
        .count-card:hover .count-num { letter-spacing: -1px; }

        /* ---- Icon Ring ---- */
        .count-icon-ring {
            width: 80px; height: 80px;
            border-radius: 50%;
            background: var(--c-glow, rgba(242,79,50,0.1));
            border: 1.5px solid rgba(15,23,42,0.08);
            display: flex; align-items: center; justify-content: center;
            font-size: 2rem;
            margin: 0 auto 28px auto;
            position: relative;
            z-index: 1;
            box-shadow: 0 0 0 4px var(--c-glow, rgba(242,79,50,0.08));
            transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
        }

        /* Rotating orbit ring */
        .count-icon-ring::before {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 1.5px dashed var(--c-accent, #F24F32);
            opacity: 0.3;
            animation: orbitSpin 6s linear infinite;
        }
        @keyframes orbitSpin { to { transform: rotate(360deg); } }

        /* Pulse ring */
        .count-icon-ring::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid var(--c-accent, #F24F32);
            opacity: 0;
            animation: iconPulseRing 2.5s ease-out infinite;
        }
        @keyframes iconPulseRing {
            0%   { inset: -4px; opacity: 0.5; }
            100% { inset: -22px; opacity: 0; }
        }

        /* ---- Big Number ---- */
        .count-num {
            font-size: 4rem;
            font-weight: 900;
            color: #0F172A;
            letter-spacing: -3px;
            line-height: 1;
            display: block;
            margin-bottom: 10px;
            font-variant-numeric: tabular-nums;
            position: relative;
            z-index: 1;
            transition: letter-spacing 0.3s ease;
        }
        .count-num-suffix {
            color: var(--c-accent, #F24F32);
            font-size: 2.8rem;
        }

        /* ---- Label ---- */
        .count-label {
            font-size: 1rem;
            font-weight: 700;
            color: #0F172A;
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
        }
        .count-sub {
            font-size: 0.8rem;
            color: #475569;
            line-height: 1.5;
            position: relative;
            z-index: 1;
        }

        /* ---- Progress bar at bottom of card ---- */
        .count-bar-track {
            height: 3px;
            background: #E2E8F0;
            border-radius: 10px;
            margin-top: 24px;
            overflow: hidden;
            position: relative;
            z-index: 1;
        }
        .count-bar-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--c-accent, #F24F32), var(--c-bar-end, #f59e0b));
            border-radius: 10px;
            transition: width 1.6s cubic-bezier(0.16,1,0.3,1);
            box-shadow: 0 0 8px var(--c-shadow, rgba(242,79,50,0.5));
        }
        .count-card.revealed .count-bar-fill { width: var(--c-bar-pct, 80%); }

        /* ---- Responsive ---- */
        @media (max-width: 900px) {
            .counts-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
        }

.services-section {
            position: relative;
            padding: 90px 6% 100px;
            background: #F8FAFC;
            overflow: hidden;
        }
        .services-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
            background-size: 44px 44px;
            pointer-events: none;
        }
        /* top aurora */
        .services-section::after {
            content: '';
            position: absolute;
            top: -80px; left: 50%;
            transform: translateX(-50%);
            width: 800px; height: 320px;
            background: radial-gradient(ellipse, rgba(242,79,50,0.07) 0%, rgba(59,130,246,0.05) 40%, transparent 70%);
            pointer-events: none;
        }

        /* Header */
        .services-header {
            text-align: center;
            position: relative;
            z-index: 2;
            margin-bottom: 56px;
        }
        .services-tag {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(242,79,50,0.08);
            color: #F24F32;
            border: 1px solid rgba(242,79,50,0.2);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 5px 16px;
            border-radius: 20px;
            margin-bottom: 16px;
        }
        .services-header h2 {
            font-size: 2.4rem;
            font-weight: 900;
            color: #0F172A;
            letter-spacing: -1px;
            margin: 0 0 12px;
        }
        .services-header h2 span {
            color: #F24F32;
        }
        .services-header p {
            color: #64748B;
            font-size: 0.95rem;
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
            position: relative;
            z-index: 2;
        }

        /* Service card */
        .svc-card {
            background: #FFFFFF;
            border: 1px solid #E2E8F0;
            border-radius: 20px;
            padding: 28px 16px 24px;
            text-align: center;
            cursor: pointer;
            position: relative;
            overflow: hidden;

            opacity: 0;
            transform: translateY(30px) scale(0.95);
            transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1),
                        transform 0.55s cubic-bezier(0.16,1,0.3,1),
                        border-color 0.3s ease,
                        box-shadow 0.3s ease;
        }
        .svc-card.revealed {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Shimmer sweep on hover */
        .svc-card::before {
            content: '';
            position: absolute;
            top: -100%; left: -60%;
            width: 50%; height: 300%;
            background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.7) 50%, transparent 60%);
            transform: skewX(-15deg);
            pointer-events: none;
        }
        .svc-card:hover::before { animation: svcShimmer 0.55s ease forwards; }
        @keyframes svcShimmer { to { left: 160%; } }

        /* Top accent line */
        .svc-card::after {
            content: '';
            position: absolute;
            top: 0; left: 20%; right: 20%;
            height: 2.5px;
            background: linear-gradient(90deg, transparent, #F24F32, transparent);
            border-radius: 2px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .svc-card:hover {
            border-color: rgba(242,79,50,0.25);
            box-shadow: 0 16px 40px -10px rgba(242,79,50,0.15),
                        0 4px 16px rgba(15,23,42,0.06);
            transform: translateY(-6px) scale(1.02);
        }
        .svc-card:hover::after { opacity: 1; }
        .svc-card:hover .svc-icon { transform: scale(1.18) rotate(-6deg); }

        /* Icon bubble */
        .svc-icon {
            width: 64px; height: 64px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(242,79,50,0.08) 0%, rgba(242,79,50,0.03) 100%);
            border: 1px solid rgba(242,79,50,0.12);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.7rem;
            margin: 0 auto 16px auto;
            transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
            position: relative;
            z-index: 1;
        }

        .svc-name {
            font-size: 0.82rem;
            font-weight: 700;
            color: #0F172A;
            line-height: 1.3;
            position: relative;
            z-index: 1;
        }
        .svc-badge {
            display: inline-block;
            margin-top: 8px;
            font-size: 0.62rem;
            font-weight: 700;
            padding: 2px 9px;
            border-radius: 20px;
            background: rgba(242,79,50,0.07);
            color: #F24F32;
            border: 1px solid rgba(242,79,50,0.15);
            position: relative;
            z-index: 1;
        }
        .svc-badge.popular {
            background: #F24F32;
            color: #fff;
            border-color: #F24F32;
        }
        .svc-badge.new-badge {
            background: rgba(16,185,129,0.08);
            color: #10b981;
            border-color: rgba(16,185,129,0.2);
        }

        @media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
        @media (max-width: 720px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 480px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== EARNINGS & GROWTH — FULL REDESIGN ===== */
        .earn-section {
            position: relative;
            padding: 120px 6%;
            background: #060912;
            overflow: hidden;
            color: #fff;
        }

        /* Noise texture overlay */
        .earn-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            opacity: 0.4;
        }

        /* Animated aurora blobs */
        .earn-aurora {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
        }
        .earn-aurora-1 {
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(242,79,50,0.18) 0%, transparent 70%);
            top: -100px; left: -100px;
            animation: auroraFloat1 8s ease-in-out infinite;
        }
        .earn-aurora-2 {
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(139,92,246,0.14) 0%, transparent 70%);
            bottom: -80px; right: -80px;
            animation: auroraFloat2 10s ease-in-out infinite;
        }
        .earn-aurora-3 {
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            animation: auroraFloat3 12s ease-in-out infinite;
        }
        @keyframes auroraFloat1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(40px,30px) scale(1.1)} }
        @keyframes auroraFloat2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-30px,-40px) scale(1.08)} }
        @keyframes auroraFloat3 { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.15)} }

        /* ---- Section Header ---- */
        .earn-header {
            text-align: center;
            position: relative;
            z-index: 2;
            margin-bottom: 70px;
        }
        .earn-tag {
            display: inline-block;
            background: rgba(242,79,50,0.12);
            color: #F24F32;
            border: 1px solid rgba(242,79,50,0.3);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 16px;
        }
        .earn-header h2 {
            font-size: 2.6rem;
            font-weight: 900;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #FFFFFF 30%, #F24F32 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0 0 14px;
        }
        .earn-header p {
            color: #64748B;
            font-size: 1rem;
            max-width: 520px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ---- Main Layout ---- */
        .earn-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            position: relative;
            z-index: 2;
            align-items: start;
        }

        /* ---- LEFT: Dashboard Card ---- */
        .earn-dashboard {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 28px;
            padding: 32px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(12px);
        }
        .earn-dashboard::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(242,79,50,0.06) 0%, transparent 50%);
            pointer-events: none;
            border-radius: 28px;
        }

        /* Dashboard top bar */
        .dash-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
        }
        .dash-dots {
            display: flex;
            gap: 6px;
        }
        .dash-dots span {
            width: 10px; height: 10px;
            border-radius: 50%;
        }
        .dash-dots span:nth-child(1) { background: #F24F32; }
        .dash-dots span:nth-child(2) { background: #f59e0b; }
        .dash-dots span:nth-child(3) { background: #10b981; }
        .dash-title {
            font-size: 0.78rem;
            font-weight: 600;
            color: #64748B;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .dash-live {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.72rem;
            font-weight: 700;
            color: #10b981;
        }
        .dash-live-dot {
            width: 7px; height: 7px;
            background: #10b981;
            border-radius: 50%;
            animation: liveBlink 1.4s ease-in-out infinite;
        }
        @keyframes liveBlink { 0%,100%{opacity:1} 50%{opacity:0.2} }

        /* Big earnings number */
        .dash-income-row {
            display: flex;
            align-items: flex-end;
            gap: 12px;
            margin-bottom: 6px;
        }
        .dash-income-num {
            font-size: 3.2rem;
            font-weight: 900;
            color: #FFFFFF;
            letter-spacing: -2px;
            line-height: 1;
            font-variant-numeric: tabular-nums;
        }
        .dash-income-change {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: rgba(16,185,129,0.12);
            color: #10b981;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            margin-bottom: 8px;
        }
        .dash-income-label {
            font-size: 0.82rem;
            color: #64748B;
            margin-bottom: 28px;
        }

        /* Bar chart */
        .dash-chart {
            display: flex;
            align-items: flex-end;
            gap: 8px;
            height: 90px;
            margin-bottom: 24px;
        }
        .dash-bar-wrap {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            height: 100%;
            justify-content: flex-end;
        }
        .dash-bar {
            width: 100%;
            border-radius: 6px 6px 0 0;
            background: linear-gradient(180deg, rgba(242,79,50,0.9), rgba(242,79,50,0.3));
            transform-origin: bottom;
            transform: scaleY(0);
            transition: transform 0.8s cubic-bezier(0.34,1.56,0.64,1);
        }
        .dash-bar.active { transform: scaleY(1); }
        .dash-bar:nth-child(1)  { transition-delay: 0.05s; }
        .dash-bar-label {
            font-size: 0.6rem;
            color: #475569;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        /* Highlight this week */
        .dash-bar-wrap.this-week .dash-bar {
            background: linear-gradient(180deg, #F24F32, rgba(242,79,50,0.5));
            box-shadow: 0 0 16px rgba(242,79,50,0.5);
        }
        .dash-bar-wrap.this-week .dash-bar-label { color: #F24F32; font-weight: 700; }

        /* Mini stat row */
        .dash-mini-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }
        .dash-mini {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 14px;
            padding: 14px 12px;
            text-align: center;
        }
        .dash-mini-num {
            font-size: 1.3rem;
            font-weight: 800;
            color: #FFFFFF;
            display: block;
            font-variant-numeric: tabular-nums;
        }
        .dash-mini-label {
            font-size: 0.65rem;
            color: #64748B;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        /* ---- RIGHT: Perks Stack ---- */
        .earn-perks {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .earn-perk {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 20px;
            padding: 24px 24px;
            display: flex;
            gap: 18px;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
            cursor: pointer;

            /* Scroll reveal */
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1),
                        border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
        }
        .earn-perk.revealed {
            opacity: 1;
            transform: translateX(0);
        }
        .earn-perk:nth-child(1) { transition-delay: 0s; }
        .earn-perk:nth-child(2) { transition-delay: 0.1s; }
        .earn-perk:nth-child(3) { transition-delay: 0.2s; }
        .earn-perk:nth-child(4) { transition-delay: 0.3s; }

        /* Left accent strip */
        .earn-perk::before {
            content: '';
            position: absolute;
            left: 0; top: 20%; bottom: 20%;
            width: 3px;
            background: var(--perk-accent, #F24F32);
            border-radius: 2px;
            opacity: 0;
            transition: opacity 0.35s ease, top 0.35s ease, bottom 0.35s ease;
        }
        .earn-perk:hover::before { opacity: 1; top: 10%; bottom: 10%; }

        /* Shimmer on hover */
        .earn-perk::after {
            content: '';
            position: absolute;
            top: -100%; left: -60%;
            width: 50%; height: 300%;
            background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
            transform: skewX(-15deg);
            pointer-events: none;
        }
        .earn-perk:hover::after { animation: perkShimmer 0.65s ease forwards; }
        @keyframes perkShimmer { to { left: 160%; } }

        .earn-perk:hover {
            background: rgba(255,255,255,0.06);
            border-color: rgba(255,255,255,0.14);
            box-shadow: 0 16px 40px -12px rgba(0,0,0,0.4);
            transform: translateX(6px);
        }

        .earn-perk-icon {
            width: 50px; height: 50px;
            border-radius: 15px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
            background: var(--perk-bg, rgba(242,79,50,0.12));
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 6px 20px var(--perk-shadow, rgba(242,79,50,0.2));
            transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
        }
        .earn-perk:hover .earn-perk-icon { transform: rotate(-8deg) scale(1.15); }

        .earn-perk-body { flex: 1; }
        .earn-perk-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #F1F5F9;
            margin: 0 0 6px;
        }
        .earn-perk-body p {
            font-size: 0.85rem;
            color: #64748B;
            line-height: 1.6;
            margin: 0;
        }

        /* Inline stat pill */
        .perk-pill {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: var(--perk-bg, rgba(242,79,50,0.1));
            color: var(--perk-accent, #F24F32);
            font-size: 0.72rem;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            margin-top: 8px;
            border: 1px solid rgba(255,255,255,0.06);
        }

        /* ---- CTA strip at bottom ---- */
        .earn-cta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(135deg, rgba(242,79,50,0.12) 0%, rgba(139,92,246,0.08) 100%);
            border: 1px solid rgba(242,79,50,0.2);
            border-radius: 20px;
            padding: 24px 32px;
            margin-top: 40px;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }
        .earn-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(242,79,50,0.06) 50%, transparent 100%);
            animation: ctaSweep 3s ease-in-out infinite;
        }
        @keyframes ctaSweep { 0%,100%{transform:translateX(-100%)} 50%{transform:translateX(100%)} }
        .earn-cta-text h4 {
            font-size: 1.1rem;
            font-weight: 800;
            color: #FFFFFF;
            margin: 0 0 4px;
        }
        .earn-cta-text p {
            font-size: 0.85rem;
            color: #64748B;
            margin: 0;
        }
        .earn-cta-btn {
            background: #F24F32;
            color: #fff;
            border: none;
            padding: 13px 28px;
            border-radius: 14px;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            position: relative;
            z-index: 1;
            white-space: nowrap;
            box-shadow: 0 8px 28px rgba(242,79,50,0.4);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .earn-cta-btn:hover {
            transform: translateY(-2px) scale(1.04);
            box-shadow: 0 14px 36px rgba(242,79,50,0.55);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .earn-layout { grid-template-columns: 1fr; }
            .earn-header h2 { font-size: 2rem; }
            .earn-cta { flex-direction: column; gap: 20px; text-align: center; }
        }

/* ===== APP DOWNLOAD SECTION ===== */
        .app-download-section {
            padding: 72px 60px;
            background: #ffffff;
            border-top: 1px solid #e8ecf0;
        }
        .app-dl-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .app-dl-tag {
            display: inline-block;
            background: rgba(242,79,50,0.08);
            color: #F24F32;
            border: 1px solid rgba(242,79,50,0.2);
            padding: 5px 16px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 14px;
        }
        .app-dl-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 800;
            color: #0F172A;
            margin: 0;
        }
        .app-dl-grid {
            display: flex;
            gap: 20px;
            max-width: 860px;
            margin: 0 auto;
        }
        .app-dl-card {
            flex: 1;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 28px 28px 24px;
            position: relative;
            overflow: hidden;
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .app-dl-customer:hover {
            border-color: rgba(242,79,50,0.4);
            box-shadow: 0 8px 32px rgba(242,79,50,0.1);
            transform: translateY(-4px);
        }
        .app-dl-partner:hover {
            border-color: rgba(59,130,246,0.4);
            box-shadow: 0 8px 32px rgba(59,130,246,0.1);
            transform: translateY(-4px);
        }
        .app-dl-card-glow {
            position: absolute;
            width: 160px; height: 160px;
            border-radius: 50%;
            filter: blur(50px);
            top: -30px; right: -30px;
            pointer-events: none;
        }
        .app-dl-customer .app-dl-card-glow { background: rgba(242,79,50,0.08); }
        .app-dl-partner  .app-dl-card-glow { background: rgba(59,130,246,0.08); }
        .app-dl-top-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 22px;
        }
        .app-dl-icon { font-size: 2.4rem; line-height: 1; flex-shrink: 0; }
        .app-dl-card-badge {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 50px;
            margin-bottom: 5px;
            background: rgba(242,79,50,0.1);
            color: #F24F32;
            border: 1px solid rgba(242,79,50,0.2);
        }
        .partner-badge {
            background: rgba(59,130,246,0.1) !important;
            color: #2563eb !important;
            border-color: rgba(59,130,246,0.2) !important;
        }
        .app-dl-card h3 {
            font-size: 1.15rem;
            font-weight: 800;
            color: #0F172A;
            margin: 0;
        }
        .app-dl-btns {
            display: flex;
            gap: 10px;
        }
        .app-store-btn {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            background: #0F172A;
            border: 1px solid #0F172A;
            border-radius: 10px;
            text-decoration: none;
            color: #fff;
            transition: background 0.2s, border-color 0.2s, transform 0.2s;
        }
        .app-store-btn:hover { transform: translateY(-2px); opacity: 0.88; }
        .store-btn-icon {
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; color: #fff;
        }
        .store-btn-text { display: flex; flex-direction: column; }
        .store-label { font-size: 0.58rem; color: #94A3B8; line-height: 1; }
        .store-name  { font-size: 0.85rem; font-weight: 700; color: #fff; line-height: 1.3; }
        @media (max-width: 768px) {
            .app-download-section { padding: 56px 20px; }
            .app-dl-grid { flex-direction: column; gap: 16px; }
            .app-dl-card { padding: 22px 20px; }
        }

/* ===== FOOTER ===== */
        .cg-footer {
            position: relative;
            background: #ffffff;
            color: #94A3B8;
            overflow: hidden;
            font-size: 0.9rem;
        }

        /* Top gradient border */
        .cg-footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(242,79,50,0.5) 30%, rgba(139,92,246,0.4) 70%, transparent 100%);
        }

        /* Ambient glow */
        .cg-footer-glow {
            position: absolute;
            width: 700px; height: 400px;
            background: radial-gradient(ellipse, rgba(242,79,50,0.07) 0%, transparent 70%);
            top: -100px; left: 50%;
            transform: translateX(-50%);
            pointer-events: none;
        }

        /* ---- Top CTA band ---- */
        .footer-cta-band {
            position: relative;
            z-index: 2;
            padding: 64px 6%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            flex-wrap: wrap;
        }
        .footer-cta-band-left h2 {
            font-size: 2rem;
            font-weight: 900;
            color: #FFFFFF;
            letter-spacing: -0.8px;
            margin: 0 0 8px;
            line-height: 1.2;
        }
        .footer-cta-band-left h2 span {
            background: linear-gradient(135deg, #F24F32, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .footer-cta-band-left p {
            color: #64748B;
            font-size: 0.95rem;
            margin: 0;
            line-height: 1.5;
        }
        .footer-cta-band-right {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }
        .footer-btn-primary {
            background: #F24F32;
            color: #fff;
            padding: 13px 26px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 0.88rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 28px rgba(242,79,50,0.4);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            white-space: nowrap;
        }
        .footer-btn-primary:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 14px 36px rgba(242,79,50,0.55);
        }
        .footer-btn-secondary {
            color: #94A3B8;
            padding: 13px 22px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 0.88rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
            white-space: nowrap;
        }
        .footer-btn-secondary:hover {
            border-color: rgba(242,79,50,0.4);
            color: #F24F32;
            transform: translateY(-2px);
        }

        /* ---- Main links grid ---- */
        .footer-main {
            position: relative;
            z-index: 2;
            padding: 64px 6% 48px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        /* Brand column */
        .footer-brand .footer-logo {
            font-size: 1.3rem;
            font-weight: 800;
            color: #FFFFFF;
            letter-spacing: -0.5px;
            margin-bottom: 14px;
            display: inline-block;
        }
        .footer-brand .footer-logo span { color: #F24F32; }
        .footer-brand p {
            color: #475569;
            font-size: 0.85rem;
            line-height: 1.7;
            max-width: 280px;
            margin-bottom: 24px;
        }

        /* App store badges */
        .footer-app-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .app-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 9px 14px;
            text-decoration: none;
            transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }
        .app-badge:hover {
            background: rgba(242,79,50,0.1);
            border-color: rgba(242,79,50,0.3);
            transform: translateY(-2px);
        }
        .app-badge-icon { font-size: 1.1rem; }
        .app-badge-text { display: flex; flex-direction: column; }
        .app-badge-sub { font-size: 0.58rem; color: #64748B; font-weight: 500; }
        .app-badge-name { font-size: 0.78rem; color: #FFFFFF; font-weight: 700; line-height: 1.2; }

        /* Link columns */
        .footer-col h4 {
            font-size: 0.72rem;
            font-weight: 700;
            color: #FFFFFF;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 20px;
        }
        .footer-col ul {
            list-style: none;
            padding: 0; margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-col ul li a {
            color: #475569;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color 0.2s ease, gap 0.2s ease;
        }
        .footer-col ul li a:hover {
            color: #F24F32;
            gap: 10px;
        }
        .footer-col ul li a::before {
            content: '→';
            font-size: 0.7rem;
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        .footer-col ul li a:hover::before { opacity: 1; }

        /* ---- Social row ---- */
        .footer-social-row {
            display: flex;
            gap: 10px;
            margin-top: 28px;
        }
        .footer-social-btn {
            width: 38px; height: 38px;
            border-radius: 10px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.09);
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem;
            text-decoration: none;
            transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }
        .footer-social-btn:hover {
            background: rgba(242,79,50,0.12);
            border-color: rgba(242,79,50,0.35);
            transform: translateY(-3px) scale(1.08);
        }

        /* ---- Newsletter strip ---- */
        .footer-newsletter {
            position: relative;
            z-index: 2;
            padding: 36px 6%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            flex-wrap: wrap;
        }
        .footer-newsletter-left {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .footer-newsletter-icon {
            width: 44px; height: 44px;
            background: rgba(242,79,50,0.1);
            border: 1px solid rgba(242,79,50,0.2);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .footer-newsletter-left strong {
            display: block;
            color: #FFFFFF;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 3px;
        }
        .footer-newsletter-left span {
            font-size: 0.8rem;
            color: #475569;
        }
        .footer-newsletter-form {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .footer-newsletter-input {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 11px 18px;
            font-size: 0.85rem;
            color: #FFFFFF;
            outline: none;
            width: 240px;
            font-family: inherit;
            transition: border-color 0.25s ease, background 0.25s ease;
        }
        .footer-newsletter-input::placeholder { color: #475569; }
        .footer-newsletter-input:focus {
            border-color: rgba(242,79,50,0.4);
            background: rgba(255,255,255,0.07);
        }
        .footer-newsletter-btn {
            background: #F24F32;
            color: #fff;
            border: none;
            padding: 11px 20px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            font-family: inherit;
            white-space: nowrap;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .footer-newsletter-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(242,79,50,0.4);
        }

        /* ---- Bottom bar ---- */
        .footer-bottom {
            position: relative;
            z-index: 2;
            padding: 24px 6%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }
        .footer-bottom-left {
            font-size: 0.8rem;
            color: #334155;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .footer-bottom-left span { color: #F24F32; }
        .footer-bottom-right {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .footer-bottom-right a {
            font-size: 0.8rem;
            color: #334155;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-bottom-right a:hover { color: #F24F32; }

        /* ---- City chips ---- */
        .footer-cities {
            position: relative;
            z-index: 2;
            padding: 0 6% 36px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        .footer-cities-label {
            font-size: 0.72rem;
            font-weight: 600;
            color: #334155;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-right: 4px;
        }
        .city-chip {
            font-size: 0.72rem;
            font-weight: 600;
            color: #475569;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            padding: 4px 12px;
            border-radius: 20px;
            transition: color 0.2s, border-color 0.2s;
        }
        .city-chip:hover { color: #F24F32; border-color: rgba(242,79,50,0.3); }

        /* ---- Responsive ---- */
        @media (max-width: 1024px) {
            .footer-main { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 640px) {
            .footer-main { grid-template-columns: 1fr; gap: 32px; }
            .footer-cta-band { flex-direction: column; align-items: flex-start; }
            .footer-newsletter { flex-direction: column; align-items: flex-start; }
            .footer-newsletter-form { width: 100%; }
            .footer-newsletter-input { flex: 1; width: auto; }
            .footer-bottom { flex-direction: column; align-items: flex-start; }
        }

/* ---- Customer Reviews Slider Section ---- */
.reviews-section {
    position: relative;
    padding: 90px 6% 100px;
    background: #ffffff;
    overflow: hidden;
}
.reviews-header {
    text-align: center;
    margin-bottom: 48px;
}
.reviews-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(59,130,246,0.08);
    color: #3b82f6;
    border: 1px solid rgba(59,130,246,0.2);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.reviews-header h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #0F172A;
    letter-spacing: -1px;
    margin: 0 0 12px;
}
.reviews-header h2 span { color: #F24F32; }
.reviews-header p {
    color: #64748B;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews-slider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}
.reviews-track-wrap {
    overflow: hidden;
    flex: 1;
}
.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.review-card {
    flex: 0 0 calc((100% - 40px) / 3);
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.review-stars {
    color: #F59E0B;
    font-size: 1rem;
    letter-spacing: 2px;
}
.review-text {
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.6;
    flex: 1;
}
.review-person {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F24F32, #3b82f6);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0F172A;
}
.review-city {
    font-size: 0.76rem;
    color: #94A3B8;
}

.reviews-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #fff;
    color: #0F172A;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.reviews-nav:hover {
    background: #F24F32;
    color: #fff;
    border-color: #F24F32;
    transform: scale(1.08);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #CBD5E1;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, width 0.2s ease;
}
.reviews-dot.active {
    background: #F24F32;
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .review-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 720px) {
    .review-card { flex: 0 0 100%; }
    .reviews-header h2 { font-size: 1.9rem; }
    .reviews-slider { gap: 10px; }
    .reviews-nav { width: 34px; height: 34px; font-size: 1.1rem; }
}