/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Raleway', sans-serif;
    color: #000;
    background: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === LAYOUT === */
.section {
    width: 100%;
    position: relative;
}
/* Remove gray gaps between consecutive white/bordered sections */
.bg-white + .bg-white,
.bg-white + .bg-bordered,
.bg-bordered + .bg-white,
.bg-bordered + .bg-bordered {
    margin-top: 0;
}
/* All content sections sit flush on white strip */
.bg-white + .bg-white > .container {
    padding-top: 0;
}
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* === SECTION BACKGROUNDS === */
.bg-red { background: #df0037; color: #fff; }
.bg-white { background: #fff; }
.bg-gray { background: #464646; color: #fff; }
.bg-bordered {
    background: #fff;
    border: 3px solid #df0037;
    border-radius: 12px;
    margin: 0 1rem;
    max-width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
}

/* === TYPOGRAPHY === */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}
h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}
h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}
.subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 1rem;
}
.text-center { text-align: center; }

/* === HERO === */
.hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 520px;
    padding-bottom: 6rem;
}
.hero-content { flex: 1; }
.hero-image {
    flex: 0 0 400px;
    max-width: 400px;
}
.hero-image img {
    width: 100%;
    border-radius: 8px;
}

/* === CTA BUTTON === */
.btn {
    display: inline-block;
    background: #0eff00;
    color: #000;
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.btn-pink {
    background: #ff004c;
    color: #fff;
}

/* === COUNTDOWN === */
.countdown {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.countdown-item {
    background: #fff;
    border-radius: 10px;
    padding: 0.5rem 0.8rem;
    min-width: 70px;
    text-align: center;
}
.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: #df0037;
    line-height: 1.2;
}
.countdown-label {
    font-size: 0.85rem;
    font-weight: 400;
    color: #df0037;
}
/* dark bg variant */
.bg-white .countdown-item,
.bg-bordered .countdown-item {
    background: #fff;
    border: 2px solid #df0037;
}

/* === PAIN POINTS === */
.pain-list {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
}
.pain-list li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.pain-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    font-weight: 700;
}
.pain-list li b {
    font-weight: 700;
}

/* === TRANSITION SECTION === */
.transition-text {
    text-align: center;
    padding: 2.5rem 1.5rem;
}
.transition-text p {
    font-size: 1.5rem;
}
.transition-text .big {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* === PRODUCT IMAGE === */
.product-image {
    text-align: center;
}
.product-image img {
    margin: 0 auto;
    max-width: 100%;
}

/* === BENEFITS === */
.benefits-list {
    max-width: 700px;
    margin: 0 auto;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.6rem 0;
    font-size: 1.25rem;
}
.benefit-item .check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

/* === BEFORE/AFTER === */
.before-after {
    text-align: center;
}
.before-after img {
    margin: 0 auto;
    max-width: 100%;
}
.before-after-labels {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.before-after-labels > div {
    flex: 1;
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.testimonials-grid img {
    border-radius: 6px;
    border: 2px solid #df0037;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* === YOUTUBE EMBED === */
.video-wrapper {
    position: relative;
    max-width: 700px;
    margin: 1.5rem auto;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.video-wrapper img.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    z-index: 2;
}
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* === ACCORDION === */
.accordion {
    max-width: 700px;
    margin: 1.5rem auto 0;
}
.accordion-item {
    border-bottom: 1px solid #ccc;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
}
.accordion-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}
.accordion-body {
    display: none;
    padding: 0 0 1.2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}
.accordion-item.active .accordion-body {
    display: block;
}

/* === BONUSES === */
.bonus-item {
    text-align: center;
    padding: 1.5rem 0;
}
.bonus-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.bonus-item p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* === PRICING === */
.pricing-card {
    text-align: center;
}
.pricing-card h2 {
    margin-bottom: 1rem;
}
.pricing-card .product-img {
    max-width: 100%;
    margin: 0 auto 1.5rem;
}
.pricing-card .product-img img {
    max-width: 100%;
    height: auto;
}
.pricing-checklist {
    text-align: left;
    max-width: 600px;
    margin: 1.5rem auto;
    font-size: 1.15rem;
    line-height: 2;
}
.price-old {
    font-size: 2rem;
    text-decoration: line-through;
    color: #666;
    margin-right: 1rem;
}
.price-new {
    font-size: 3.5rem;
    font-weight: 700;
    color: #df0037;
}
.pricing-vip .price-new {
    color: #df0037;
}
.vip-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #df0037;
    text-align: center;
}
.vip-includes {
    text-align: center;
    font-size: 1.15rem;
    line-height: 2;
    margin: 1rem 0;
}

/* === INSTRUCTOR === */
.instructor {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.instructor-text {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.8;
}
.instructor-text h3 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.instructor-image {
    flex: 0 0 300px;
    max-width: 300px;
}
.instructor-image img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

/* === GUARANTEE === */
.guarantee {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.guarantee-text {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.8;
}
.guarantee-text h3 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.guarantee-image {
    flex: 0 0 300px;
    max-width: 300px;
}

/* === FOOTER === */
.footer {
    text-align: center;
    padding: 2rem 1.5rem;
    color: #ccc;
    font-size: 0.9rem;
}
.footer a {
    color: #ccc;
    margin: 0 0.3rem;
}
.footer a:hover {
    color: #fff;
}
.footer img {
    margin: 1rem auto 0;
    max-width: 120px;
}

/* === SPACING HELPERS === */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.section + .section { /* no extra gap needed, container handles padding */ }
.section-heading {
    padding: 1.5rem 1.5rem;
    text-align: center;
}
.section-heading h2 {
    margin: 0;
}

/* === MOBILE === */
@media (max-width: 768px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.25rem; }
    .subtitle { font-size: 1.1rem; }

    .hero .container {
        flex-direction: column;
        text-align: center;
        padding-bottom: 5rem;
        min-height: auto;
    }
    .hero-image {
        flex: none;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-content .btn {
        margin: 1rem auto 0;
    }

    .container { padding: 2rem 1rem; }

    .before-after-labels {
        flex-direction: column;
        gap: 1rem;
    }

    .instructor {
        flex-direction: column;
    }
    .instructor-image {
        flex: none;
        max-width: 280px;
        margin: 0 auto;
    }

    .guarantee {
        flex-direction: column;
    }
    .guarantee-image {
        flex: none;
        max-width: 200px;
        margin: 0 auto;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.4rem 0.5rem;
    }
    .countdown-number {
        font-size: 1.5rem;
    }

    .benefit-item {
        font-size: 1.05rem;
    }

    .price-new {
        font-size: 2.5rem;
    }
    .price-old {
        font-size: 1.5rem;
    }
    .pricing-checklist {
        font-size: 1rem;
    }

    .pain-list {
        font-size: 1.05rem;
    }

    .vip-title {
        font-size: 1.6rem;
    }
}
