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

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #222;
    overflow-x: hidden;
    background: #fff;
}

:root {
    --magenta: #C2185B;
    --magenta-dark: #880E4F;
    --magenta-light: #E91E8C;
    --green-dark: #1B5E20;
    --green-mid: #2E7D32;
    --green-bright: #4CAF50;
    --gold: #F9A825;
    --light-bg: #fdf6f9;
    --text-dark: #1a1a1a;
    --text-mid: #444;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(194,24,91,0.5); }
    50%  { transform: scale(1.04); box-shadow: 0 0 0 12px rgba(194,24,91,0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(194,24,91,0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ────────────────────────────── HERO ────────────────────────────── */
.hero {
    background: linear-gradient(160deg, #1B5E20 0%, #2E7D32 40%, #1a1a2e 100%);
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(194,24,91,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { animation: fadeInUp 0.9s ease; position: relative; z-index: 2; }

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #fff;
}
.hero-challenge {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}
.highlight-magenta { color: #F48FB1; }
.highlight-dark { color: #fff; }

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.92);
    max-width: 720px;
    margin: 0 auto 14px;
    line-height: 1.65;
}
.hero-subtitle-2 {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto 30px;
    font-style: italic;
}

.hero-video-wrapper {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 32px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 3px solid rgba(194,24,91,0.6);
}

.cta-button {
    display: inline-block;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    color: #fff;
    box-shadow: 0 6px 24px rgba(27,94,32,0.5);
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(27,94,32,0.6);
}
.pulse-btn { animation: pulse 2.2s ease-in-out infinite; }

.hero-cta {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    font-size: 1.2rem;
    padding: 20px 44px;
    box-shadow: 0 8px 28px rgba(27,94,32,0.55);
}
.hero-guarantee-text {
    margin-top: 14px;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
}
.hero-guarantee-text i { margin-right: 6px; color: var(--gold); }

/* ────────────────────────────── SECTION SHARED ────────────────────────────── */
.section-title {
    font-size: 2.1rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.25;
}
.section-desc {
    text-align: center;
    color: var(--text-mid);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto 32px;
    line-height: 1.65;
}

/* ────────────────────────────── O QUE VOCÊ VAI RECEBER ────────────────────────────── */
.what-you-get {
    background: var(--light-bg);
    padding: 70px 0;
}
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-left: 4px solid var(--magenta);
    font-size: 0.97rem;
    color: var(--text-dark);
}
.check-item i { color: var(--magenta); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.section-cta {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* ────────────────────────────── COMO FUNCIONA ────────────────────────────── */
.how-it-works {
    background: #fff;
    padding: 70px 0;
}
.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.focus-card {
    background: var(--light-bg);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    border-top: 4px solid var(--green-mid);
}
.focus-icon {
    font-size: 2rem;
    color: var(--green-mid);
    display: block;
    margin-bottom: 12px;
}
.focus-card p { font-size: 0.95rem; color: var(--text-mid); }

.protocol-explain {
    background: linear-gradient(135deg, #e8f5e9, #fce4ec);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 40px;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    border-left: 5px solid var(--magenta);
}

.phases-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}
.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.phase-card {
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.phase-card p { font-size: 0.92rem; opacity: 0.9; line-height: 1.55; }
.phase1 { background: linear-gradient(135deg, #1B5E20, #2E7D32); }
.phase2 { background: linear-gradient(135deg, #880E4F, #C2185B); }
.phase3 { background: linear-gradient(135deg, #E65100, #F57C00); }
.phase-number {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.8;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.phase-name {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 4px;
}
.phase-days {
    font-size: 0.82rem;
    opacity: 0.8;
    margin-bottom: 12px;
    font-style: italic;
}

/* ────────────────────────────── SOPAS ────────────────────────────── */
.soups-section {
    background: var(--light-bg);
    padding: 70px 0;
}
.soups-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.soup-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-bottom: 3px solid var(--magenta);
    transition: transform 0.2s ease;
}
.soup-card:hover { transform: translateY(-4px); }
.soup-icon { font-size: 2.4rem; margin-bottom: 10px; }
.soup-card p { font-size: 0.88rem; color: var(--text-dark); font-weight: 600; }
.soup-card-more {
    background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
    color: #fff;
    border-bottom-color: #fff;
}
.soup-card-more p { color: #fff; }

/* ────────────────────────────── RESULTADOS ────────────────────────────── */
.results-section {
    background: #fff;
    padding: 70px 0;
}
.results-subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--magenta-dark);
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.result-card {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    border-radius: 14px;
    padding: 28px 16px;
    text-align: center;
    border-top: 4px solid var(--magenta);
}
.result-icon { font-size: 2rem; color: var(--magenta); display: block; margin-bottom: 12px; }
.result-card p { font-size: 0.93rem; font-weight: 600; color: var(--magenta-dark); }

/* ────────────────────────────── PAIN POINT ────────────────────────────── */
.pain-section {
    background: linear-gradient(135deg, #880E4F, #C2185B);
    padding: 60px 0;
    text-align: center;
}
.pain-card { max-width: 700px; margin: 0 auto; }
.pain-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.3;
}
.pain-btn {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    font-size: 1.15rem;
    padding: 18px 40px;
}

/* ────────────────────────────── AUTOR ────────────────────────────── */
.author-section {
    background: var(--light-bg);
    padding: 70px 0;
}
.author-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 44px;
    align-items: center;
}
.author-layout-single {
    display: block;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.author-layout-single .author-bio {
    text-align: left;
}
.author-image-wrap { position: relative; }
.author-photo {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    border: 4px solid var(--magenta);
}
.author-results-badge {
    position: absolute;
    bottom: -14px;
    right: -10px;
    background: var(--green-mid);
    color: #fff;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.author-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--magenta);
    margin-bottom: 6px;
}
.author-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.author-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-mid);
    margin-bottom: 16px;
}
.author-bio {
    font-size: 0.97rem;
    color: var(--text-mid);
    margin-bottom: 14px;
    line-height: 1.65;
}
.author-cta {
    margin-top: 8px;
    font-size: 0.95rem;
    padding: 16px 28px;
}

/* ────────────────────────────── BÔNUS ────────────────────────────── */
.bonus-section {
    background: linear-gradient(160deg, #1B5E20 0%, #2E7D32 60%, #1a3d1e 100%);
    padding: 70px 0;
}
.bonus-section .section-title { color: #fff; }
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.bonus-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    transition: transform 0.2s ease;
}
.bonus-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.16); }
.bonus-number {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}
.bonus-emoji { font-size: 2.4rem; margin-bottom: 10px; }
.bonus-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.bonus-card p { font-size: 0.85rem; opacity: 0.82; margin-bottom: 12px; line-height: 1.5; }
.bonus-value {
    display: inline-block;
    background: rgba(255,230,0,0.2);
    border: 1px solid rgba(255,230,0,0.5);
    color: #FFE600;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 4px 14px;
    border-radius: 50px;
}

.total-bonus {
    background: rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 22px 30px;
    text-align: center;
    border: 2px solid rgba(255,230,0,0.5);
    cursor: pointer;
    transition: background 0.2s ease;
}
.total-bonus:hover { background: rgba(255,255,255,0.18); }
.total-bonus h3 { color: #fff; font-size: 1.4rem; font-weight: 800; }
.line-through { text-decoration: line-through; opacity: 0.6; font-weight: 400; }
.free { color: #FFE600; font-size: 1.5rem; }

/* ────────────────────────────── PARA QUEM É ────────────────────────────── */
.for-who-section {
    background: #fff;
    padding: 70px 0;
}
.for-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 820px;
    margin: 0 auto;
}
.for-who-subtitle {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}
.for-who-pain { background: #fce4ec; border-radius: 16px; padding: 28px 24px; border-top: 5px solid var(--magenta); }
.for-who-desire { background: #e8f5e9; border-radius: 16px; padding: 28px 24px; border-top: 5px solid var(--green-mid); }
.for-who-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.96rem;
    line-height: 1.5;
    color: var(--text-dark);
}
.for-who-emoji { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }

/* ────────────────────────────── PRICING ────────────────────────────── */
.pricing-plans {
    background: var(--light-bg);
    padding: 70px 0;
}

.plans-timer {
    text-align: center;
    margin-bottom: 36px;
}
.timer-text {
    font-weight: 700;
    font-size: 1rem;
    color: var(--magenta-dark);
    margin-bottom: 12px;
}
.countdown-plans {
    display: inline-flex;
    gap: 12px;
    background: var(--magenta-dark);
    padding: 14px 28px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(136,14,79,0.35);
}
.time-unit { text-align: center; }
.time-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.time-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plans-grid { display: flex; justify-content: center; }
.single-plan { width: 100%; }

.plan-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.12);
    position: relative;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
}
.plan-card.popular {
    border: 3px solid var(--magenta);
    transform: none;
}
.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--magenta);
    color: #fff;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 22px;
    border-radius: 50px;
    white-space: nowrap;
}
.plan-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.price { text-align: center; margin-bottom: 14px; }
.old-price {
    display: block;
    text-decoration: line-through;
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 4px;
}
.new-price {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--magenta);
    line-height: 1;
    margin-bottom: 4px;
}
.period { display: block; color: #777; font-size: 0.85rem; margin-bottom: 8px; }
.savings-amount {
    display: inline-block;
    background: #e8f5e9;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 4px 14px;
    border-radius: 50px;
}
.premium-social-proof {
    text-align: center;
    margin-bottom: 20px;
}
.purchase-count {
    background: var(--light-bg);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--green-dark);
    border: 1px solid #c8e6c9;
}
.plan-features {
    list-style: none;
    margin-bottom: 28px;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.93rem;
    color: var(--text-dark);
}
.plan-features li i { color: var(--green-mid); flex-shrink: 0; margin-top: 3px; }
.plan-features li.bonus-item i { color: var(--magenta); }
.plan-features li.gold-item { font-weight: 700; }
.plan-features li.gold-item i { color: var(--gold); }

.plan-button {
    display: block;
    width: 100%;
    padding: 18px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.premium-button {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: #fff;
    box-shadow: 0 6px 24px rgba(27,94,32,0.4);
    animation: pulse 2.2s ease-in-out infinite;
}
.premium-button:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(27,94,32,0.55); }

.plan-guarantee {
    text-align: center;
    margin-top: 14px;
    font-size: 0.82rem;
    color: #888;
}
.plan-guarantee i { color: var(--green-mid); margin-right: 4px; }

/* ────────────────────────────── DEPOIMENTOS ────────────────────────────── */
.testimonials {
    background: #fff;
    padding: 70px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testimonial-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 24px 22px;
    border-top: 4px solid var(--magenta);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 12px; }
.testimonial-card p {
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 18px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--magenta);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.testimonial-author span { font-size: 0.8rem; color: #888; }

/* ────────────────────────────── FAQ ────────────────────────────── */
.faq {
    background: var(--light-bg);
    padding: 70px 0;
}
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.faq-question:hover { background: #fce4ec; }
.faq-question h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.faq-question i { color: var(--magenta); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
    padding: 0 22px 20px;
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ────────────────────────────── GARANTIA ────────────────────────────── */
.guarantee {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    padding: 70px 0;
}
.guarantee-content {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.5);
    position: relative;
    margin-bottom: 20px;
}
.guarantee-badge i { font-size: 2rem; color: #fff; }
.badge-text {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: var(--magenta);
    color: #fff;
    border-radius: 50px;
    padding: 2px 10px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}
.badge-number { font-size: 1.1rem; font-weight: 900; }
.guarantee h2 { font-size: 1.8rem; color: #fff; margin-bottom: 14px; font-weight: 800; }
.guarantee p { color: rgba(255,255,255,0.88); font-size: 1rem; margin-bottom: 28px; line-height: 1.65; }
.guarantee-cta { background: var(--magenta); box-shadow: 0 6px 24px rgba(136,14,79,0.4); }
.guarantee-cta:hover { box-shadow: 0 10px 32px rgba(136,14,79,0.55); }

/* ────────────────────────────── FOOTER ────────────────────────────── */
.footer {
    background: #111;
    color: rgba(255,255,255,0.6);
    padding: 28px 0;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.8;
}

/* ────────────────────────────── NOTIFICATIONS ────────────────────────────── */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.notification {
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    max-width: 300px;
    border-left: 4px solid var(--magenta);
    animation: fadeInUp 0.4s ease;
}
.notification-icon { font-size: 1.4rem; }
.notification strong { display: block; color: var(--text-dark); }
.notification span { color: #888; }

/* ────────────────────────────── SCROLL ANIMATIONS ────────────────────────────── */
.animate-ready {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-ready.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ────────────────────────────── EXIT INTENT POPUP ────────────────────────────── */
.exit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.exit-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}
.exit-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-top: 6px solid var(--magenta);
    animation: fadeInUp 0.4s ease;
}
.exit-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}
.exit-close:hover { color: #555; }
.exit-badge {
    display: inline-block;
    background: #fff3e0;
    color: #e65100;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid #ffcc80;
}
.exit-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--magenta-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}
.exit-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}
.exit-price-box {
    background: linear-gradient(135deg, #fce4ec, #fff);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 18px;
    border: 2px solid #f48fb1;
}
.exit-old-price {
    display: block;
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.exit-new-price {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--magenta);
}
.exit-list {
    list-style: none;
    text-align: left;
    margin-bottom: 22px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 14px 18px;
}
.exit-list li {
    font-size: 0.92rem;
    color: var(--text-dark);
    padding: 4px 0;
    font-weight: 600;
}
.exit-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(27,94,32,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse 2.2s ease-in-out infinite;
}
.exit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(27,94,32,0.5); }
.exit-disclaimer {
    font-size: 0.78rem;
    color: #aaa;
    margin-bottom: 12px;
}
.exit-decline {
    background: none;
    border: none;
    font-size: 0.78rem;
    color: #bbb;
    cursor: pointer;
    text-decoration: underline;
}
.exit-decline:hover { color: #888; }

/* ────────────────────────────── RESPONSIVE ────────────────────────────── */
@media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
    .hero-challenge { font-size: 1.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { font-size: 1rem; padding: 16px 28px; }
    .section-title { font-size: 1.7rem; }
    .checklist-grid { grid-template-columns: 1fr; }
    .focus-grid { grid-template-columns: 1fr; }
    .phases-grid { grid-template-columns: 1fr; }
    .soups-grid { grid-template-columns: repeat(2, 1fr); }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .for-who-grid { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .author-layout { grid-template-columns: 1fr; }
    .author-image-wrap { max-width: 300px; margin: 0 auto; }
    .plan-card { padding: 28px 20px; }
    .new-price { font-size: 2.4rem; }
    .countdown-plans { padding: 10px 16px; }
    .time-number { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .bonus-grid { grid-template-columns: 1fr; }
    .soups-grid { grid-template-columns: 1fr 1fr; }
    .results-grid { grid-template-columns: 1fr 1fr; }
}
