@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
    
:root {
    --electric-violet: #0ea5e9;
    --deep-purple: #0284c7;
    --cyber-pink: #0ea5e9;
    --neon-green: #0ea5e9;
    --midnight: #0F172A;
    --slate: #1E293B;
    --ghost-white: #F8FAFC;
    --warning-red: #EF4444;
    
    --glow-purple: 0 4px 16px rgba(14, 165, 233, 0.15);
    --glow-intense: 0 8px 24px rgba(14, 165, 233, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #1e293b;
    overflow-x: hidden;
    line-height: 1.6;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e2e8f0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-links a:hover {
    color: #0ea5e9;
}

.nav-cta {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    color: white !important;
    box-shadow: var(--glow-purple);
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-intense);
}

/* HERO SECTION */
.hero {
    padding: 180px 40px 120px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.2);
    border: 1px solid var(--electric-violet);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--electric-violet);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #0f172a;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 22px;
    color: #475569;
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 400;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

.btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.6);
}

.btn-secondary {
    background: #ffffff;
    color: #0284c7;
    border: 1.5px solid #0ea5e9;
}

.btn-secondary:hover {
    border-color: var(--electric-violet);
    background: rgba(14, 165, 233, 0.1);
}

/* ANIMATED EXAMPLE */
.example-container {
    perspective: 1500px;
    margin-top: 60px;
}

.example {
    background: linear-gradient(135deg, var(--deep-purple), var(--cyber-pink));
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), var(--glow-intense);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateX(5deg); }
}

.login-demo {
    background: linear-gradient(135deg, #4a2c6e 0%, #6b4593 35%, #8e6bb8 50%, #7ba5c9 75%, #87c5d6 100%);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    margin: 0 auto;
}

.demo-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #1e293b;
    font-size: 15px;
    transition: all 0.3s;
}

.input-group input::placeholder {
    color: #475569;
}

.input-group input:focus {
    outline: none;
    border-color: var(--electric-violet);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

.demo-btn {
    width: 100%;
    padding: 18px;
    background: white;
    color: var(--deep-purple);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* PROBLEM SECTION */
.problem-section {
    padding: 120px 40px;
    background: #f1f5f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #475569;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--warning-red), var(--cyber-pink));
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: #fca5a5;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--warning-red);
}

.problem-icon svg {
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.problem-card p {
    color: #334155;
    line-height: 1.7;
    font-size: 15px;
}

/* SOLUTION SECTION */
.solution-hero {
    background: linear-gradient(135deg, var(--electric-violet), var(--deep-purple));
    padding: 80px 40px;
    text-align: center;
    border-radius: 30px;
    margin: 0 40px;
    box-shadow: var(--glow-intense);
}

.solution-hero h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.solution-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* BRAND AMPLIFIER SECTION */
.brand-amplifier-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.brand-amplifier-card {
    background: #ffffff; 
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); 
    border-radius: 24px; 
    padding: 50px;
}

.brand-amplifier-icon-wrapper {
    width: 60px; 
    height: 60px; 
    background: linear-gradient(135deg, var(--electric-violet), var(--cyber-pink)); 
    border-radius: 16px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 25px; 
    box-shadow: var(--glow-purple);
}

.brand-amplifier-card h3 {
    font-size: 26px; 
    font-weight: 700; 
    margin-bottom: 15px;
}

.brand-amplifier-card p {
    color: #334155; 
    line-height: 1.8; 
    font-size: 16px;
}


/* FEATURES SECTION */
.features-section {
    padding: 120px 40px;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 50px;
    transition: all 0.4s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(14, 165, 233, 0.3);
    border-color: var(--electric-violet);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--electric-violet), var(--cyber-pink));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--glow-purple);
}

.feature-card h3 {
    font-size: 26px;
    font-weight: 700;
}

.feature-card p {
    color: #334155;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 16px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '\2713';
    color: var(--neon-green);
    font-weight: 700;
    font-size: 18px;
}

.pro-badge {
    background: linear-gradient(135deg, var(--cyber-pink), var(--warning-red));
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 120px 40px;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.testimonial:hover {
    border-color: #0ea5e9;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.quote {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 25px;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--electric-violet), var(--cyber-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 13px;
    color: #64748b;
}

/* FOOTER */
footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 80px 40px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--electric-violet), var(--cyber-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.footer-brand p {
    margin-top: 20px;
    color: #475569;
    line-height: 1.8;
    font-size: 15px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--electric-violet);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 14px;
}

/* --- MOBILE MENU COMPONENTS --- */
.menu-toggle {
    display: none; /* Hidden by default (desktop) */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    width: 30px;
    height: 30px;
    color: #475569;
    transition: color 0.3s;
}
.menu-toggle:hover {
    color: #0ea5e9;
}
.menu-toggle svg {
    display: block;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s;
}
.menu-toggle .close {
    display: none; /* Hide close icon by default */
}
.menu-toggle.active .hamburger {
    display: none;
}
.menu-toggle.active .close {
    display: block;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8fafc;
    z-index: 999;
    /* Transition for slide-in effect */
    transform: translateX(100%); 
    transition: transform 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-overlay.open {
    transform: translateX(0); /* Slide in */
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Reduced gap */
    text-align: center;
    padding: 40px 20px;
}
.mobile-nav-links .mobile-link {
    /* UPDATED: Reduced font size for mobile links */
    font-size: 20px; 
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    /* Removed padding around links to clear space */
    padding: 0; 
}
.mobile-nav-links .mobile-link:hover {
    color: var(--electric-violet);
}
.mobile-cta {
    /* UPDATED: Matches desktop .nav-cta styles */
    background: linear-gradient(135deg, var(--electric-violet), var(--cyber-pink));
    padding: 12px 28px !important;
    border-radius: 50px;
    font-size: 16px; /* Matches desktop font size */
    font-weight: 600;
    margin-top: 30px; /* Added some spacing above the button */
    display: inline-block;
    color: white !important;
    box-shadow: var(--glow-purple); /* Matches desktop glow */
    transition: all 0.3s;
}
/* Add hover effect to match desktop CTA */
.mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-intense);
}


/* === RESPONSIVE STYLES === */

/* TABLET/SMALL DESKTOP ADJUSTMENTS */
@media (max-width: 1024px) {
    h1 { font-size: 56px; }
    .section-title { font-size: 42px; }
    
    /* All multi-column grids collapse to a single column */
    .problem-grid, 
    .features-grid, 
    .testimonials-grid,
    .brand-amplifier-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .solution-hero {
        margin: 0 20px;
    }
    .solution-hero h2 {
        font-size: 40px;
    }
}

/* MOBILE ADJUSTMENTS (CRITICAL FIXES FOR VIEWPORT) */
@media (max-width: 768px) {
    /* TYPOGRAPHY & LAYOUT */
    h1 { font-size: 42px; }
    .hero { padding: 140px 20px 60px; }
    .hero-subtitle { font-size: 18px; }
    .cta-group { flex-direction: column; }
    .example { padding: 30px; }
    .login-demo { padding: 20px 5px 20px 5px; }
    .section-title { font-size: 36px; }
    .solution-hero { padding: 50px 20px; }

    /* NAVIGATION FIX: Show menu button, hide desktop menu */
    .nav-container {
        padding: 15px 20px;
    }
    .nav-links {
        display: none; /* Hide desktop links */
    }
    .menu-toggle {
        display: block; /* Show hamburger button */
    }
    
    /* UNIFY SECTION PADDING */
    .problem-section, 
    .features-section, 
    .testimonials-section, 
    footer, 
    section:nth-of-type(3) {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* FOOTER COLLAPSE */
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* EXTRA SMALL MOBILE ADJUSTMENTS */
@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    /* Default container padding is now 20px on the sides from 768px block */
    .problem-card, .feature-card, .testimonial, .brand-amplifier-card {
        padding: 30px; /* Reduces card padding for small screens */
    }
}



        .logo {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

       
        .story-section {
            padding: 120px 40px;
            background: #f1f5f9;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
        }

        .story-content {
            font-size: 19px;
            line-height: 1.9;
            color: #334155;
        }

        .story-content p {
            margin-bottom: 30px;
        }

        .story-content strong {
            color: #0f172a;
            font-weight: 700;
        }

        .values-section {
            padding: 120px 40px;
            background: #f8fafc;
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 80px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .value-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            padding: 40px;
            transition: all 0.4s;
        }

        .value-card:hover {
            transform: translateY(-10px);
            border-color: var(--electric-violet);
            box-shadow: 0 30px 60px rgba(14, 165, 233, 0.3);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--electric-violet), var(--cyber-pink));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            box-shadow: var(--glow-purple);
        }

        .value-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #1e293b;
        }

        .value-card p {
            color: #334155;
            line-height: 1.7;
        }

        .team-section {
            padding: 120px 40px;
            background: #f1f5f9;
        }

        .stats-section {
            padding: 120px 40px;
            background: #f8fafc;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            max-width: 1200px;
            margin: 60px auto 0;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 56px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--electric-violet), var(--cyber-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            color: #475569;
            font-weight: 500;
        }
   
        .commission-highlight {
            display: inline-block;
            background: linear-gradient(135deg, var(--neon-green), #059669);
            padding: clamp(8px, 2vw, 12px) clamp(20px, 4vw, 30px);
            border-radius: 50px;
            font-size: clamp(18px, 3vw, 24px);
            font-weight: 800;
            margin-bottom: 40px;
            box-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, #0ea5e9, #0284c7);
            color: #ffffff;
            box-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(14, 165, 233, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: #0284c7;
            border: 2px solid #0ea5e9;
        }

        .btn-secondary:hover {
            border-color: var(--electric-violet);
            background: rgba(14, 165, 233, 0.1);
        }

        .stats-section {
            padding: 80px 40px;
            background: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            padding: 40px;
        }

        .stat-number {
            font-size: clamp(40px, 6vw, 56px);
            font-weight: 900;
            background: linear-gradient(135deg, var(--electric-violet), var(--cyber-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: clamp(14px, 2vw, 16px);
            color: #475569;
        }

        .benefits-section {
            padding: 120px 40px;
            background: #f8fafc;
        }

        .section-title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            text-align: center;
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            font-size: clamp(16px, 2.5vw, 20px);
            color: #64748b;
            margin-bottom: 60px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            padding: clamp(30px, 5vw, 40px);
            transition: all 0.4s;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: var(--electric-violet);
            box-shadow: 0 30px 60px rgba(14, 165, 233, 0.3);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--electric-violet), var(--cyber-pink));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: var(--glow-purple);
        }

        .benefit-card h3 {
            font-size: clamp(18px, 3vw, 22px);
            margin-bottom: 15px;
            color: #1e293b;
        }

        .benefit-card p {
            color: #334155;
            line-height: 1.7;
            font-size: clamp(14px, 2vw, 15px);
        }

        .how-it-works {
            padding: 120px 40px;
            background: #f1f5f9;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .step-card {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--electric-violet), var(--cyber-pink));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: 900;
            margin: 0 auto 25px;
            box-shadow: var(--glow-purple);
        }

        .step-card h3 {
            font-size: clamp(20px, 3vw, 24px);
            margin-bottom: 15px;
        }

        .step-card p {
            color: #334155;
            line-height: 1.7;
            font-size: clamp(14px, 2vw, 16px);
        }

        .cta-section {
            padding: 120px 40px;
            background: #f8fafc;
            text-align: center;
        }

        .cta-box {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--electric-violet), var(--cyber-pink));
            padding: clamp(40px, 8vw, 80px) clamp(30px, 6vw, 60px);
            border-radius: 30px;
            box-shadow: var(--glow-intense);
        }

        .cta-box h2 {
            font-size: clamp(28px, 5vw, 42px);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-box p {
            font-size: clamp(16px, 2.5vw, 20px);
            margin-bottom: 40px;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .hero {
                padding: 140px 20px 60px;
            }
            
            .nav-container {
                padding: 15px 20px;
            }
            
            .nav-links {
                gap: 20px;
            }
            
            .nav-links a {
                font-size: 13px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            
            .btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 20px;
            }
        }

        @media (max-width: 1024px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 42px;
            }
            .hero {
                padding: 140px 20px 80px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        

/* === Section overrides removed - all sections now light === */




