
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --primary-dark: #0A1E2F;
            --primary: #1B3A4B;
            --accent: #00A86B;
            --accent-light: #E8F5E9;
            --accent-dark: #008554;
            --gold: #FFD700;
            --gray-50: #F8FAFC;
            --gray-100: #F1F5F9;
            --gray-200: #E2E8F0;
            --gray-600: #475569;
            --gray-700: #334155;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--gray-50);
            color: var(--primary-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .navbar {
            background: white;
            border-bottom: 1px solid var(--gray-200);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.98);
        }

        .navbar-content {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--accent) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--gray-600);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
            font-size: 15px;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .btn-nav {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white !important;
            padding: 0.75rem 2rem;
            border-radius: 48px;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0, 168, 107, 0.2);
        }

        .btn-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 168, 107, 0.3);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent-dark) 100%);
            color: white;
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(0, 255, 160, 0.08) 0%, transparent 50%);
            opacity: 0.6;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.5rem;
            border-radius: 100px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-badge i {
            color: #00FFA0;
            margin-right: 8px;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero h1 span {
            color: #00FFA0;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin: 3rem 0 2rem;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat .number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #00FFA0;
        }

        .hero-stat .label {
            font-size: 1rem;
            opacity: 0.8;
        }

        .btn-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: white;
            color: var(--primary-dark);
            padding: 1rem 2.5rem;
            border-radius: 48px;
            font-weight: 700;
            font-size: 1.125rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border-radius: 48px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            border-color: white;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Section Styles */
        .section {
            padding: 5rem 2rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.125rem;
            color: var(--gray-600);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* How It Works */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .step-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-200);
            transition: all 0.3s;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent);
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }

        .step-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .step-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--primary-dark);
        }

        .step-card p {
            color: var(--gray-600);
            font-size: 0.9375rem;
        }

        /* Benefits */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .benefit-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-200);
        }

        .benefit-icon {
            width: 56px;
            height: 56px;
            background: var(--accent-light);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .benefit-icon i {
            font-size: 1.75rem;
            color: var(--accent);
        }

        .benefit-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--primary-dark);
        }

        .benefit-card p {
            color: var(--gray-600);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
            color: white;
            padding: 5rem 2rem;
            text-align: center;
        }

        .cta-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .cta-title span {
            color: #00FFA0;
        }

        .cta-text {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-200);
        }

        .testimonial-quote {
            font-size: 1.125rem;
            color: var(--gray-700);
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            background: var(--accent-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-weight: 700;
            font-size: 1.25rem;
        }

        .author-info h4 {
            font-size: 1rem;
            color: var(--primary-dark);
        }

        .author-info p {
            font-size: 0.875rem;
            color: var(--gray-600);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 2rem;
            color: var(--gray-600);
            font-size: 0.875rem;
            border-top: 1px solid var(--gray-200);
            background: white;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--gray-600);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .steps-grid { grid-template-columns: repeat(2, 1fr); }
            .benefits-grid { grid-template-columns: repeat(2, 1fr); }
            .testimonials-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero-stats { flex-direction: column; gap: 1.5rem; }
            .nav-links { display: none; }
            .section { padding: 3rem 1.5rem; }
            .section-title { font-size: 2rem; }
            .steps-grid { grid-template-columns: 1fr; }
            .benefits-grid { grid-template-columns: 1fr; }
            .cta-buttons { flex-direction: column; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
        }

        /* Dark Mode */
        @media (prefers-color-scheme: dark) {
            :root {
                --primary-dark: #E2E8F0;
                --primary: #94A3B8;
                --gray-50: #1E293B;
                --gray-100: #1E293B;
                --gray-200: #334155;
                --gray-600: #94A3B8;
                --gray-700: #CBD5E1;
            }

            body { background: #0F172A; }

            .navbar, .step-card, .benefit-card, .testimonial-card, footer {
                background: #1E293B;
                border-color: #334155;
            }

            .navbar { background: rgba(30, 41, 59, 0.98); }
        }
        
        /* Mobile Responsive for Sponsored Ad Preview */
@media (max-width: 768px) {
    /* Browser mockup adjustments */
    .section div[style*="max-width: 750px"] {
        max-width: 100% !important;
        padding: 0 8px !important;
    }
    
    /* Browser bar */
    div[style*="background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%)"] {
        padding: 10px 12px !important;
        border-radius: 12px 12px 0 0 !important;
    }
    
    div[style*="background: rgba(255,255,255,0.1)"] {
        padding: 4px 12px !important;
        font-size: 11px !important;
    }
    
    /* Search bar */
    div[style*="background: white; border-radius: 48px"] {
        padding: 0.125rem 0.125rem 0.125rem 1rem !important;
    }
    
    div[style*="background: white; border-radius: 48px"] input {
        font-size: 13px !important;
        padding: 0.5rem 0 !important;
    }
    
    div[style*="background: white; border-radius: 48px"] button {
        padding: 0.5rem 1rem !important;
        font-size: 12px !important;
    }
    
    /* Filter tabs */
    div[style*="display: flex; gap: 8px; border-bottom"] {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        white-space: nowrap !important;
        padding-bottom: 4px !important;
    }
    
    div[style*="display: flex; gap: 8px; border-bottom"] span {
        font-size: 13px !important;
        padding: 6px 12px !important;
    }
    
    /* Results container */
    div[style*="background: var(--gray-50); padding: 20px"] {
        padding: 16px 12px !important;
    }
    
    /* Sponsored Card - Mobile Optimized */
    div[style*="border: 2.5px solid var(--gold)"] {
        padding: 1.25rem !important;
        border-radius: 16px !important;
        margin-bottom: 16px !important;
    }
    
    /* Sponsored badge */
    div[style*="position: absolute; top: 16px; right: 20px"] {
        top: 12px !important;
        right: 12px !important;
    }
    
    div[style*="background: linear-gradient(135deg, var(--gold), #FFA500)"] {
        padding: 4px 10px !important;
        font-size: 10px !important;
    }
    
    div[style*="background: linear-gradient(135deg, var(--gold), #FFA500)"] i {
        display: none !important;
    }
    
    /* Card header badges - wrap on mobile */
    div[style*="display: flex; align-items: center; gap: 10px; margin-bottom: 16px"] {
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin-bottom: 12px !important;
        margin-top: 28px !important;
    }
    
    div[style*="display: flex; align-items: center; gap: 10px; margin-bottom: 16px"] span:first-child {
        padding: 4px 10px !important;
        font-size: 10px !important;
    }
    
    div[style*="display: flex; align-items: center; gap: 10px; margin-bottom: 16px"] span:nth-child(2) {
        padding: 4px 10px !important;
        font-size: 10px !important;
    }
    
    div[style*="margin-left: auto"] {
        margin-left: 0 !important;
        width: 100% !important;
        justify-content: flex-start !important;
        margin-top: 4px !important;
    }
    
    /* Store info */
    div[style*="display: flex; align-items: center; gap: 14px; margin-bottom: 16px"] {
        gap: 10px !important;
        margin-bottom: 12px !important;
        padding-bottom: 10px !important;
    }
    
    div[style*="width: 52px; height: 52px"] {
        width: 44px !important;
        height: 44px !important;
    }
    
    div[style*="width: 52px; height: 52px"] span {
        font-size: 18px !important;
    }
    
    div[style*="font-weight: 800; font-size: 18px"] {
        font-size: 16px !important;
        flex-wrap: wrap !important;
        gap: 4px !important;
    }
    
    /* Star rating - hide on very small */
    div[style*="display: flex; align-items: center; gap: 12px; margin-top: 4px"] {
        flex-wrap: wrap !important;
        gap: 6px !important;
    }
    
    /* Title */
    div[style*="font-size: 20px; font-weight: 800"] {
        font-size: 16px !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        margin-bottom: 8px !important;
    }
    
    div[style*="font-size: 20px; font-weight: 800"] span {
        font-size: 9px !important;
        padding: 2px 8px !important;
    }
    
    /* Description */
    div[style*="color: var(--gray-600); font-size: 14px; line-height: 1.6"] {
        font-size: 13px !important;
        margin-bottom: 12px !important;
    }
    
    /* Offer details - stack on mobile */
    div[style*="display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 18px"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        margin-bottom: 14px !important;
    }
    
    div[style*="background: linear-gradient(135deg, #FFF8E7, #FFFDF5)"] {
        width: 100% !important;
        justify-content: center !important;
        padding: 10px 16px !important;
    }
    
    div[style*="background: linear-gradient(135deg, #FF6B6B, #FF8E53)"] {
        width: 100% !important;
        justify-content: center !important;
        padding: 8px 16px !important;
    }
    
    div[style*="margin-left: auto"] {
        margin-left: 0 !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Social proof stats */
    div[style*="display: flex; align-items: center; gap: 16px; margin-bottom: 18px"] {
        flex-wrap: wrap !important;
        gap: 8px !important;
        margin-bottom: 14px !important;
    }
    
    div[style*="display: flex; align-items: center; gap: 16px; margin-bottom: 18px"] span {
        font-size: 12px !important;
    }
    
    /* Action buttons - stack on mobile */
    div[style*="display: flex; align-items: center; gap: 12px; padding-top: 14px"] {
        flex-direction: column !important;
        gap: 10px !important;
        padding-top: 12px !important;
    }
    
    div[style*="display: flex; align-items: center; gap: 12px; padding-top: 14px"] button,
    div[style*="display: flex; align-items: center; gap: 12px; padding-top: 14px"] a {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 20px !important;
    }
    
    /* Trust badge */
    div[style*="margin-top: 12px; text-align: center"] span {
        font-size: 11px !important;
        padding: 4px 12px !important;
    }
    
    /* Organic result */
    div[style*="background: white; border-radius: 16px; padding: 1.25rem; opacity: 0.75"] {
        padding: 1rem !important;
    }
    
    /* Legend */
    div[style*="display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 24px"] {
        gap: 20px !important;
        padding: 12px !important;
        flex-wrap: wrap !important;
    }
    
    /* Section title */
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
        padding: 0 12px !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    /* Hide browser bar URL text on very small */
    div[style*="background: rgba(255,255,255,0.1)"] {
        max-width: 200px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    
    /* Smaller sponsored badge */
    div[style*="position: absolute; top: 16px; right: 20px"] {
        top: 10px !important;
        right: 10px !important;
    }
    
    /* Hide star rating on very small */
    div[style*="display: flex; align-items: center; gap: 12px; margin-top: 4px"] span:last-child {
        display: none !important;
    }
    
    /* Smaller stats */
    div[style*="display: flex; align-items: center; gap: 16px; margin-bottom: 18px"] {
        justify-content: space-between !important;
    }
    
    div[style*="display: flex; align-items: center; gap: 16px; margin-bottom: 18px"] span:nth-child(2) {
        display: none !important;
    }
    
    /* Legend stacked */
    div[style*="display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 24px"] div {
        width: 100% !important;
        justify-content: center !important;
    }
    
    div[style*="width: 1px; height: 30px"] {
        display: none !important;
    }
}

/* Fix for iOS zoom */
@media (max-width: 768px) {
    input, button, select, textarea {
        font-size: 16px !important;
    }
}
   