/* Variables & Reset */
:root {
    --bg-color: #0a0a0a;
    --surface-color: #121212;
    --surface-hover: #1e1e1e;
    --primary-color: #00ff88;
    /* Neon Green */
    --primary-hover: #00cc6a;
    --secondary-color: #7000ff;
    /* Deep Purple */
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #333333;
    --danger-color: #ff4d4d;

    --font-main: 'Outfit', sans-serif;

    --container-width: 1100px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    --glow-primary: 0 0 20px rgba(0, 255, 136, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary-color);
}

.highlight-red {
    color: var(--danger-color);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: var(--glow-primary);
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 255, 136, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-bullets {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.hero-bullets i {
    color: var(--primary-color);
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mini-argument {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.mini-argument i {
    color: #ffd700;
}

/* VSL Styles */
.vsl-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 10;
}

.vsl-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.15);
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vsl-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.25);
    border-color: var(--primary-color);
}

.vsl-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vsl-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.vsl-caption i {
    color: var(--primary-color);
    animation: pulse-animation 2s infinite;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, rgba(10, 10, 10, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* Pain Points */
.pain-points {
    background-color: #0f0f0f;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pain-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: var(--danger-color);
}

.pain-icon {
    font-size: 2rem;
    color: var(--danger-color);
    margin-bottom: 1rem;
}

.pain-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.pain-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pain-footer {
    text-align: center;
    font-size: 1.2rem;
    background: rgba(255, 77, 77, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 77, 77, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

/* Transformation */
.transformation {
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: var(--text-muted);
}

.transformation-cta {
    text-align: center;
    background: linear-gradient(180deg, var(--surface-color) 0%, var(--bg-color) 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.transformation-cta blockquote {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
    color: #e0e0e0;
}

/* How It Works */
.how-it-works {
    background: var(--surface-color);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* Product Includes */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-item {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.product-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.product-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-item h3 {
    margin-bottom: 1rem;
}

.product-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.highlight-item {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.2);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Offer Section */
.offer {
    padding-top: 2rem;
}

.offer-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.1);
}

.offer-header h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.offer-price {
    margin-bottom: 3rem;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.new-price {
    display: block;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.new-price strong {
    font-size: 4rem;
    color: var(--primary-color);
}

.payment-info {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-benefits {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 3rem;
}

.offer-benefits li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.offer-benefits i {
    color: var(--primary-color);
}

.urgency-box {
    background: rgba(255, 200, 0, 0.1);
    border: 1px solid rgba(255, 200, 0, 0.3);
    color: #ffcc00;
    padding: 1rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-methods {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    color: var(--text-muted);
}

/* Guarantee */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    color: var(--primary-color);
}

.guarantee-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.guarantee-content p {
    color: var(--text-muted);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding-bottom: 6rem;
}

.final-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-subtitle {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.final-guarantee {
    margin-top: 1rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--surface-color);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    font-weight: 800;
    margin-bottom: 1rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-bullets {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        text-align: left;
        display: inline-flex;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-wrapper {
        width: 100%;
    }

    .btn-xl,
    .btn-lg {
        width: 100%;
        padding: 1.2rem 1rem;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar .btn {
        width: 100%;
        text-align: center;
    }

    .pain-grid,
    .benefits-grid,
    .steps-container,
    .product-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .transformation-cta {
        padding: 2rem 1rem;
    }

    .transformation-cta blockquote {
        font-size: 1.2rem;
    }

    .offer-card {
        padding: 3rem 1.5rem;
    }

    .offer-header h2 {
        font-size: 2rem;
    }

    .new-price strong {
        font-size: 3rem;
    }

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

    .guarantee-icon {
        margin-bottom: 0;
    }

    .final-title {
        font-size: 2rem;
    }
}

/* 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);
}