
        * {
            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;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 87, 34, 0.15) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 40px 0;
        }

        .urgency-badge {
            display: inline-block;
            background: #FF5722;
            color: #fff;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 30px;
            animation: fadeInDown 0.8s ease;
            box-shadow: 0 4px 20px rgba(255, 87, 34, 0.4);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .highlight {
            color: #FF5722;
            position: relative;
            display: inline-block;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 10px;
            background: rgba(255, 87, 34, 0.3);
            z-index: -1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .subheadline {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: #b0b0b0;
            margin-bottom: 50px;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .cta-button {
            display: inline-block;
            background: #FF5722;
            color: #fff;
            padding: 20px 50px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease 0.6s both;
            box-shadow: 0 10px 40px rgba(255, 87, 34, 0.4);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(255, 87, 34, 0.6);
        }

        .cta-button span {
            position: relative;
            z-index: 1;
        }

        .trust-indicators {
            margin-top: 60px;
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.8s both;
        }

        .trust-item {
            text-align: center;
        }

        .trust-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #FF5722;
            display: block;
        }

        .trust-label {
            color: #888;
            font-size: 0.9rem;
            margin-top: 5px;
        }

        /* Section Styles */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            margin-bottom: 20px;
            
        }

        .section-title2{
             text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            margin-bottom: 20px;
            padding-bottom: 40px;
        }

        .section-subtitle {
            text-align: center;
            color: #888;
            font-size: 1.2rem;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Pain Points */
        .pain-section {
            background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
        }

        .pain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .pain-card {
            background: #1a1a1a;
            padding: 40px;
            border-radius: 20px;
            border: 2px solid #222;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pain-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: #FF5722;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .pain-card:hover {
            transform: translateY(-10px);
            border-color: #FF5722;
            box-shadow: 0 20px 60px rgba(255, 87, 34, 0.3);
        }

        .pain-card:hover::before {
            transform: scaleX(1);
        }

        .pain-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .pain-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .pain-description {
            color: #888;
            line-height: 1.6;
        }

        /* Proof Section */
        .proof-section {
            background: #0a0a0a;
        }

        .proof-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .proof-card {
            background: #1a1a1a;
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s ease;
            border: 2px solid #222;
        }

        .proof-card:hover {
            transform: scale(1.05);
            border-color: #FF5722;
            box-shadow: 0 20px 60px rgba(255, 87, 34, 0.3);
        }

        .proof-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            height: 300px;
        }

        .proof-before, .proof-after {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
            position: relative;
        }

        .proof-before {
            background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
        }

        .proof-after {
            background: linear-gradient(135deg, #FF5722 0%, #ff7043 100%);
        }

        .proof-label {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0, 0, 0, 0.8);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .proof-info {
            padding: 30px;
        }

        .proof-name {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .proof-stats {
            color: #FF5722;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .proof-quote {
            color: #888;
            line-height: 1.6;
            font-style: italic;
        }

        /* System Section */
        .system-section {
            background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
        }

        .system-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
            position: relative;
        }

        .step-card {
            text-align: center;
            position: relative;
            padding: 40px 30px;
            background: #1a1a1a;
            border-radius: 20px;
            border: 2px solid #222;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-10px);
            border-color: #FF5722;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a1a15 100%);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FF5722 0%, #ff7043 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            margin: 0 auto 30px;
            box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
        }

        .step-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .step-description {
            color: #888;
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials-section {
            background: #000;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: #1a1a1a;
            padding: 40px;
            border-radius: 20px;
            border: 2px solid #222;
            transition: all 0.3s ease;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 6rem;
            color: #FF5722;
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: #FF5722;
            box-shadow: 0 20px 60px rgba(255, 87, 34, 0.2);
        }

        .testimonial-text {
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #FF5722 0%, #ff7043 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .author-result {
            color: #FF5722;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
            position: relative;
            overflow: hidden;
        }

        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(255, 87, 34, 0.1) 0%, transparent 70%);
        }

        .pricing-container {
            position: relative;
            z-index: 1;
        }

        .value-stack {
            background: #1a1a1a;
            border: 3px solid #FF5722;
            border-radius: 30px;
            padding: 60px;
            max-width: 800px;
            margin: 0 auto 60px;
            box-shadow: 0 30px 80px rgba(255, 87, 34, 0.3);
        }

        .value-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 40px;
            color: #FF5722;
        }

        .value-item {
            display: flex;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #333;
        }

        .value-item:last-child {
            border-bottom: none;
        }

        .checkmark {
            width: 30px;
            height: 30px;
            background: #FF5722;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .value-text {
            flex: 1;
            font-size: 1.1rem;
        }

        .value-price {
            font-weight: 700;
            color: #FF5722;
            font-size: 1.2rem;
        }

        .total-value {
            text-align: center;
            margin: 40px 0 30px;
            padding: 30px;
            background: rgba(255, 87, 34, 0.1);
            border-radius: 20px;
        }

        .total-label {
            color: #888;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .total-amount {
            font-size: 2.5rem;
            font-weight: 900;
            color: #888;
            text-decoration: line-through;
            margin-bottom: 10px;
        }

        .your-investment {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 10px;
        }

        .final-price {
            font-size: 4rem;
            font-weight: 900;
            color: #FF5722;
        }

        .guarantee-badge {
            text-align: center;
            margin-top: 40px;
            padding: 30px;
            background: rgba(255, 87, 34, 0.1);
            border-radius: 20px;
            border: 2px dashed #FF5722;
        }

        .guarantee-badge h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #FF5722;
        }

        .guarantee-badge p {
            color: #ccc;
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq-section {
            background: #0a0a0a;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #1a1a1a;
            border: 2px solid #222;
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: #FF5722;
        }

        .faq-question {
            padding: 25px 30px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(255, 87, 34, 0.1);
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: #FF5722;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 30px 25px;
            color: #888;
            line-height: 1.8;
        }

        /* Final CTA Section */
        .final-cta {
            background: linear-gradient(135deg, #FF5722 0%, #ff7043 100%);
            text-align: center;
            padding: 100px 20px;
        }

        .final-cta h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 20px;
            color: #fff;
        }

        .final-cta p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
        }

        .final-cta .cta-button {
            background: #000;
            color: #fff;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .final-cta .cta-button:hover {
            background: #1a1a1a;
        }

        .spots-left {
            margin-top: 30px;
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            background: rgba(0, 0, 0, 0.3);
            padding: 15px 30px;
            border-radius: 30px;
            display: inline-block;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                min-height: 80vh;
            }

            .trust-indicators {
                gap: 30px;
            }

            .value-stack {
                padding: 40px 30px;
            }

            section {
                padding: 60px 0;
            }

            .proof-grid,
            .system-steps,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
    