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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
            padding-top: 80px;
        }

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

        /* Header / Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 20px 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        header.scrolled {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 0, 0, 0.2);
            padding: 15px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        }

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

        .logo {
            font-size: 28px;
            font-weight: 900;
            background: linear-gradient(135deg, #fff 0%, #ff0000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

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

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

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

        .nav-cta {
            background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
            padding: 10px 24px;
            border-radius: 8px;
            color: #fff !important;
            font-weight: 600;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(255, 0, 0, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 80px 30px 30px;
            transition: right 0.3s ease;
            z-index: 999;
            border-left: 1px solid rgba(255, 0, 0, 0.3);
        }

        .mobile-menu.active {
            display: block;
            right: 0;
        }

        .mobile-menu a {
            display: block;
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: #ff0000;
        }

        .mobile-menu .nav-cta {
            display: block;
            text-align: center;
            margin-top: 20px;
            padding: 15px;
            border-radius: 8px;
            border-bottom: none;
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .mobile-overlay.active {
            display: block;
            opacity: 1;
            pointer-events: auto;
        }

        /* Grid and Swiper styles */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        @media (max-width: 768px) {
            .video-grid {
                display: block; /* Reset grid for mobile */
            }

            .swiper {
                width: 100%;
                padding: 20px 0;
            }

            .swiper-slide {
                width: 85%;
            }

            .swiper-pagination {
                position: relative;
                margin-top: 20px;
            }

            .swiper-pagination-bullet {
                background: rgba(255, 255, 255, 0.5);
                opacity: 0.5;
            }

            .swiper-pagination-bullet-active {
                background: #ff0000;
                opacity: 1;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }

            .mobile-menu {
                display: block;
            }

            /* Grid to Swiper conversion */
            .video-grid,
            .proof-grid,
            .testimonials-grid {
                display: none;
            }

            .swiper {
                display: block;
            }

            .video-card,
            .proof-card,
            .testimonial-card {
                margin: 0;
                height: 100%;
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #000 0%, #1a0000 100%);
            padding: 80px 20px 120px;
            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 50% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite;
        }

        /* Animated Background Stats */
        .hero-bg-stats {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.25;
            pointer-events: none;
        }

        .stat-item {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid rgba(0, 255, 0, 0.2);
            animation: floatUp 10s linear infinite;
            bottom: 0;
            opacity: 0;
            will-change: transform, opacity;
        }

        .stat-icon {
            font-size: 18px;
        }

        .stat-value {
            color: #00ff00;
            font-weight: 700;
        }


        

        @keyframes floatUp {
            0% {
                transform: translateY(0) translateX(0) scale(0.8);
                opacity: 0;
            }
            5% {
                opacity: 0.7;
            }
            95% {
                opacity: 0.7;
            }
            100% {
                transform: translateY(-120vh) translateX(10px) scale(0.95);
                opacity: 0;
            }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }


        .hero-content {
            position: relative;
            z-index: 2;
        }

        .badge {
            display: inline-block;
            background: rgba(255, 0, 0, 0.2);
            color: #ff0000;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 0, 0, 0.3);
        }

        h1 {
            font-size: clamp(32px, 6vw, 64px);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fff 0%, #ff0000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: clamp(18px, 3vw, 24px);
            color: #ccc;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-primary {
            display: inline-block;
            background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
            color: #fff;
            padding: 20px 48px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3);
            border: none;
            cursor: pointer;
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 48px rgba(255, 0, 0, 0.5);
        }

        .social-proof-mini {
            margin-top: 40px;
            font-size: 14px;
            color: #888;
        }

        .social-proof-mini strong {
            color: #ff0000;
            font-size: 24px;
            display: block;
            margin-bottom: 5px;
        }

        /* Video Examples Section */
        .video-examples {
            padding: 40px 20px;
            background: #0a0a0a;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

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

        .section-subtitle {
            font-size: 18px;
            color: #999;
        }

        /* Content wrapper and grid styles */
        .content-wrapper {
            margin: 40px 0;
        }

        .video-grid,
        .proof-grid,
        .testimonials-grid {
            display: grid;
            gap: 30px;
        }

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

        .video-card {
            background: #1a1a1a;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #222;
            transition: all 0.3s ease;
        }

        /* Swiper modifications for desktop */
        @media (min-width: 769px) {
            .content-wrapper {
                padding: 0;
            }

            .swiper-pagination {
                display: none;
            }

            .swiper-wrapper {
                transform: none !important;
                display: grid;
            }

            .swiper-slide {
                width: 100% !important;
                margin-right: 0 !important;
            }
        }

        .video-card:hover {
            transform: translateY(-8px);
            border-color: #ff0000;
            box-shadow: 0 16px 48px rgba(255, 0, 0, 0.2);
        }

        .video-thumbnail {
            width: 100%;
            aspect-ratio: 16/9;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .video-thumbnail iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-info {
            padding: 20px;
        }

        .video-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .video-stats {
            font-size: 14px;
            color: #888;
        }

        /* Revenue Proof Section */
        .revenue-proof {
            padding: 40px 20px;
            background: linear-gradient(135deg, #1a0000 0%, #000 100%);
        }

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

        .proof-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid rgba(0, 255, 0, 0.2);
            text-align: center;
        }

        .proof-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            border: 3px solid #ff0000;
            overflow: hidden;
        }

        .proof-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .proof-amount {
            font-size: 42px;
            font-weight: 900;
            color: #00ff00;
            margin-bottom: 10px;
        }

        .proof-label {
            font-size: 16px;
            color: #ccc;
            margin-bottom: 8px;
        }

        .proof-channel {
            font-size: 14px;
            color: #888;
            margin-bottom: 8px;
        }

        .proof-views {
            font-size: 14px;
            color: #00ff00;
            font-weight: 600;
            margin-bottom: 16px;
        }

        /* Features Section */
        .features {
            padding: 40px 20px;
            background: #000;
        }

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

        .feature-card {
            text-align: center;
            padding: 40px 30px;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            border-radius: 20px;
            border: 1px solid #222;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            border-color: #ff0000;
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .feature-description {
            font-size: 16px;
            color: #999;
            line-height: 1.6;
        }

        /* How It Works */
        .how-it-works {
            padding: 40px 20px;
            background: #0a0a0a;
        }

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

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

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 900;
            margin: 0 auto 24px;
            box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
        }

        .step-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .step-description {
            font-size: 16px;
            color: #999;
        }

        /* Pricing Section */
        .pricing {
            padding: 80px 20px;
            background: linear-gradient(135deg, #000 0%, #1a0000 100%);
        }

        /* Steps Demo (new) */
        .steps-demo {
            padding: 60px 20px;
            background: linear-gradient(135deg, #081008 0%, #001100 100%);
            color: #e6ffe6;
        }

        .steps-demo .section-title {
            color: #baffbf;
            margin-bottom: 8px;
        }

        .steps-demo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            align-items: start;
            margin-top: 28px;
        }

        .step-mockup {
            background: rgba(0, 0, 0, 0.35);
            border-radius: 16px;
            padding: 18px;
            border: 1px solid rgba(0, 255, 0, 0.08);
            text-align: center;
            transition: transform 0.28s ease, box-shadow 0.28s ease;
        }

        .step-mockup:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 255, 0, 0.08);
            border-color: rgba(0, 255, 0, 0.16);
        }

        .mockup-image {
            width: 100%;
            aspect-ratio: 9/16;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 12px;
            background: #000;
            margin-bottom: 12px;
        }

        .mockup-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .mockup-caption {
            font-size: 15px;
            color: #dfffe0;
            line-height: 1.4;
            margin-top: 6px;
        }

        .steps-demo-cta {
            text-align: center;
            margin-top: 28px;
        }

        @media (max-width: 900px) {
            .steps-demo-grid { grid-template-columns: 1fr; }
            .mockup-image { aspect-ratio: 16/9; }
        }

        /* Ratings and Testimonials */
        .ratings { padding: 60px 20px; background: linear-gradient(135deg,#001400 0%, #001a00 100%); color: #eaffea; }
        .ratings-inner { display: grid; grid-template-columns: 360px 1fr; gap: 28px; align-items: center; margin-top: 28px; }
        .rating-card { background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(0,0,0,0.25)); padding: 28px; border-radius: 16px; text-align: center; border: 1px solid rgba(0,255,0,0.12); }
        .rating-number { font-size: 48px; font-weight: 900; color: #00ff00; }
        .rating-small { font-size: 16px; color: #bfffbf; margin-left:6px; }
        .rating-meta { color: #bfeec0; margin-top:8px; font-size:14px; }
        .rating-cta { margin-top:14px; }

        .rating-breakdown { background: transparent; padding: 18px 12px; border-radius: 12px; }
        .break-row { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
        .break-label { width:160px; color:#cdeccf; font-weight:600; }
        .break-bar { flex:1; height:12px; background:rgba(255,255,255,0.06); border-radius:12px; overflow:hidden; }
        .bar-fill { height:100%; background:linear-gradient(90deg,#00ff00,#00cc66); border-radius:12px; }

        .testimonials { padding: 60px 20px; background: linear-gradient(135deg,#061212 0%, #001010 100%); color:#e6fff0; }
    .testimonials-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; margin-top:28px; }
    .testimonial-card { background: rgba(255,255,255,0.02); border-radius:14px; padding:18px; border:1px solid rgba(0,255,0,0.06); }
    .testimonial-card .avatar { width:56px; height:56px; border-radius:50%; overflow:hidden; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,#0b3 #064); margin-bottom:10px; }
    .testimonial-card .avatar img { width:100%; height:100%; object-fit:cover; display:block; }
        .testimonial-name { font-weight:800; color:#dfffe0; }
        .testimonial-role { font-size:13px; color:#a7d9a4; margin-bottom:10px; }
        .testimonial-quote { font-style:italic; color:#dfffe0; margin:10px 0; }
        .testimonial-note { font-size:13px; color:#cfe9cf; background:rgba(0,255,0,0.02); padding:8px; border-radius:8px; }

        @media (max-width: 1100px) {
            .ratings-inner { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 700px) {
            .testimonials-grid { grid-template-columns: 1fr; }
            .rating-number { font-size: 36px; }
            .break-label { width: 120px; }
        }

        /* Pricing Box Styles */
        .pricing-box {
            max-width: 600px;
            margin: 60px auto 0;
            position: relative;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #4c8828 0%, #5c9824 100%);
            color: white;
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .fire-icon {
            font-size: 18px;
        }

        .pricing-card {
            background: rgba(20, 20, 20, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px;
            border: 1px solid rgba(255, 0, 0, 0.3);
            text-align: center;
            box-shadow: 0 25px 80px rgba(255, 0, 0, 0.15);
            margin-top: 30px;
        }

        .plan-header {
            margin-bottom: 30px;
        }

        .plan-name {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #fff 0%, #ff0000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .price-block {
            margin-bottom: 30px;
        }

        .original-price {
            color: #666;
            text-decoration: line-through;
            font-size: 18px;
            margin-bottom: 5px;
        }

        .price {
            font-size: 72px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 5px;
        }

        .currency {
            font-size: 36px;
            margin-top: 10px;
        }

        .amount {
            font-size: 72px;
        }

        .period {
            font-size: 20px;
            color: #888;
            margin-top: 25px;
        }

        .savings-badge {
            display: inline-block;
            background: rgba(0, 255, 0, 0.15);
            color: #00ff00;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
        }

        .video-capacity {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 10px;
            margin: 10px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .capacity-value {
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .capacity-label {
            text-align: left;
        }

        .capacity-label .highlight {
            color: #fff;
            font-weight: 600;
            font-size: 18px;
        }

        .capacity-label .subtitle {
            color: #888;
            font-size: 14px;
        }

        .core-features {
            margin: 30px 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 16px;
            color: #fff;
        }

        .check {
            color: #00ff00;
            font-weight: 900;
        }

        .cta-button {
            width: 100%;
            background: linear-gradient(135deg, #ff3a3a 0%, #ff0000 100%);
            border: none;
            border-radius: 12px;
            padding: 20px;
            color: white;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 30px 0;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
        }

        .cta-button .main-text {
            display: block;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .cta-button .sub-text {
            display: block;
            font-size: 14px;
            opacity: 0.9;
        }

        .security-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #888;
            font-size: 14px;
        }

        .bonus-features {
            margin-top: 40px;
            padding: 30px;
            background: rgba(0, 255, 0, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 0, 0.2);
        }

        .bonus-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .bonus-label {
            font-size: 18px;
            font-weight: 700;
            color: #00ff00;
            margin-bottom: 5px;
        }

        .bonus-value {
            font-size: 24px;
            font-weight: 800;
            color: #fff;
        }

        .bonus-items {
            display: grid;
            gap: 20px;
        }

        .bonus-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(0, 255, 0, 0.1);
        }

        .bonus-icon {
            font-size: 32px;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 255, 0, 0.1);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .bonus-content {
            text-align: left;
        }

        .bonus-title {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 5px;
        }

        .bonus-description {
            font-size: 14px;
            color: #888;
            margin-bottom: 5px;
        }

        .bonus-price {
            font-size: 14px;
            color: #00ff00;
            font-weight: 600;
        }

        .guarantee-box {
            margin-top: 30px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .guarantee-icon {
            font-size: 32px;
        }

        .guarantee-content {
            text-align: left;
        }

        .guarantee-title {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 5px;
        }

        .guarantee-text {
            font-size: 14px;
            color: #888;
        }

        .features-highlights {
            margin-top: 40px;
            display: grid;
            gap: 20px;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: rgba(255, 0, 0, 0.05);
            border-radius: 16px;
            border: 1px solid rgba(255, 0, 0, 0.1);
        }

        .highlight-icon {
            font-size: 32px;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 0, 0, 0.1);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .highlight-content {
            text-align: left;
        }

        .highlight-title {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .highlight-description {
            font-size: 15px;
            color: #999;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .pricing-card {
                padding: 30px 20px;
            }

            .bonus-item {
                flex-direction: column;
                text-align: center;
            }

            .bonus-content {
                text-align: center;
            }

            .video-capacity {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .capacity-label {
                text-align: center;
            }

            .guarantee-box {
                flex-direction: column;
                text-align: center;
            }

            .guarantee-content {
                text-align: center;
            }
        }

        /* Urgency Section */
        .urgency {
            padding: 60px 20px;
            background: #db3737;
            color: #fff;
            text-align: center;
        }

        .urgency-text {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .urgency-subtext {
            font-size: 16px;
            opacity: 0.9;
        }

        /* FAQ Section */
        .faq {
            padding: 40px 20px;
            background: #000;
        }

        .faq-list {
            max-width: 800px;
            margin: 60px auto 0;
        }

        .faq-item {
            background: #1a1a1a;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 16px;
            border: 1px solid #222;
        }

        .faq-question {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #ff0000;
        }

        .faq-answer {
            font-size: 16px;
            color: #ccc;
            line-height: 1.6;
        }

        /* Final CTA */
        .final-cta {
            padding: 100px 20px;
            background: linear-gradient(135deg, #1a0000 0%, #000 100%);
            text-align: center;
        }

        .final-cta h2 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 900;
            margin-bottom: 24px;
        }

        .final-cta p {
            font-size: 20px;
            color: #ccc;
            margin-bottom: 40px;
        }

        /* Footer */
        footer {
            padding: 40px 20px;
            background: #000;
            text-align: center;
            border-top: 1px solid #222;
            color: #666;
            font-size: 14px;
        }

        

        .plan-header {
            margin-bottom: 30px;
        }

        .plan-name {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #fff 0%, #ff0000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .price-block {
            margin-bottom: 30px;
        }

        .original-price {
            color: #666;
            text-decoration: line-through;
            font-size: 18px;
            margin-bottom: 5px;
        }

        .price {
            font-size: 72px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 5px;
        }

        .currency {
            font-size: 36px;
            margin-top: 10px;
        }

        .amount {
            font-size: 72px;
        }

        .period {
            font-size: 20px;
            color: #888;
            margin-top: 25px;
        }

        .savings-badge {
            display: inline-block;
            background: rgba(0, 255, 0, 0.15);
            color: #00ff00;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
        }

        .video-capacity {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 10px;
            margin: 10px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .capacity-value {
            font-size: 38px;
            font-weight: 800;
            background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .capacity-label {
            text-align: left;
        }

        .capacity-label .highlight {
            color: #fff;
            font-weight: 600;
            font-size: 18px;
        }

        .capacity-label .subtitle {
            color: #888;
            font-size: 14px;
        }

        .core-features {
            margin: 30px 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 16px;
            color: #fff;
        }

        .check {
            color: #00ff00;
            font-weight: 900;
        }

        .cta-button {
            width: 100%;
            background: linear-gradient(135deg, #ff3a3a 0%, #ff0000 100%);
            border: none;
            border-radius: 12px;
            padding: 20px;
            color: white;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 30px 0;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
        }

        .cta-button .main-text {
            display: block;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .cta-button .sub-text {
            display: block;
            font-size: 14px;
            opacity: 0.9;
        }

        .security-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #888;
            font-size: 14px;
        }

        .bonus-features {
            margin-top: 40px;
            padding: 30px;
            background: rgba(0, 255, 0, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 0, 0.2);
        }

        .bonus-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .bonus-label {
            font-size: 18px;
            font-weight: 700;
            color: #00ff00;
            margin-bottom: 5px;
        }

        .bonus-value {
            font-size: 24px;
            font-weight: 800;
            color: #fff;
        }

        .bonus-items {
            display: grid;
            gap: 20px;
        }

        .bonus-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(0, 255, 0, 0.1);
        }

        .bonus-icon {
            font-size: 32px;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 255, 0, 0.1);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .bonus-content {
            text-align: left;
        }

        .bonus-title {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 5px;
        }

        .bonus-description {
            font-size: 14px;
            color: #888;
            margin-bottom: 5px;
        }

        .bonus-price {
            font-size: 14px;
            color: #00ff00;
            font-weight: 600;
        }

        .guarantee-box {
            margin-top: 30px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .guarantee-icon {
            font-size: 32px;
        }

        .guarantee-content {
            text-align: left;
        }

        .guarantee-title {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 5px;
        }

        .guarantee-text {
            font-size: 14px;
            color: #888;
        }

        @media (max-width: 768px) {
            .hero {
                padding: 60px 20px 80px;
            }

            .video-grid, .proof-grid, .features-grid, .steps {
                grid-template-columns: 1fr;
            }

            .pricing-card {
                padding: 40px 30px;
            }
        }