/* ProstaDefend Version 2 - Fresh Design */
:root {
    --navy: #0d1b2a;
    --blue: #1b4965;
    --sky: #5fa8d3;
    --light: #cae9ff;
    --pale: #f0f7fc;
    --orange: #ff6b35;
    --orange-dark: #e85a2a;
    --green: #2ecc71;
    --gold: #f4c430;
    --red: #e74c3c;
    --white: #ffffff;
    --gray: #6c757d;
    --dark: #1a1a2e;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 10px;
    --radius-lg: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 19px;
    line-height: 1.75;
    color: #000;
    background: var(--white);
}

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

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, var(--navy), var(--blue));
    color: var(--white);
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
}
.top-banner a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* Header */
.site-header {
    background: var(--white);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--sky), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-icon svg { width: 24px; height: 24px; fill: var(--white); }
.brand-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.5px;
}
.main-nav { display: flex; gap: 28px; }
.main-nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}
.main-nav a:hover { color: var(--sky); }
.nav-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}
.nav-cta:hover { transform: translateY(-2px); }

/* Hero */
.main-hero {
    background: linear-gradient(180deg, var(--pale) 0%, var(--white) 100%);
    padding: 55px 0 70px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.hero-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #e6b800);
    color: var(--navy);
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}
.main-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 25px;
}
.main-hero h1 span { color: var(--blue); }
.hero-desc {
    font-size: 21px;
    color: #000;
    margin-bottom: 28px;
    line-height: 1.75;
}
.hero-points {
    list-style: none;
    margin-bottom: 32px;
}
.hero-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 19px;
    font-weight: 500;
    color: #000;
}
.hero-points svg { width: 20px; height: 20px; fill: var(--green); flex-shrink: 0; }
.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
}
.hero-note svg { width: 20px; height: 20px; fill: var(--green); flex-shrink: 0; }
.hero-visual { text-align: center; position: relative; }
.hero-visual > img {
    max-width: 100%;
    width: 420px;
    height: auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: float 4s ease-in-out infinite;
    object-fit: contain;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.rating-card {
    position: absolute;
    bottom: 15px;
    right: 5px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.rating-score { font-size: 26px; font-weight: 800; color: var(--navy); }
.rating-stars { color: var(--gold); font-size: 15px; }
.rating-count { font-size: 10px; color: var(--gray); }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(255,107,53,0.3);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}
.btn-primary svg { width: 20px; height: 20px; fill: var(--white); flex-shrink: 0; }
.btn-primary.large { padding: 20px 44px; font-size: 19px; }
.btn-secondary {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
.btn-secondary:hover { transform: translateY(-2px); }

/* Stats Bar */
.stats-bar {
    background: var(--navy);
    padding: 45px 0;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}
.stat-box { color: var(--white); }
.stat-num { display: block; font-size: 36px; font-weight: 800; margin-bottom: 6px; }
.stat-text { font-size: 13px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }

/* Trust Strip */
.trust-strip {
    padding: 45px 0;
    background: var(--white);
    border-bottom: 1px solid #e8e8e8;
}
.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 16px;
    background: var(--pale);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
}
.trust-item svg { width: 24px; height: 24px; fill: var(--blue); flex-shrink: 0; }

/* Section Headers */
.section-top {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 45px;
}
.section-top.light { color: var(--white); }
.section-top.light h2 { color: var(--white); }
.section-top.light p { color: rgba(255,255,255,0.85); }
.section-label {
    display: inline-block;
    background: var(--light);
    color: var(--blue);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.section-label.red { background: #fdeaea; color: var(--red); }
.section-label.green { background: #e8f8ef; color: var(--green); }
.section-label.gold { background: rgba(244,196,48,0.2); color: var(--gold); }
.section-top h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-top p { font-size: 19px; color: #000; }

/* About Section */
.about-section {
    padding: 90px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}
.info-block {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}
.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-icon svg { width: 20px; height: 20px; fill: var(--white); }
.info-text h3 { font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.info-text p { font-size: 17px; color: #000; line-height: 1.7; }
.about-visual { text-align: center; position: relative; }
.about-visual img {
    max-width: 100%;
    width: 320px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.12));
    object-fit: contain;
}
.visual-tag {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    gap: 14px;
}

/* Process Section */
.process-section {
    padding: 90px 0;
    background: var(--pale);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.process-box {
    background: var(--white);
    padding: 32px 22px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s ease;
}
.process-box:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-num {
    position: absolute;
    top: -10px;
    left: 22px;
    background: var(--blue);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}
.process-icon {
    width: 55px;
    height: 55px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 18px;
}
.process-icon svg { width: 26px; height: 26px; fill: var(--blue); }
.process-box h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.process-box p { font-size: 16px; color: #000; line-height: 1.7; }

/* Compare Section */
.compare-section {
    padding: 90px 0;
    background: var(--white);
}
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}
.compare-bad, .compare-good {
    padding: 38px;
    border-radius: var(--radius-lg);
}
.compare-bad { background: #fef2f2; }
.compare-good { background: #e8f8ef; }
.compare-bad h2, .compare-good h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 22px;
}
.compare-list { list-style: none; }
.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 17px;
    color: #000;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.compare-list li:last-child { border-bottom: none; }
.compare-list.bad svg { width: 18px; height: 18px; fill: var(--red); flex-shrink: 0; margin-top: 3px; }
.compare-list.good svg { width: 18px; height: 18px; fill: var(--green); flex-shrink: 0; margin-top: 3px; }

/* Ingredients Section */
.ingredients-section {
    padding: 90px 0;
    background: var(--navy);
}
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 45px;
}
.ingredient-box {
    background: rgba(255,255,255,0.05);
    padding: 32px 22px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: all 0.3s ease;
}
.ingredient-box:hover { background: rgba(255,255,255,0.1); }
.ing-icon { font-size: 42px; margin-bottom: 16px; }
.ingredient-box h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.ingredient-box p { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.7; }
.ing-cta { text-align: center; }

/* Founder Section */
.founder-section {
    padding: 90px 0;
    background: var(--pale);
}
.founder-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 45px;
    align-items: start;
}
.founder-photo { text-align: center; position: relative; }
.founder-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
}
.founder-tag {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    padding: 7px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
}
.founder-story h2 { font-size: 34px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.founder-story p { font-size: 18px; color: #000; margin-bottom: 18px; line-height: 1.75; }
.founder-sig {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 2px solid var(--blue);
}
.founder-sig span { display: block; }
.founder-sig span:first-child { font-size: 20px; font-style: italic; color: var(--navy); font-weight: 600; }
.founder-sig span:last-child { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* Guarantee Strip */
.guarantee-strip {
    padding: 65px 0;
    background: linear-gradient(135deg, var(--green), #27ae60);
}
.guarantee-inner {
    display: flex;
    align-items: center;
    gap: 35px;
    color: var(--white);
}
.guarantee-seal {
    width: 140px;
    height: 140px;
    min-width: 140px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.guarantee-seal svg { width: 36px; height: 36px; fill: var(--green); margin-bottom: 4px; }
.guarantee-seal span { display: block; font-weight: 800; color: var(--navy); }
.guarantee-seal span:first-of-type { font-size: 20px; }
.guarantee-seal span:last-of-type { font-size: 11px; }
.guarantee-text h2 { font-size: 34px; font-weight: 800; margin-bottom: 16px; }
.guarantee-text p { font-size: 18px; line-height: 1.75; opacity: 0.95; }

/* Reviews Section */
.reviews-section {
    padding: 90px 0;
    background: var(--white);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 45px;
}
.review-box {
    background: var(--white);
    padding: 32px 22px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
}
.review-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-box.featured { border: 2px solid var(--gold); position: relative; }
.featured-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
}
.review-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--blue);
}
.review-photo img { width: 100%; height: 100%; object-fit: cover; }
.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: 16px; color: #000; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-author strong { font-size: 16px; color: var(--navy); display: block; margin-bottom: 4px; }
.review-author span { display: block; font-size: 12px; color: var(--gray); }
.verified-badge { color: var(--green); font-weight: 600; margin-top: 4px; }
.reviews-cta { text-align: center; }

/* Pricing Section */
.pricing-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--pale) 0%, var(--white) 100%);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
}
.price-box {
    background: var(--white);
    padding: 32px 22px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.price-box:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.price-box.best { border-color: var(--orange); transform: scale(1.03); }
.price-box.best:hover { transform: scale(1.03) translateY(-8px); }
.best-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}
.price-head h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.price-head span { color: var(--gray); font-size: 13px; }
.price-img { margin: 14px 0; }
.price-img img { max-height: 145px; width: auto; }
.price-cost { margin-bottom: 14px; }
.old-price { display: block; font-size: 15px; color: var(--gray); text-decoration: line-through; }
.new-price { display: block; font-size: 48px; font-weight: 800; color: var(--navy); line-height: 1; }
.per-unit { font-size: 14px; color: var(--gray); }
.savings-pill {
    background: var(--green);
    color: var(--white);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
}
.price-perks { list-style: none; text-align: left; margin-bottom: 18px; }
.price-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    color: #000;
    border-bottom: 1px solid #f2f2f2;
}
.price-perks li:last-child { border-bottom: none; }
.price-perks svg { width: 18px; height: 18px; fill: var(--green); flex-shrink: 0; }
.stock-note { font-size: 11px; color: var(--orange); font-weight: 600; margin-top: 12px; display: block; }

/* Bonus Section */
.bonus-section {
    padding: 90px 0;
    background: var(--navy);
}
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.bonus-box {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}
.free-ribbon {
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--green);
    color: var(--white);
    padding: 4px 32px;
    font-size: 10px;
    font-weight: 700;
    transform: rotate(45deg);
}
.bonus-img img { width: 100px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.bonus-info h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.bonus-info p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 10px; }
.bonus-worth { display: block; color: var(--gold); font-weight: 700; font-size: 13px; margin-bottom: 16px; }

/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background: var(--white);
}
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid #eee;
}
.faq-q {
    width: 100%;
    padding: 22px 24px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
}
.faq-q svg { width: 22px; height: 22px; fill: var(--blue); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 350px; }
.faq-a p { padding: 0 24px 22px; font-size: 17px; color: #000; line-height: 1.75; }

/* Final Section */
.final-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    text-align: center;
    color: var(--white);
}
.final-section h2 { font-size: 42px; font-weight: 800; margin-bottom: 18px; }
.final-section > .container > p { font-size: 19px; opacity: 0.9; max-width: 650px; margin: 0 auto 35px; }
.final-img img {
    max-width: 380px;
    margin-bottom: 32px;
    filter: drop-shadow(0 14px 28px rgba(0,0,0,0.2));
}
.final-perks {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}
.final-perks span { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.final-perks svg { width: 18px; height: 18px; fill: var(--green); }

/* Footer */
.site-footer {
    background: #050910;
    color: rgba(255,255,255,0.7);
    padding: 65px 0 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 38px;
    margin-bottom: 38px;
}
.footer-about p { margin-top: 16px; font-size: 13px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 22px;
    text-align: center;
}
.footer-bottom p { font-size: 12px; margin-bottom: 10px; }
.legal-text { font-size: 10px; max-width: 820px; margin: 0 auto; opacity: 0.55; line-height: 1.6; }

/* Toast Popup */
.toast-popup {
    position: fixed;
    bottom: 22px;
    left: 22px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 9999;
    transform: translateX(-150%);
    transition: transform 0.5s ease;
    max-width: 300px;
}
.toast-popup.show { transform: translateX(0); }
.toast-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toast-icon svg { width: 20px; height: 20px; fill: var(--white); }
.toast-msg p { font-size: 13px; color: #000; margin: 0; }
.toast-msg span { font-size: 11px; color: var(--gray); }

/* Exit Overlay */
.exit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.exit-overlay.show { opacity: 1; visibility: visible; }
.exit-box {
    background: var(--white);
    padding: 42px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 420px;
    position: relative;
    transform: scale(0.85);
    transition: transform 0.3s ease;
}
.exit-overlay.show .exit-box { transform: scale(1); }
.exit-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--gray);
    cursor: pointer;
}
.exit-box h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.exit-box > p { font-size: 14px; color: #000; margin-bottom: 20px; }
.exit-box img { max-width: 170px; margin-bottom: 20px; }
.exit-small { font-size: 11px; color: var(--gray); margin-top: 12px; }

/* Sticky CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 15px;
    left: auto;
    background: transparent;
    padding: 0;
    z-index: 9998;
}
.sticky-cta .btn-primary { 
    padding: 16px 24px; 
    font-size: 16px; 
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(255,107,53,0.5);
}

.mobile-fire-btn {
    animation: fireGlow 1.5s ease-in-out infinite;
}

@keyframes fireGlow {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(255,107,53,0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 30px rgba(255,107,53,0.8), 0 0 40px rgba(255,107,53,0.4);
        transform: scale(1.05);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .main-nav { display: none; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .main-hero h1 { font-size: 34px; }
    .hero-points { display: inline-block; text-align: left; }
    .hero-actions { justify-content: center; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .trust-row { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { order: -1; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .compare-grid { grid-template-columns: 1fr; }
    .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
    .founder-grid { grid-template-columns: 1fr; text-align: center; }
    .guarantee-inner { flex-direction: column; text-align: center; }
    .reviews-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .price-box.best { transform: none; order: -1; }
    .bonus-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .site-header { display: none !important; }
    .top-banner { display: none !important; }
    .main-hero { padding: 38px 0 55px; }
    .main-hero h1 { font-size: 28px; }
    .hero-desc { font-size: 16px; }
    .section-top h2 { font-size: 26px; }
    .stat-num { font-size: 30px; }
    .process-grid { grid-template-columns: 1fr; }
    .ingredients-grid { grid-template-columns: 1fr; }
    .bonus-box { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .final-perks { flex-direction: column; gap: 12px; }
    .sticky-cta { display: block !important; }
    .site-footer { padding-bottom: 85px; }
}

@media (max-width: 480px) {
    .main-hero h1 { font-size: 24px; }
    .hero-points li { font-size: 14px; }
    .btn-primary { padding: 14px 24px; font-size: 14px; }
    .section-top h2 { font-size: 22px; }
    .new-price { font-size: 40px; }
    .toast-popup { left: 12px; right: 12px; bottom: 80px; max-width: none; }
    .exit-box { padding: 28px 18px; margin: 14px; }
}
