  :root {
            --primary-black: #000000;
            --primary-white: #FFFFFF;
            --primary-yellow: #FFD700;
            --accent-yellow: #FFED4E;
            --dark-gray: #1A1A1A;
            --medium-gray: #333333;
            --light-gray: #666666;
            --border-color: #E5E5E5;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 5px 20px rgba(0,0,0,0.12);
            --shadow-lg: 0 15px 40px rgba(0,0,0,0.15);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            /*background-color: var(--primary-white);*/
            color: var(--primary-black);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Fixed Header - Production Ready */
        .fixed-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            color: var(--primary-white);
            padding: 0 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            border-bottom: 2px solid var(--primary-yellow);
            height: 70px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 800;
            text-decoration: none;
        }

        .logo-icon {
            color: var(--primary-yellow);
            font-size: 28px;
        }

        .logo-text {
            background: linear-gradient(to right, var(--primary-yellow), #FFED4E);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Navigation */
        .nav-container {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: center;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: var(--primary-white);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: var(--primary-yellow);
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-yellow);
            bottom: -2px;
            left: 0;
            transition: width 0.3s;
        }

        .nav-links a:hover:after,
        .nav-links a.active:after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--primary-yellow);
            font-weight: 600;
        }

        /* Header Actions - Optimized for Mobile */
        .header-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        /* Play Store Button - Always Visible */
        .btn-playstore {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: var(--primary-black);
            color: var(--primary-white);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 10px 18px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
        }

        .btn-playstore:hover {
            background-color: var(--dark-gray);
            border-color: var(--primary-yellow);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-playstore i {
            color: var(--primary-yellow);
            font-size: 20px;
        }

        /* Account Button - Desktop */
        .btn-account {
            background-color: var(--primary-yellow);
            color: var(--primary-black);
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-account:hover {
            background-color: var(--accent-yellow);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
        }

        /* Signup Icon for Mobile - NEW */
        .btn-signup-mobile {
            display: none;
            background: none;
            border: none;
            color: var(--primary-white);
            font-size: 22px;
            cursor: pointer;
            transition: var(--transition);
            padding: 8px;
            border-radius: 50%;
        }

        .btn-signup-mobile:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--primary-yellow);
        }
        
        

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--primary-white);
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        /* Main Content */
        .main-content {
            margin-top: 70px;
            padding: 0;
            width: 100%;
        }

       /* Hero Section - FIXED RESPONSIVE VERSION */
.hero-section {
    padding: 0;
    width: 100%;
    position: relative;
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1513475382585-d06e58bcb0e0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.text-content {
    padding: 30px 0;
    max-width: 700px;
}

.text-content p.fs-4 {
    font-size: clamp(16px, 3vw, 24px) !important;
    color: var(--primary-yellow);
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.text-content h1.display-1 {
    font-size: clamp(40px, 8vw, 80px) !important;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-white);
    margin-bottom: 20px;
}

.text-content h1.display-1 br {
    display: block;
    margin-bottom: 10px;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px) !important;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-create-account {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    font-size: clamp(16px, 1.5vw, 18px);
    border: 2px solid transparent;
    gap: 12px;
}

.btn-create-account:hover {
    background: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-yellow);
}

.btn-create-account span {
    margin-left: 8px;
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-create-account:hover span {
    transform: translateX(5px);
}

/* Stats Row */
.stats-row {
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 20px;
    padding: 25px;
    margin-top: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.stat-text {
    color: rgba(255, 255, 255, 0.9);
}

.stat-text p {
    font-size: clamp(12px, 1.5vw, 14px);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* Responsive Design for Hero Section */
@media (max-width: 1200px) {
    .banner-container {
        padding: 15px;
    }
    
    .banner {
        padding: 30px;
    }
    
    .stats-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .banner {
        text-align: center;
    }
    
    .text-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-create-account {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 10px;
    }
    
    .banner-container {
        padding: 10px;
    }
    
    .banner {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .text-content {
        padding: 20px 0;
    }
    
    .text-content h1.display-1 br {
        display: none;
    }
    
    .text-content h1.display-1 {
        font-size: clamp(32px, 6vw, 48px) !important;
    }
    
    .stats-row {
        margin-top: 30px;
        padding: 20px;
        border-radius: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .btn-create-account {
        padding: 12px 24px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .text-content h1.display-1 {
        font-size: 28px !important;
        line-height: 1.2;
    }
    
    .text-content p.fs-4 {
        font-size: 14px !important;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 16px !important;
        line-height: 1.5;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-row {
        margin-top: 25px;
        padding: 15px;
    }
    
    .btn-create-account {
        font-size: 15px;
        padding: 12px 20px;
    }
}

@media (max-width: 360px) {
    .banner {
        padding: 15px 10px;
    }
    
    .text-content h1.display-1 {
        font-size: 24px !important;
    }
    
    .hero-description {
        font-size: 14px !important;
    }
    
    .btn-create-account {
        flex-direction: column;
        gap: 8px;
        padding: 10px 15px;
    }
    
    .btn-create-account span {
        margin-left: 0;
    }
}

        .btn-playstore-large {
            display: flex;
            align-items: center;
            gap: 10px;
            background-color: var(--primary-white);
            color: var(--primary-black);
            border: 2px solid var(--border-color);
            padding: 16px 28px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: var(--shadow-sm);
        }

        .btn-playstore-large:hover {
            border-color: var(--primary-yellow);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .btn-playstore-large i {
            color: var(--primary-yellow);
            font-size: 24px;
        }

       
        .phone-mockup {
            width: 260px;
            height: 460px;
            background: var(--primary-black);
            border-radius: 36px;
            border: 12px solid #222;
            position: relative;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 40px;
            z-index: 1;
        }

        
        /* Features Section */
        .features-section {
            padding: 100px 40px;
            background-color: #FAFAFA;
            border-top: 1px solid var(--border-color);
        }

        .section-title {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .section-title h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--primary-black);
        }

        .section-title p {
            font-size: 18px;
            color: var(--light-gray);
            line-height: 1.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background-color: var(--primary-white);
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            transition: var(--transition);
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-yellow);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: var(--primary-yellow);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 28px;
            color: var(--primary-black);
        }

        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-black);
        }

        .feature-card p {
            color: var(--light-gray);
            font-size: 16px;
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 40px;
            text-align: center;
            background-color: var(--primary-black);
            color: var(--primary-white);
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-content h2 .highlight {
            color: var(--primary-yellow);
        }

        .cta-content p {
            font-size: 18px;
            color: #DDD;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            padding: 60px 40px 30px;
            background-color: var(--dark-gray);
            color: var(--primary-white);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 25px;
            color: var(--primary-yellow);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: #CCC;
            text-decoration: none;
            transition: var(--transition);
            font-size: 15px;
        }

        .footer-column a:hover {
            color: var(--primary-yellow);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 14px;
        }

        /* Shopify-style Modal - POPUP ON EVERY REFRESH */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s, visibility 0.5s;
            backdrop-filter: blur(8px);
            padding: 20px;
        }

        /*.modal-overlay.active {*/
        /*    opacity: 1;*/
        /*    visibility: visible;*/
        /*}*/

        /*.modal {*/
        /*    background-color: var(--primary-white);*/
        /*    border-radius: 20px;*/
        /*    width: 100%;*/
        /*    max-width: 520px;*/
        /*    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);*/
        /*    overflow: hidden;*/
        /*    transform: scale(0.9);*/
        /*    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);*/
        /*    border: 1px solid var(--border-color);*/
        /*    max-height: 90vh;*/
        /*    overflow-y: auto;*/
        /*}*/

        /*.modal-overlay.active .modal {*/
        /*    transform: scale(1);*/
        /*}*/

        /*.modal-header {*/
        /*    padding: 30px 30px 20px;*/
        /*    background-color: var(--primary-black);*/
        /*    color: var(--primary-white);*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    justify-content: space-between;*/
        /*    border-bottom: 3px solid var(--primary-yellow);*/
        /*}*/

        /*.modal-title {*/
        /*    font-size: 26px;*/
        /*    font-weight: 800;*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    gap: 12px;*/
        /*}*/

        /*.modal-title i {*/
        /*    color: var(--primary-yellow);*/
        /*}*/

        /*.btn-close-modal {*/
        /*    background: none;*/
        /*    border: none;*/
        /*    font-size: 24px;*/
        /*    color: var(--primary-white);*/
        /*    cursor: pointer;*/
        /*    transition: var(--transition);*/
        /*    padding: 8px;*/
        /*    border-radius: 50%;*/
        /*    width: 40px;*/
        /*    height: 40px;*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    justify-content: center;*/
        /*}*/

        /*.btn-close-modal:hover {*/
        /*    background-color: rgba(255, 255, 255, 0.1);*/
        /*    color: var(--primary-yellow);*/
        /*}*/

        /*.modal-body {*/
        /*    padding: 30px;*/
        /*}*/

        /*.modal-subtitle {*/
        /*    font-size: 18px;*/
        /*    margin-bottom: 20px;*/
        /*    color: var(--medium-gray);*/
        /*    text-align: center;*/
        /*    font-weight: 600;*/
        /*}*/

        /*.modal-image {*/
        /*    width: 100%;*/
        /*    height: 180px;*/
        /*    background-color: var(--dark-gray);*/
        /*    border-radius: 12px;*/
        /*    margin-bottom: 25px;*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    justify-content: center;*/
        /*    overflow: hidden;*/
        /*    position: relative;*/
        /*}*/

        /*.modal-image:before {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    width: 100%;*/
        /*    height: 100%;*/
        /*    background: linear-gradient(45deg, rgba(255,215,0,0.15), transparent);*/
        /*}*/

        /*.modal-image i {*/
        /*    font-size: 80px;*/
        /*    color: var(--primary-yellow);*/
        /*    z-index: 1;*/
        /*}*/

        /*.modal-features {*/
        /*    display: flex;*/
        /*    flex-direction: column;*/
        /*    gap: 16px;*/
        /*    margin-bottom: 30px;*/
        /*}*/

        /*.modal-feature {*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    gap: 12px;*/
        /*}*/

        /*.modal-feature i {*/
        /*    color: var(--primary-yellow);*/
        /*    font-size: 18px;*/
        /*    width: 24px;*/
        /*}*/

        /*.modal-feature span {*/
        /*    color: var(--medium-gray);*/
        /*    font-size: 16px;*/
        /*    line-height: 1.5;*/
        /*}*/

        /*.modal-form {*/
        /*    margin-bottom: 25px;*/
        /*}*/

        /*.form-group {*/
        /*    margin-bottom: 20px;*/
        /*}*/

        /*.form-group label {*/
        /*    display: block;*/
        /*    margin-bottom: 10px;*/
        /*    font-weight: 600;*/
        /*    color: var(--primary-black);*/
        /*    font-size: 15px;*/
        /*}*/

        /*.form-group input {*/
        /*    width: 100%;*/
        /*    padding: 16px 20px;*/
        /*    border: 1px solid var(--border-color);*/
        /*    border-radius: 10px;*/
        /*    font-size: 16px;*/
        /*    background-color: #FAFAFA;*/
        /*    transition: var(--transition);*/
        /*}*/

        /*.form-group input:focus {*/
        /*    outline: none;*/
        /*    border-color: var(--primary-yellow);*/
        /*    background-color: var(--primary-white);*/
        /*    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);*/
        /*}*/

        /*.modal-actions {*/
        /*    display: flex;*/
        /*    flex-direction: column;*/
        /*    gap: 15px;*/
        /*}*/

        /*.btn-modal-primary {*/
        /*    background-color: var(--primary-black);*/
        /*    color: var(--primary-white);*/
        /*    border: none;*/
        /*    padding: 18px;*/
        /*    border-radius: 10px;*/
        /*    font-weight: 700;*/
        /*    font-size: 16px;*/
        /*    cursor: pointer;*/
        /*    transition: var(--transition);*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    justify-content: center;*/
        /*    gap: 12px;*/
        /*}*/

        /*.btn-modal-primary:hover {*/
        /*    background-color: var(--dark-gray);*/
        /*    transform: translateY(-2px);*/
        /*    box-shadow: var(--shadow-md);*/
        /*}*/

        /*.btn-modal-secondary {*/
        /*    background-color: var(--primary-white);*/
        /*    color: var(--primary-black);*/
        /*    border: 2px solid var(--border-color);*/
        /*    padding: 16px;*/
        /*    border-radius: 10px;*/
        /*    font-weight: 600;*/
        /*    font-size: 16px;*/
        /*    cursor: pointer;*/
        /*    transition: var(--transition);*/
        /*}*/

        /*.btn-modal-secondary:hover {*/
        /*    background-color: #F5F5F5;*/
        /*    border-color: var(--primary-yellow);*/
        /*}*/

        /*.modal-footer {*/
        /*    padding: 20px 30px;*/
        /*    background-color: #FAFAFA;*/
        /*    text-align: center;*/
        /*    border-top: 1px solid var(--border-color);*/
        /*}*/

        /*.modal-footer p {*/
        /*    font-size: 14px;*/
        /*    color: var(--light-gray);*/
        /*    margin: 0;*/
        /*    line-height: 1.6;*/
        /*}*/

        /*.modal-footer a {*/
        /*    color: var(--primary-black);*/
        /*    text-decoration: underline;*/
        /*    font-weight: 600;*/
        /*}*/

        /*.modal-footer a:hover {*/
        /*    color: var(--primary-yellow);*/
        /*}*/

        /* Cookie Banner - POPUP ON EVERY VISIT */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            max-width: 500px;
            background-color: var(--primary-black);
            color: var(--primary-white);
            padding: 24px;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            z-index: 1500;
            border-left: 4px solid var(--primary-yellow);
            transform: translateY(100px);
            opacity: 0;
            transition: transform 0.5s, opacity 0.5s;
        }

        .cookie-banner.show {
            transform: translateY(0);
            opacity: 1;
        }

        .cookie-banner p {
            font-size: 15px;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .cookie-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }

        .cookie-btn.accept {
            background-color: var(--primary-yellow);
            color: var(--primary-black);
        }

        .cookie-btn.accept:hover {
            background-color: var(--accent-yellow);
            transform: translateY(-2px);
        }

        .cookie-btn.decline {
            background-color: transparent;
            color: var(--primary-white);
            border: 1px solid var(--light-gray);
        }

        .cookie-btn.decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Responsive Design - Production Ready */
        @media (max-width: 1200px) {
            .hero-section {
                gap: 40px;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 800px;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero-section {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 80px 30px;
            }
            
            .hero-text {
                max-width: 100%;
            }
            
            .hero-actions {
                justify-content: center;
            }
            
            .hero-image {
                height: 400px;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .nav-links {
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .fixed-header {
                padding: 0 20px;
                height: 60px;
            }
            
            .main-content {
                margin-top: 60px;
            }
            
            /* Navigation for Mobile */
            .nav-container {
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: rgba(0, 0, 0, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 30px 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 999;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                border-top: 1px solid rgba(255, 215, 0, 0.2);
                height: calc(100vh - 60px);
                overflow-y: auto;
            }
            
            .nav-container.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-links {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }
            
            .nav-links li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .nav-links a {
                display: block;
                padding: 20px 0;
                font-size: 17px;
            }
            
            /* Mobile Header Actions - Download button always visible */
            .mobile-toggle {
                display: block;
            }
            
            /* Signup Icon for Mobile - Show on mobile */
            .btn-signup-mobile {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            /* On mobile: Show download button, hide full account button */
            .btn-playstore {
                display: flex !important;
                padding: 8px 12px;
                font-size: 13px;
            }
            
            .btn-playstore span {
                display: none;
            }
            
            .btn-account {
                display: none; /* Hide full button on mobile */
            }
            
            .hero-text h1 {
                font-size: 42px;
            }
            
            .hero-text p {
                font-size: 17px;
            }
            
            .hero-image {
                height: 350px;
            }
            
            .phone-mockup {
                width: 200px;
                height: 380px;
            }
            
            .features-section {
                padding: 80px 20px;
            }
            
            .section-title h2 {
                font-size: 36px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .cta-section {
                padding: 80px 20px;
            }
            
            .cta-content h2 {
                font-size: 36px;
            }
            
            .modal {
                max-height: 85vh;
            }
            
            .modal-body {
                padding: 25px;
            }
            
            .cookie-banner {
                left: 10px;
                right: 10px;
                max-width: none;
                bottom: 10px;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 60px 20px;
            }
            
            .hero-text h1 {
                font-size: 36px;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            
            .btn-trial, .btn-playstore-large {
                width: 100%;
                justify-content: center;
            }
            
            .cta-actions {
                flex-direction: column;
                align-items: stretch;
            }
            
            .footer {
                padding: 40px 20px 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            
            
            /* On very small screens, show icon only for download button */
            .btn-playstore {
                padding: 8px;
                min-width: 40px;
                justify-content: center;
            }
            
            .btn-playstore i {
                margin: 0;
                font-size: 18px;
            }
            
            /* Adjust spacing for mobile header */
            .header-actions {
                gap: 12px;
            }
        }

        /* Animation for toast */
        @keyframes slideIn {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes slideOut {
            from { transform: translateX(0); opacity: 1; }
            to { transform: translateX(100%); opacity: 0; }
        }
        
        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-yellow);
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-yellow);
        }
        
        /* Responsive Design */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .faq-header h2 {
    font-size: 36px !important;
  }
  
  .faq-header p {
    font-size: 18px !important;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0 !important;
  }
  
  .faq-container {
    padding: 0 20px !important;
  }
  
  .faq-header {
    margin-bottom: 40px !important;
  }
  
  .faq-header h2 {
    font-size: 32px !important;
  }
  
  .faq-question {
    padding: 20px 24px !important;
    font-size: 16px !important;
  }
  
  .faq-answer {
    padding: 0 24px !important;
  }
  
  .faq-cta {
    padding: 30px 20px !important;
  }
  
  .cta-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  
  .cta-buttons a {
    width: 100% !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .faq-header h2 {
    font-size: 28px !important;
  }
  
  .faq-question {
    padding: 18px 20px !important;
  }
  
  .faq-cta h3 {
    font-size: 20px !important;
  }
}








