        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
            background: #091527;
            color: #ffffff;
            line-height: 1.6;
        }

        /* Glowing Effect */
        .glow {
            color: #00FF6E;
            text-shadow: 0 0 10px rgba(0, 255, 110, 0.5);
        }

        .glow-box {
            border: 2px solid #00FF6E;
            box-shadow: 0 0 20px rgba(0, 255, 110, 0.3);
        }

        /* Hero Section - Fear Hook */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 30px 10px;
            background: 
                radial-gradient(ellipse at top, rgba(0, 255, 110, 0.1) 0%, transparent 50%),
                #091527;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(0, 255, 110, 0.03) 2px,
                    rgba(0, 255, 110, 0.03) 4px
                );
            pointer-events: none;
        }

        .hero-content {
            max-width: 900px;
            position: relative;
            z-index: 1;
        }

        .warning-badge {
            display: inline-block;
            background: rgba(255, 59, 48, 0.2);
            border: 2px solid #ff3b30;
            color: #ff3b30;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 30px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        .hero h1 .danger {
            color: #ff3b30;
        }

        .hero .subtitle {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #a0aec0;
            font-weight: 400;
        }

        .hero .fstatement {
            font-size: 1.6rem;
            color: #00FF6E;
            font-weight: 600;
            margin: 30px 0;
            line-height: 1.4;
        }

        .cta-primary {
            display: inline-block;
            background: #00FF6E;
            color: #091527;
            padding: 22px 60px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.3rem;
            transition: all 0.3s;
            box-shadow: 
                0 0 30px rgba(0, 255, 110, 0.4),
                0 10px 30px rgba(0, 0, 0, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 20px;
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 0 40px rgba(0, 255, 110, 0.6),
                0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .trust-line {
            margin-top: 25px;
            font-size: 1rem;
            color: #a0aec0;
        }

        /* Testimonials Section - NEW */
        .testimonials-section {
            padding: 80px 20px;
            background: rgba(0, 255, 110, 0.03);
            border-bottom: 1px solid rgba(0, 255, 110, 0.2);
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-header h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #00FF6E;
            margin-bottom: 15px;
        }

        .testimonials-header p {
            font-size: 1.2rem;
            color: #a0aec0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: rgba(0, 255, 110, 0.05);
            border: 2px solid rgba(0, 255, 110, 0.3);
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }

        .testimonial-card:hover {
            border-color: #00FF6E;
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0, 255, 110, 0.2);
        }

        .stars {
            font-size: 1.5rem;
            color: #FFD700;
            margin-bottom: 20px;
            letter-spacing: 3px;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #cbd5e0;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            font-size: 1rem;
            color: #00FF6E;
            font-weight: 700;
        }

        .testimonial-role {
            font-size: 0.9rem;
            color: #a0aec0;
            margin-top: 5px;
        }

        /* Video Demo Section - NEW */
        .video-demo-section {
            padding: 100px 20px;
            background: 
                radial-gradient(ellipse at center, rgba(0, 255, 110, 0.08) 0%, transparent 60%),
                #091527;
            border-bottom: 1px solid rgba(0, 255, 110, 0.2);
        }

        .video-demo-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .video-demo-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .video-demo-header h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .video-demo-header p {
            font-size: 1.4rem;
            color: #a0aec0;
        }

.video-demo-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 0 60px rgba(0, 255, 110, 0.3),
        0 20px 80px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(0, 255, 110, 0.4);
    background: #000;
    cursor: pointer;
    width: 100%; /* Full width on mobile */
    margin: 0 auto;
}

.video-demo-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Desktop only - centered with max-width */
@media (min-width: 769px) {
    .video-demo-wrapper {
        max-width: 800px; /* Limit width on desktop */
        aspect-ratio: 16 / 9; /* Maintain 16:9 on desktop */
    }
    
    .video-demo-wrapper video {
        height: 100%;
        object-fit: contain; /* Show full video without cropping */
    }
}

        .video-caption {
            padding: 25px 30px;
            background: rgba(0, 255, 110, 0.1);
            border-top: 2px solid rgba(0, 255, 110, 0.3);
            font-size: 1.1rem;
            color: #cbd5e0;
            line-height: 1.6;
        }

        .demo-badge {
            display: inline-block;
            background: #00FF6E;
            color: #091527;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            margin-right: 10px;
            vertical-align: middle;
        }

        /* Play button overlay */
        .play-button-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(0, 255, 110, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 0 30px rgba(0, 255, 110, 0.6);
        }

        .play-button-overlay:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background: #00FF6E;
        }

        .play-button-overlay::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 25px solid #091527;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            margin-left: 5px;
        }

        .video-demo-wrapper.playing .play-button-overlay {
            display: none;
        }

        /* Stats Bar - Social Proof */
        .stats-bar {
            background: rgba(0, 255, 110, 0.05);
            border-top: 1px solid rgba(0, 255, 110, 0.2);
            border-bottom: 1px solid rgba(0, 255, 110, 0.2);
            padding: 30px 10px;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #00FF6E;
            margin-bottom: 10px;
            text-shadow: 0 0 20px rgba(0, 255, 110, 0.3);
        }

        .stat-label {
            font-size: 1.1rem;
            color: #a0aec0;
            font-weight: 500;
        }

        /* The Threat Section */
        .threat-section {
            padding: 100px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-header p {
            font-size: 1.3rem;
            color: #a0aec0;
            max-width: 800px;
            margin: 0 auto;
        }

        .threat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .threat-card {
            background: rgba(255, 59, 48, 0.05);
            border: 2px solid rgba(255, 59, 48, 0.3);
            border-radius: 12px;
            padding: 40px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .threat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: #ff3b30;
        }

        .threat-card:hover {
            border-color: #ff3b30;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 59, 48, 0.2);
        }

        .threat-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .threat-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #ff3b30;
            font-weight: 700;
        }

        .threat-card p {
            font-size: 1.1rem;
            color: #cbd5e0;
            line-height: 1.7;
        }

        .threat-stat {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 59, 48, 0.3);
            font-size: 1rem;
            color: #00FF6E;
            font-weight: 600;
        }

        /* Reality Check Section */
        .reality-section {
            padding: 100px 20px;
            background: rgba(0, 255, 110, 0.03);
            border-top: 1px solid rgba(0, 255, 110, 0.2);
            border-bottom: 1px solid rgba(0, 255, 110, 0.2);
        }

        .reality-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .reality-box {
            background: rgba(255, 59, 48, 0.1);
            border: 3px solid #ff3b30;
            border-radius: 16px;
            padding: 60px;
            text-align: center;
            box-shadow: 0 0 40px rgba(255, 59, 48, 0.2);
        }

        .reality-box h2 {
            font-size: 2.5rem;
            color: #ff3b30;
            margin-bottom: 30px;
            font-weight: 900;
            text-transform: uppercase;
        }

        .reality-list {
            text-align: left;
            margin: 40px 0;
        }

        .reality-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }

        .reality-item::before {
            content: '⚠️';
            font-size: 1.5rem;
            margin-right: 15px;
            flex-shrink: 0;
        }

        /* Solution Section */
        .solution-section {
            padding: 100px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .solution-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .solution-header h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 20px;
            color: #00FF6E;
        }

        .solution-header p {
            font-size: 1.4rem;
            color: #a0aec0;
        }

        .how-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .how-card {
            background: rgba(0, 255, 110, 0.05);
            border: 2px solid rgba(0, 255, 110, 0.3);
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s;
        }

        .how-card:hover {
            border-color: #00FF6E;
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0, 255, 110, 0.2);
        }

        .step-number {
            display: inline-block;
            width: 70px;
            height: 70px;
            background: #00FF6E;
            color: #091527;
            border-radius: 50%;
            font-size: 2rem;
            font-weight: 900;
            line-height: 70px;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(0, 255, 110, 0.4);
        }

        .how-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #00FF6E;
            font-weight: 700;
        }

        .how-card p {
            font-size: 1.1rem;
            color: #cbd5e0;
            line-height: 1.6;
        }

        /* Urgency Section */
        .urgency-section {
            padding: 100px 20px;
            background: 
                radial-gradient(ellipse at center, rgba(255, 59, 48, 0.2) 0%, transparent 70%),
                #091527;
        }

        .urgency-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .urgency-container h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 30px;
            color: #ff3b30;
            line-height: 1.2;
        }

        .urgency-container p {
            font-size: 1.5rem;
            color: #cbd5e0;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* Final CTA Section */
        .final-cta {
            padding: 120px 20px;
            background: 
                linear-gradient(135deg, rgba(0, 255, 110, 0.1) 0%, rgba(0, 255, 110, 0.05) 100%),
                #091527;
            text-align: center;
            border-top: 2px solid rgba(0, 255, 110, 0.3);
        }

        .final-cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .final-cta .subtitle {
            font-size: 1.5rem;
            color: #a0aec0;
            margin-bottom: 40px;
        }

    

        .guarantee-box p {
            font-size: 1.1rem;
            color: #cbd5e0;
            margin: 10px 0;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero .fstatement {
                font-size: 1.2rem;
            }

            .section-header h2,
            .solution-header h2,
            .urgency-container h2,
            .final-cta h2,
            .video-demo-header h2 {
                font-size: 2rem;
            }

            .testimonials-grid,
            .threat-grid,
            .how-grid {
                grid-template-columns: 1fr;
            }

            .reality-box {
                padding: 40px 30px;
            }

            .cta-primary {
                padding: 18px 40px;
                font-size: 1.1rem;
            }

            .video-demo-section {
                padding: 60px 15px;
            }

            .video-caption {
                padding: 20px;
                font-size: 1rem;
            }

            .demo-badge {
                display: block;
                margin-bottom: 10px;
            }

            .play-button-overlay {
                width: 60px;
                height: 60px;
            }

            .play-button-overlay::after {
                border-left: 18px solid #091527;
                border-top: 11px solid transparent;
                border-bottom: 11px solid transparent;
            }
        }
