<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
            color: #ffffff;
            line-height: 1.7;
            overflow-x: hidden;
        }

        .img {
            width: 180px;
            height: 180px;
        }

        .background-effects {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: float 8s ease-in-out infinite;
        }

        .orb-1 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, #25fd89, transparent);
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, #25fd89, transparent);
            bottom: 20%;
            left: 5%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-30px) scale(1.1); }
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
        }

        .header {
            text-align: center;
            margin-bottom: 80px;
            padding: 80px 0;
            position: relative;
        }

        .headline {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #25fd89, #1de876, #15d464);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            text-shadow: 0 0 50px rgba(37, 253, 137, 0.5);
        }

        .subheadline {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: #a0a0a0;
            font-weight: 400;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(37, 253, 137, 0.1), transparent);
            transition: left 0.8s ease;
        }

        .glass-card:hover::before {
            left: 100%;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            border-color: rgba(37, 253, 137, 0.3);
            box-shadow: 0 20px 60px rgba(37, 253, 137, 0.1);
        }

        .section-title {
            color: #25fd89;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #25fd89, transparent);
            border-radius: 2px;
        }

        .section-text {
            font-size: 1.1rem;
            color: #e0e0e0;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .benefits-grid {
            background: rgba(37, 253, 137, 0.05);
            border: 1px solid rgba(37, 253, 137, 0.2);
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
        }

        .benefits-title {
            color: #25fd89;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
            text-align: center;
        }

        .benefits-list {
            display: grid;
            gap: 15px;
            list-style: none;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .benefit-item:hover {
            background: rgba(37, 253, 137, 0.1);
            border-left-color: #25fd89;
            transform: translateX(5px);
        }

        .benefit-icon {
            width: 8px;
            height: 8px;
            background: #25fd89;
            border-radius: 50%;
            margin-right: 15px;
            flex-shrink: 0;
            box-shadow: 0 0 10px #25fd89;
        }

        .target-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .target-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .target-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #25fd89, #1de876);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .target-card:hover::before {
            transform: scaleX(1);
        }

        .target-card:hover {
            background: rgba(37, 253, 137, 0.05);
            border-color: rgba(37, 253, 137, 0.3);
            transform: translateY(-2px);
        }

        .check-icon {
            font-size: 1.2rem;
            margin-right: 15px;
            filter: drop-shadow(0 0 5px #25fd89);
        }

        .price-hero {
            background: linear-gradient(135deg, #25fd89, #1de876);
            border-radius: 25px;
            padding: 60px 40px;
            text-align: center;
            margin: 60px 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(37, 253, 137, 0.3);
        }

        .price-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .price-content {
            position: relative;
            z-index: 2;
        }

        .price-label {
            color: #0f0f0f;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .price-value {
            font-size: 4.5rem;
            font-weight: 900;
            color: #0f0f0f;
            margin: 20px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .price-subtitle {
            color: #0f0f0f;
            font-size: 1.1rem;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #0f0f0f;
            color: #25fd89;
            padding: 20px 50px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid #0f0f0f;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            min-width: 280px;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(37, 253, 137, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(15, 15, 15, 0.4);
            border-color: #25fd89;
        }

        .guarantee-badge {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(37, 253, 137, 0.3);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            margin: 40px 0;
            position: relative;
        }

        .guarantee-badge::before {
            content: '🛡️';
            font-size: 2rem;
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #1a1a1a;
            padding: 0 15px;
        }

        .faq-container {
            margin-top: 50px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(37, 253, 137, 0.3);
            background: rgba(37, 253, 137, 0.05);
        }

        .faq-question {
            color: #25fd89;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 25px;
            margin: 0;
        }

        .faq-answer {
            color: #e0e0e0;
            padding: 0 25px 25px 25px;
            line-height: 1.6;
        }

        .final-cta {
            background: linear-gradient(135deg, rgba(37, 253, 137, 0.1), rgba(29, 232, 118, 0.05));
            border: 1px solid rgba(37, 253, 137, 0.2);
            border-radius: 25px;
            padding: 60px 40px;
            text-align: center;
            margin-top: 60px;
            position: relative;
        }

        .final-title {
            color: #25fd89;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .final-subtitle {
            color: #e0e0e0;
            font-size: 1.1rem;
            margin-bottom: 40px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .guarantee-text {
            font-size: 0.9rem;
            color: #25fd89;
            margin-top: 20px;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            .glass-card {
                padding: 25px;
            }

            .header {
                padding: 40px 0;
                margin-bottom: 50px;
            }

            .price-hero {
                padding: 40px 25px;
            }

            .price-value {
                font-size: 3rem;
            }

            .target-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .cta-button {
                padding: 18px 40px;
                font-size: 1.1rem;
                min-width: 250px;
            }

            .orb-1, .orb-2 {
                width: 150px;
                height: 150px;
            }
        }

        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #25fd89, #1de876);
            transform-origin: left;
            transform: scaleX(0);
            z-index: 1000;
            transition: transform 0.1s ease;
        }
    </style>