:root {
    --primary-red: #E63946;
    --primary-orange: #FF6B35;
    --primary-gold: #FFD700;
    --accent-green: #2A9D8F;
    --accent-pink: #FF477E;
    --dark-bg: #1A0505;
    --text-light: #F1FAEE;
    --gradient-fire: linear-gradient(135deg, #FF6B35 0%, #E63946 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn-cta {
    display: inline-block;
    background: var(--gradient-fire);
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.6);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(230, 57, 70, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 100px 20px;
}

#global-confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #FFD700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.timer-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 80px;
}

.timer-box span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.timer-box small {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* VSL Section */
.vsl-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--dark-bg), #2a0a0a);
}

.vsl-container {
    max-width: 400px;
    /* 9:16 aspect ratio roughly */
    margin: 0 auto;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(255, 71, 126, 0.3);
    border: 2px solid var(--accent-pink);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vsl-placeholder {
    color: white;
    font-size: 1.5rem;
    text-align: center;
}

/* Pain Points */
.pain-points {
    padding: 80px 0;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pain-card {
    background: linear-gradient(145deg, rgba(230, 57, 70, 0.1), rgba(26, 5, 5, 0.8));
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-orange);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pain-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

/* Product Section */
.product-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(to bottom, #2a0a0a, var(--dark-bg));
    overflow: hidden;
}

/* Remove ::before overlay since we don't have an image anymore */
.product-section::before {
    display: none;
}

.product-content {
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 50px;
}

.check-icon {
    color: var(--accent-green);
    margin-right: 15px;
    font-size: 1.4rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    /* Gradient from Orange (Joy/Energy) to Pink (Feminine/Festive) */
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-pink));
    position: relative;
}

/* Ensure title stands out against the bright background */
.testimonials h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-carousel {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 300px;
    background: #1A1A1A;
    padding: 30px;
    border-radius: 20px;
    scroll-snap-align: center;
    border: 1px solid #333;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

/* Guarantee */
.guarantee {
    background: white;
    color: #333;
    padding: 60px 0;
    text-align: center;
}

.guarantee-box {
    border: 4px dashed var(--primary-red);
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Pricing Benefits List */
.pricing-benefits {
    list-style: none;
    /* Removing bullets */
    list-style-type: none;
    /* Extra safety */
    padding-left: 0;
    /* Removing default padding */
    text-align: left;
    margin: 30px auto;
    display: inline-flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
}

/* Pricing */
.pricing-section {
    padding: 80px 20px;
    text-align: center;
    min-height: 80vh;
    /* Helps center the offer on screen on click */
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-card {
    background: var(--gradient-fire);
    padding: 50px;
    border-radius: 30px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.3);
    border: 2px solid var(--primary-gold);
    color: white;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 1.5rem;
}

.new-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Sticky WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* --- MOBILE RESPONSIVENESS --- */

/* Tablet & Large Mobile (max-width 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .countdown-timer {
        gap: 10px;
    }

    .timer-box {
        min-width: 70px;
        padding: 10px;
    }

    .timer-box span {
        font-size: 1.5rem;
    }

    /* Adjust grids to prevent overflow or wide gaps */
    .pain-grid,
    .benefits-list,
    .results-grid {
        grid-template-columns: 1fr;
        /* Force single column on smaller tablets */
    }

    .new-price {
        font-size: 3rem;
    }

    .price-card {
        padding: 30px 20px;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }
}

/* Small Mobile (max-width 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .btn-cta {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        /* Full width button for easier tapping */
    }

    /* Countdown adjustments for very small screens */
    .countdown-timer {
        flex-wrap: wrap;
        gap: 8px;
    }

    .timer-box {
        min-width: 60px;
        flex: 1 1 40%;
        /* 2x2 grid */
    }

    .vsl-container {
        border-radius: 10px;
    }

    .product-title {
        font-size: 2rem;
    }

    .testimonial-card {
        min-width: 260px;
        /* Smaller card width */
        padding: 20px;
    }

    .pricing-benefits li {
        font-size: 1rem;
    }

    .guarantee-box {
        padding: 20px;
    }

    .result-card h3 {
        font-size: 1rem;
    }
}