/* ===== DESIGN TOKENS ===== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: rgba(255,255,255,0.04);
    --bg-card-hover: rgba(255,255,255,0.08);
    --text-primary: #f5f5f5;
    --text-secondary: #a3a3a3;
    --text-muted: #737373;
    --accent-red: #DC2626;
    --accent-red-dark: #991B1B;
    --accent-pink: #E11D48;
    --accent-gold: #D4A574;
    --accent-gold-light: #F5DEB3;
    --gradient-fire: linear-gradient(135deg, #DC2626, #E11D48);
    --gradient-gold: linear-gradient(135deg, #D4A574, #F5DEB3);
    --glass-border: rgba(255,255,255,0.08);
    --glass-shadow: 0 8px 32px rgba(0,0,0,0.4);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== PARTICLES CANVAS ===== */
#particles-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none; opacity: 0.4;
}

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { position: relative; z-index: 1; padding: 80px 0; }

/* ===== TOP BAR & URGENCY ===== */
.top-bar {
    background: #1a1a1a; text-align: center; padding: 10px 16px;
    font-size: 0.8rem; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative; z-index: 10;
}
.urgency-bar {
    background: linear-gradient(90deg, #991B1B, #DC2626, #991B1B);
    background-size: 200% 100%; animation: urgencySlide 3s ease infinite;
    text-align: center; padding: 12px 16px; font-size: 0.85rem;
    color: #fff; font-weight: 600; position: sticky; top: 0; z-index: 100;
    box-shadow: 0 4px 20px rgba(220,38,38,0.3);
}
@keyframes urgencySlide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===== HERO EXTRAS ===== */
.hero-warning {
    display: inline-block; padding: 6px 16px; border-radius: 4px;
    background: rgba(220,38,38,0.2); border: 1px solid rgba(220,38,38,0.5);
    font-size: 0.75rem; font-weight: 700; color: #ef4444; letter-spacing: 1.5px;
    margin-bottom: 16px; text-transform: uppercase;
}
.hero-proof {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px;
}
.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
    animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.image-badge {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
    border: 1px solid var(--accent-gold); border-radius: 6px;
    padding: 6px 14px; font-size: 0.7rem; font-weight: 700;
    color: var(--accent-gold-light); letter-spacing: 1px; text-transform: uppercase;
}

/* ===== CALLOUT BOXES ===== */
.callout-box {
    background: rgba(220,38,38,0.06); border: 1px solid rgba(220,38,38,0.2);
    border-radius: var(--radius-md); padding: 28px 32px; margin-top: 20px;
    text-align: center;
}
.callout-box.callout-danger {
    background: rgba(220,38,38,0.1); border-color: rgba(220,38,38,0.4);
}
.callout-text {
    font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8;
}
.section-callout { padding: 40px 0; }

/* ===== COUNTDOWN BOX ===== */
.countdown-box {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin: 24px auto 0; padding: 20px; max-width: 400px;
    background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.3);
    border-radius: var(--radius-md);
}
.countdown-item {
    text-align: center; min-width: 60px;
}
.countdown-item span {
    display: block; font-family: var(--font-heading); font-size: 2.2rem;
    font-weight: 800; color: #ef4444; line-height: 1;
}
.countdown-item small {
    font-size: 0.65rem; color: var(--text-muted); letter-spacing: 2px;
    text-transform: uppercase;
}
.countdown-sep {
    font-size: 2rem; font-weight: 700; color: #ef4444; opacity: 0.5;
    padding-bottom: 14px;
}

/* ===== PRICING SAVINGS ===== */
.pricing-savings {
    font-size: 0.85rem; font-weight: 700; color: #22c55e;
    margin: -16px 0 20px; animation: btnPulse 2s infinite;
}
.product-desc {
    font-size: 1rem; color: var(--text-secondary); line-height: 1.7;
    margin-bottom: 20px;
}

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px; color: var(--accent-gold);
    margin-bottom: 12px; text-align: center;
}
.section-title {
    font-family: var(--font-heading); font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700; text-align: center; margin-bottom: 16px; line-height: 1.3;
}
.section-subtitle {
    font-size: 1.05rem; color: var(--text-secondary); text-align: center;
    max-width: 600px; margin: 0 auto 48px;
}
.text-gradient {
    background: var(--gradient-fire); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-md); backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-4px); border-color: rgba(255,255,255,0.15);
    background: var(--bg-card-hover);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 16px 32px; border-radius: 50px; font-family: var(--font-body);
    font-size: 1rem; font-weight: 700; cursor: pointer; border: none;
    transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px;
}
.btn-primary {
    background: var(--gradient-fire); color: #fff;
    box-shadow: 0 4px 20px rgba(220,38,38,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px); box-shadow: 0 8px 30px rgba(220,38,38,0.5);
}
.btn-secondary {
    background: transparent; color: var(--text-primary);
    border: 2px solid var(--glass-border);
}
.btn-secondary:hover {
    border-color: var(--accent-gold); color: var(--accent-gold);
    transform: translateY(-2px);
}
.btn-large { padding: 20px 40px; font-size: 1.1rem; }
.btn-glow { animation: btnPulse 2.5s ease-in-out infinite; }
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(220,38,38,0.3); }
    50% { box-shadow: 0 4px 40px rgba(225,29,72,0.6); }
}
.btn-shimmer { position: relative; overflow: hidden; }
.btn-shimmer::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2.5s ease-in-out infinite;
}
@keyframes shimmer { 100% { left: 100%; } }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; flex-direction: column; align-items: center;
    justify-content: center; text-align: center; padding: 80px 20px 60px;
    position: relative; overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(220,38,38,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 80%, rgba(212,165,116,0.08) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
    display: inline-block; padding: 8px 20px; border-radius: 50px;
    background: rgba(220,38,38,0.15); border: 1px solid rgba(220,38,38,0.3);
    font-size: 0.85rem; font-weight: 600; color: var(--accent-gold-light);
    margin-bottom: 24px; animation: fadeInDown 0.8s ease;
}
.hero-title {
    font-family: var(--font-heading); font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800; line-height: 1.15; margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8;
    margin-bottom: 32px;
}
.hero-guarantee {
    margin-top: 16px; font-size: 0.85rem; color: var(--text-muted);
}
.hero-image-wrapper {
    position: relative; z-index: 1; margin-top: 40px; max-width: 550px;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 20px 60px rgba(220,38,38,0.15);
}
.hero-image { border-radius: var(--radius-lg); }

/* ===== PROBLEMS ===== */
.section-problems { background: var(--bg-secondary); }
.problems-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px; margin: 40px 0;
}
.problem-card { padding: 32px 24px; text-align: center; }
.problem-icon { font-size: 2.5rem; margin-bottom: 16px; }
.problem-card h3 {
    font-family: var(--font-heading); font-size: 1.2rem;
    margin-bottom: 12px; color: var(--text-primary);
}
.problem-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.section-cta-text {
    text-align: center; font-size: 1.1rem; color: var(--text-secondary);
    margin-top: 32px; max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ===== DESIRE / IMAGINE ===== */
.section-desire {
    background: var(--bg-primary);
    background-image: radial-gradient(ellipse at 30% 50%, rgba(220,38,38,0.06) 0%, transparent 50%),
                      radial-gradient(ellipse at 70% 50%, rgba(212,165,116,0.04) 0%, transparent 50%);
}
.desire-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: center; margin: 48px 0;
}
.desire-img-wrapper {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 20px 60px rgba(220,38,38,0.2);
}
.desire-img-wrapper img { width: 100%; display: block; }
.desire-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.4) 0%, transparent 50%);
    pointer-events: none;
}
.desire-text {
    font-size: 1.1rem; color: var(--text-secondary); line-height: 1.9;
    margin-bottom: 16px;
}
.desire-highlight {
    font-family: var(--font-heading); font-size: 1.4rem;
    color: var(--text-primary); font-weight: 700; line-height: 1.4;
    margin: 24px 0;
}
.desire-text-small {
    font-size: 0.95rem; color: var(--text-muted); font-style: italic;
}
.desire-scene {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    margin: 48px 0; max-height: 350px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.desire-scene img { width: 100%; display: block; object-fit: cover; max-height: 350px; }
.desire-scene-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.5) 100%);
    padding: 40px;
}
.desire-scene-text {
    font-family: var(--font-heading); font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-primary); text-align: center; font-style: italic;
    max-width: 600px; line-height: 1.5;
}
.desire-cta { text-align: center; margin-top: 40px; }
.desire-cta-text {
    font-family: var(--font-heading); font-size: 1.3rem; color: var(--text-primary);
    margin-bottom: 20px;
}

/* ===== PRODUCT ===== */
.section-product {
    background: var(--bg-secondary);
    background-image: radial-gradient(ellipse at 30% 50%, rgba(212,165,116,0.06) 0%, transparent 50%);
}
.product-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.product-image {
    position: relative; border-radius: var(--radius-lg); overflow: visible;
}
.product-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(220,38,38,0.15), 0 0 80px rgba(212,165,116,0.08);
    border: 1px solid rgba(212,165,116,0.15);
    transition: transform 0.5s ease;
}
.product-image:hover img { transform: scale(1.02); }
.product-image::after {
    content: ''; position: absolute; inset: -2px; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(212,165,116,0.2), transparent 50%, rgba(220,38,38,0.15));
    z-index: -1; filter: blur(20px); opacity: 0.6;
}
.product-info .section-eyebrow, .product-info .section-title { text-align: left; }
.product-info .section-title { margin-bottom: 20px; }
.check-list { margin: 24px 0 32px; }
.check-list li {
    padding: 10px 16px; font-size: 1rem; color: var(--text-secondary);
    display: flex; align-items: flex-start; gap: 12px;
    background: rgba(255,255,255,0.02); border-radius: 8px;
    margin-bottom: 6px; border-left: 3px solid rgba(34,197,94,0.3);
    transition: border-color 0.3s, background 0.3s;
}
.check-list li:hover {
    border-left-color: #22c55e; background: rgba(255,255,255,0.04);
}
.check { color: #22c55e; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

/* ===== BONUS ===== */
.section-bonus { background: var(--bg-secondary); }
.bonus-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; margin: 40px 0;
}
.bonus-card {
    padding: 28px 20px; text-align: center; position: relative; overflow: hidden;
}
.bonus-card:hover { border-color: var(--accent-gold); }
.bonus-badge {
    position: absolute; top: 12px; right: 12px; background: var(--gradient-fire);
    color: #fff; font-size: 0.7rem; font-weight: 700; padding: 4px 10px;
    border-radius: 50px; animation: btnPulse 2s infinite;
}
.bonus-number {
    font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800;
    background: var(--gradient-gold); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text; opacity: 0.3;
    margin-bottom: 8px;
}
.bonus-card h3 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 10px; }
.bonus-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.bonus-image {
    max-width: 700px; margin: 40px auto 0; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ===== STEPS ===== */
.steps-grid {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin-top: 48px; flex-wrap: wrap;
}
.step-card {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: var(--radius-md); padding: 32px 24px; text-align: center;
    flex: 1; min-width: 200px; max-width: 280px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--accent-gold); }
.step-number {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%; background: var(--gradient-fire);
    color: #fff; font-weight: 700; font-size: 0.9rem; margin-bottom: 12px;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-card h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; color: var(--text-secondary); }
.step-connector { font-size: 1.5rem; color: var(--accent-gold); opacity: 0.5; }

/* ===== PRICING ===== */
.section-pricing {
    background: var(--bg-secondary);
    background-image: radial-gradient(ellipse at 50% 0%, rgba(220,38,38,0.08) 0%, transparent 50%);
}
.pricing-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    max-width: 800px; margin: 48px auto 0; align-items: start;
}
.pricing-card { padding: 36px 28px; text-align: center; position: relative; }
.pricing-card-premium {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 40px rgba(212,165,116,0.1), var(--glass-shadow);
}
.pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-gold); color: #000; font-size: 0.75rem;
    font-weight: 700; padding: 6px 20px; border-radius: 50px;
    white-space: nowrap;
}
.pricing-header h3 {
    font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 20px;
}
.pricing-price { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.price-old {
    display: block; text-align: center; font-size: 0.9rem;
    color: var(--text-muted); text-decoration: line-through;
    margin-bottom: 4px; width: 100%;
    position: absolute; top: 90px;
}
.pricing-card-premium .pricing-price { margin-top: 20px; }
.price-currency { font-size: 1.2rem; font-weight: 600; color: var(--accent-gold); }
.price-value {
    font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800;
    background: var(--gradient-gold); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1;
}
.price-cents { font-size: 1.4rem; font-weight: 700; color: var(--accent-gold); }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); margin: 8px 0 24px; }
.pricing-features { margin-bottom: 28px; text-align: left; }
.pricing-features li {
    padding: 6px 0; font-size: 0.92rem; color: var(--text-secondary);
    display: flex; align-items: center; gap: 10px;
}
.feat-check { color: #22c55e; font-weight: 700; flex-shrink: 0; }
.feat-check.gold { color: var(--accent-gold); }
.feat-gift { flex-shrink: 0; font-size: 1.1rem; }
.feat-x { color: var(--text-muted); }
.feat-disabled { opacity: 0.5; }

.pricing-subtitle {
    font-size: 0.8rem; font-weight: 800; color: #22c55e;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 12px; text-align: left;
}
.mt-4 { margin-top: 24px; }
.pricing-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 24px 0; }
.pricing-features-bottom li { font-weight: 800; color: #22c55e; text-transform: uppercase; font-size: 0.95rem; }
.pricing-features-bottom li span { font-size: 1.2rem; }
.pricing-guarantee {
    margin-top: 16px; font-size: 0.8rem; color: var(--text-muted);
}
.trust-badges {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 20px;
    margin-top: 48px;
}
.trust-badge {
    display: flex; align-items: center; gap: 8px; font-size: 0.85rem;
    color: var(--text-muted); background: var(--bg-card); padding: 10px 18px;
    border-radius: 50px; border: 1px solid var(--glass-border);
}
.trust-icon { font-size: 1.1rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px; margin-top: 48px;
}
.testimonial-card { padding: 28px 24px; }
.testimonial-stars { color: #facc15; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
    font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7;
    font-style: italic; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 42px; height: 42px; border-radius: 50%; background: var(--gradient-fire);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; color: #fff; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 700px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { overflow: hidden; }
.faq-question {
    width: 100%; padding: 18px 24px; background: transparent; border: none;
    color: var(--text-primary); font-family: var(--font-body); font-size: 1rem;
    font-weight: 600; cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; text-align: left; transition: color 0.3s;
}
.faq-question:hover { color: var(--accent-gold); }
.faq-icon {
    font-size: 1.4rem; font-weight: 300; transition: transform 0.3s;
    color: var(--accent-gold); flex-shrink: 0; margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}
.faq-item.active .faq-answer { max-height: 200px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== FINAL CTA ===== */
.section-final-cta {
    background: radial-gradient(ellipse at 50% 50%, rgba(220,38,38,0.1) 0%, transparent 60%);
    text-align: center;
}
.final-cta-content h2 {
    font-family: var(--font-heading); font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 16px;
}
.final-cta-content p { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 28px; }
.final-cta-sub { margin-top: 16px; font-size: 0.85rem; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
    padding: 40px 20px; text-align: center;
    border-top: 1px solid var(--glass-border);
}
.footer-brand {
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
    background: var(--gradient-gold); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 12px;
}
.footer-legal { font-size: 0.8rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 8px; }
.footer-copy { font-size: 0.75rem; color: var(--text-muted); }

/* ===== ANIMATIONS ===== */
.animate-fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease forwards; }
.delay-200 { animation-delay: 0.2s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== BEFORE / AFTER ===== */
.before-after-grid {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px;
    align-items: stretch; margin: 48px 0;
}
.ba-card {
    padding: 32px 24px; border-radius: var(--radius-md);
}
.ba-card-before {
    background: rgba(220,38,38,0.06); border: 1px solid rgba(220,38,38,0.2);
}
.ba-card-after {
    background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.2);
}
.ba-label {
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 16px;
}
.ba-card-before .ba-label { color: #ef4444; }
.ba-card-after .ba-label { color: #22c55e; }
.ba-card ul { display: flex; flex-direction: column; gap: 10px; }
.ba-card li {
    font-size: 0.92rem; color: var(--text-secondary); line-height: 1.5;
    display: flex; align-items: flex-start; gap: 8px;
}
.ba-icon-bad { color: #ef4444; flex-shrink: 0; }
.ba-icon-good { color: #22c55e; flex-shrink: 0; }
.ba-arrow {
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--accent-gold); opacity: 0.5;
}

/* ===== GUARANTEE BOX ===== */
.guarantee-box {
    background: rgba(34,197,94,0.05); border: 1px solid rgba(34,197,94,0.2);
    border-radius: var(--radius-md); padding: 32px; text-align: center;
    margin: 40px auto; max-width: 600px;
}
.guarantee-shield { font-size: 3rem; margin-bottom: 12px; }
.guarantee-title {
    font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700;
    color: #22c55e; margin-bottom: 12px;
}
.guarantee-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }


/* ===== SALES TOAST ===== */
.sales-toast {
    position: fixed; bottom: 20px; left: 20px; z-index: 9999;
    background: rgba(18, 18, 18, 0.9);
    border: 1px solid var(--accent-gold);
    border-radius: var(--radius-md); padding: 12px 18px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    transform: translateY(150px); opacity: 0; pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease;
    backdrop-filter: blur(10px);
    max-width: 320px;
}
.sales-toast.show { transform: translateY(0); opacity: 1; }
.toast-img {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(34,197,94,0.1); border: 1px solid #22c55e;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.toast-icon { font-size: 1.1rem; }
.toast-content { display: flex; flex-direction: column; }
.toast-name { font-size: 0.88rem; color: var(--text-primary); margin: 0 0 2px 0; }
.toast-time { font-size: 0.72rem; color: var(--text-muted); margin: 0; }

/* ===== BLURRED SECRET SECTION ===== */
.section-secret { padding-top: 40px; }
.text-center { text-align: center; }
.blur-container {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--glass-border); box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    margin: 0 auto; max-width: 800px;
}
.blur-image {
    width: 100%; display: block; filter: blur(25px) brightness(0.6);
    transform: scale(1.1); transition: filter 1s ease, transform 1s ease;
}
.blur-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    background: rgba(0,0,0,0.4); padding: 30px; transition: opacity 0.5s ease;
}
.nsfw-badge {
    background: rgba(220, 38, 38, 0.9); color: #fff; padding: 6px 14px; border-radius: 50px;
    font-size: 0.8rem; font-weight: bold; margin-bottom: 16px;
    box-shadow: 0 0 20px rgba(220,38,38,0.6); border: 1px solid #ff4d4d;
}
.blur-overlay h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 12px; }
.blur-overlay p { font-size: 1rem; color: var(--text-secondary); max-width: 400px; margin-bottom: 24px; line-height: 1.5; }
.blur-container.revealed .blur-image { filter: blur(0) brightness(1); transform: scale(1); }
.blur-container.revealed .blur-overlay { opacity: 0; pointer-events: none; }

@media (max-width: 480px) {
    .sales-toast { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .hero { padding: 60px 16px 40px; min-height: auto; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .btn { padding: 14px 24px; font-size: 0.9rem; }
    .btn-large { padding: 16px 28px; font-size: 1rem; }
    .product-wrapper { grid-template-columns: 1fr; gap: 32px; }
    .mobile-order-1 { order: 1; }
    .mobile-order-2 { order: 2; }
    .product-info .section-eyebrow, .product-info .section-title { text-align: center; }
    .product-info { text-align: center; }
    .check-list { margin: 20px 0 28px; }
    .check-list li {
        padding: 12px 14px; font-size: 0.92rem;
        flex-wrap: nowrap; text-align: left;
    }
    .product-info .btn { width: 100%; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .pricing-grid { margin-left: auto; margin-right: auto; }
    .problems-grid { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { flex-direction: column; }
    .step-connector { transform: rotate(90deg); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .trust-badges { gap: 10px; }
    .trust-badge { font-size: 0.78rem; padding: 8px 14px; }
    .desire-grid { grid-template-columns: 1fr; gap: 28px; }
    .desire-highlight { font-size: 1.2rem; }
    .desire-scene { max-height: 250px; }
    .desire-scene-overlay { padding: 20px; }
    .urgency-bar { font-size: 0.75rem; padding: 10px 12px; }
    .callout-box { padding: 20px 16px; }
    .countdown-item span { font-size: 1.8rem; }
    .before-after-grid { grid-template-columns: 1fr; gap: 16px; }
    .ba-arrow { transform: rotate(90deg); font-size: 1.5rem; }
    .ba-card { padding: 24px 20px; }
    .guarantee-box { padding: 24px 20px; margin: 32px 16px; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .bonus-grid { grid-template-columns: 1fr; }
    .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
    .check-list li { font-size: 0.88rem; padding: 10px 12px; }
}

/* ===== UPSELL MODAL ===== */
.upsell-modal-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
    padding: 20px;
}
.upsell-modal-overlay.active { opacity: 1; pointer-events: all; }
.upsell-modal-content {
    background: #0d0d0d; border: 1px solid #1a1a1a;
    border-radius: 16px; padding: 32px 24px;
    max-width: 440px; width: 100%; text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8), 0 0 40px rgba(34,197,94,0.05);
    position: relative; transform: scale(0.95); transition: transform 0.3s ease;
    border-top: 2px solid #22c55e;
}
.upsell-modal-overlay.active .upsell-modal-content { transform: scale(1); }
.upsell-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(34,197,94,0.1); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.upsell-title { font-family: var(--font-heading); font-size: 1.6rem; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.upsell-desc { font-size: 0.95rem; color: #a3a3a3; line-height: 1.6; margin-bottom: 24px; }
.upsell-price-box { margin-bottom: 24px; }
.upsell-old-price { color: #dc2626; text-decoration: line-through; font-size: 0.9rem; margin-bottom: -5px; }
.upsell-new-price { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; color: #22c55e; line-height: 1; text-shadow: 0 0 30px rgba(34,197,94,0.3); margin-bottom: 8px; }
.upsell-timer { font-size: 0.85rem; color: #ef4444; font-weight: 700; letter-spacing: 1px; }
.upsell-benefits {
    background: #141414; border: 1px solid #262626;
    border-radius: 12px; padding: 20px; text-align: left; margin-bottom: 24px;
}
.upsell-benefits ul { list-style: none; padding: 0; margin: 0; }
.upsell-benefits li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #fff; font-weight: 600; padding: 6px 0; }
.btn-green { background: #22c55e; color: #000; box-shadow: 0 0 20px rgba(34,197,94,0.4); font-weight: 800; border: none; width: 100%; margin-bottom: 12px; transition: transform 0.2s, box-shadow 0.2s; }
.btn-green:hover { background: #16a34a; color: #000; box-shadow: 0 0 30px rgba(34,197,94,0.6); transform: scale(1.02); }
.btn-red { background: #dc2626; color: #fff; font-weight: 800; border: none; width: 100%; transition: background 0.2s; }
.btn-red:hover { background: #b91c1c; color: #fff; }
