:root {
    --primary-red: #e60000;
    --primary-green: #20df11;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --accent-gold: #fbbf24;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Progress Bar */
.progress-bar-container {
    background-color: var(--card-bg);
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
}

.progress-bar {
    max-width: 600px;
    margin: 0 auto;
    background: #9f0000;
    border-radius: 20px;
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.progress-bar span {
    position: relative;
    z-index: 2;
    font-size: 0.8rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #ff0000, #9f0000);
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 0;
    background-image: radial-gradient(circle at center, #1f1f1f 0%, #000000 100%);
}

.hero h1 {
    background: linear-gradient(to right, #ef7676, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.emoji-fix {
    -webkit-text-fill-color: initial;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--text-white);
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: var(--primary-red);
}

.hero-image {
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.hero-image img {
    border: 2px solid #333;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.highlight-red {
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.3rem;
}

.hero-img-small img {
    max-width: 300px;
    margin: 20px auto;
}

/* Sections General */
section {
    padding: 20px 0;
}

.section-title {
    color: var(--text-white);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.highlight-green {
    color: var(--primary-green);
}

/* Benefits */
.benefits {
    background-color: #0f0f0f;
    height: 1080px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.benefits-image img {
    margin: 0 auto 40px;
    border-radius: 10px;
}

/* Checklist */
.checklist-section {
    background-color: var(--dark-bg);
    height: 500px;
}

.checklist {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.checklist li {
    background-color: #252525;
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    border-left: 4px solid var(--primary-green);
    transition: transform 0.3s ease;
}

.checklist li:hover {
    transform: translateX(10px);
}

.checklist li i {
    color: var(--primary-green);
    flex-shrink: 0;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #16a30c 0%, #20df11 100%);
    color: #fff;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 8px;
    /* Changed from 50px */
    text-align: center;
    margin: 30px auto;
    box-shadow: 0 0 20px rgba(32, 223, 17, 0.4);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(32, 223, 17, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(32, 223, 17, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(32, 223, 17, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(32, 223, 17, 0);
    }
}

.big-btn {
    padding: 25px 30px;
    line-height: 1.2;
}

.big-btn small {
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.9;
    margin-top: 5px;
}

.section-subtitle {
    color: var(--text-white);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
}

/* Testimonials */
.testimonials {
    background-color: #000;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial-grid img {
    border-radius: 10px;
    border: 1px solid #444;
}

.arrow-down {
    color: #6d63fc;
    margin: 20px 0;
    font-size: 2rem;
    animation: bounce 2s infinite;
    display: flex;
    justify-content: center;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Guarantee */
.guarantee {
    text-align: center;
    background: linear-gradient(to bottom, #000, #1a1a1a);
}

.guarantee img {
    margin: 0 auto 20px;
}

.guarantee-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.underline {
    text-decoration: underline;
}

.guarantee-alert {
    color: var(--primary-red);
    font-weight: 900;
    font-size: 1.4rem;
    text-transform: uppercase;
}

/* Offer Section (Updated) */
.offer-section {
    background-color: #fff;
    color: #000;
    border-radius: 20px;
    margin: 40px auto;
    padding: 20px;
    border: 4px solid var(--primary-green);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
    max-width: 900px;
    /* Constrain width for better reading */
}

.offer-header {
    text-align: center;
    margin-bottom: 30px;
}

.offer-title {
    color: #000;
}

.offer-content-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-mockup {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.product-mockup img {
    max-height: 250px;
}

.mobile-only-btn {
    display: flex;
    /* Shown on mobile by default */
}

.mobile-methods {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.offer-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offer-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #2f2f2f;
    font-weight: 700;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.offer-checklist li i {
    color: #199e00;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.offer-pricing-area {
    text-align: center;
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-radius: 15px;
    margin-top: 20px;
    border: 2px dashed #ccc;
}

.urgency-title {
    color: #da0303;
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 0 0 0;
    /* Remove stroke simulation from webkit */
    margin-bottom: 10px;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.old-price {
    font-size: 1.5rem;
    color: #da0303;
    font-weight: 800;
}

.price-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.new-price {
    font-size: 4rem;
    color: #0b9b00;
    font-weight: 900;
    line-height: 1;
    margin: 10px 0;
}

.payment-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.scarcity-text {
    color: #ef0000;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 15px;
}

.safety-badges img {
    margin: 20px auto;
    max-width: 100%;
}

.final-warning {
    border: 2px solid #ef0000;
    padding: 10px;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 5px;
    background-color: #fff0f0;
}

@media (min-width: 768px) {
    .offer-content-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .offer-col-main {
        flex: 1;
        order: 2;
        /* Push image to right on desktop if preferred, or left */
    }

    .offer-col-list {
        flex: 1;
    }

    .mobile-only-btn {
        display: none;
        /* Hide top button on desktop, keep bottom one */
    }

    .mobile-methods {
        display: none;
    }

    .urgency-title {
        font-size: 3.5rem;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--card-bg);
    padding-bottom: 100px;
}

.faq-item {
    background-color: #252525;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-white);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #333;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #333;
    color: #ddd;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-question.active+.faq-answer {
    padding: 20px;
    max-height: 500px;
    /* Arbitrary large height */
}

/* Footer */
footer {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #333;
}

/* Animations classes */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


.animate-up.visible {
    opacity: 1;
    transform: translateY(0);

}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Responsive Media Queries */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-button {
        width: auto;
        min-width: 400px;
    }
}