/* ============================================
   RIQUEZA JUDIA — MASTER STYLESHEET
   ============================================ */

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
    --bg-color: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --text-color: #e0e0e0;
    --text-muted: #999999;
    --gold-primary: #C9A84C;
    --gold-secondary: #b8860b;
    --gold-light: #f0d68a;
    --green-accent: #00C851;
    --green-dark: #28a745;
    --green-glow: rgba(0, 200, 81, 0.4);
    --red-urgent: #e74c3c;
    --red-dark: #8B0000;
    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.3);
    --shadow-green: 0 0 25px rgba(0, 200, 81, 0.4);
    --max-width: 1200px;
}

/* ---- RESET ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* ---- CANVAS BACKGROUND ---- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 { font-size: 3.2rem; color: #fff; text-shadow: 0 2px 15px rgba(0,0,0,0.8), 0 0 40px rgba(201, 168, 76, 0.1); }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.2rem; color: #fff; text-transform: none; letter-spacing: 0; }

p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #bbbbbb;
}

a { text-decoration: none; }

strong { color: var(--gold-primary); }

.gold-text {
    color: var(--gold-primary);
    background: linear-gradient(to bottom, #fceabb 0%, #f0d68a 30%, #C9A84C 50%, #b8860b 70%, #f0d68a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.4));
}

.gold-link { color: var(--gold-primary); text-decoration: underline; }

.highlight {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-primary);
    padding: 2px 8px;
    border-radius: 3px;
}

/* ---- LAYOUT ---- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* ---- STAR DIVIDER ---- */
.star-divider {
    text-align: center;
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin: 15px 0 30px;
    opacity: 0.6;
    letter-spacing: 10px;
}

/* ---- BADGES ---- */
.badge {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: #000;
    padding: 6px 18px;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.5);
    letter-spacing: 1px;
}

.price-badge {
    display: inline-block;
    background: var(--red-urgent);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.price-badge-red {
    display: inline-block;
    background: var(--red-urgent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    vertical-align: middle;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    position: relative;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-nav.left {
    flex: 1;
    justify-content: flex-start;
}

.header-nav.right {
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}

.logo {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 1.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
    flex: 0 0 auto;
}

.header-cta {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: var(--gold-primary);
    color: #000;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .header-nav {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        width: 100%;
    }
    .header-nav.left {
        justify-content: center;
        order: 2;
    }
    .logo {
        order: 1;
        margin-bottom: 5px;
    }
    .header-nav.right {
        justify-content: center;
        order: 3;
    }
    .nav-link {
        font-size: 0.8rem;
    }
}

/* ---- STICKY HEADER ---- */
.sticky-header {
    position: fixed;
    top: -80px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    padding: 12px 0;
    z-index: 9999;
    transition: top 0.4s ease;
}

.sticky-header.visible {
    top: 0;
}

.sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-title {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.sticky-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-price {
    color: #fff;
    font-size: 0.9rem;
}

.sticky-price s {
    color: #666;
    margin-right: 5px;
}

.sticky-btn {
    background: var(--green-accent);
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px var(--green-glow);
}

.sticky-btn:hover {
    background: #00e05c;
    transform: translateY(-1px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 60px 0 100px;
    background: radial-gradient(ellipse at 30% 50%, #1a1a0f 0%, #0a0a05 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%; right: -5%;
    width: 50%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1.2;
    min-width: 320px;
}

.hero-image {
    flex: 0.8;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subheadline {
    font-size: 1.15rem;
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* ---- VIEWERS BADGE ---- */
.viewers-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    color: #ff6b6b;
    margin-bottom: 25px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--red-urgent);
    border-radius: 50%;
    display: inline-block;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(231, 76, 60, 0); }
}

/* ---- BOOK COVER ---- */
.book-container {
    position: relative;
}

.book-cover {
    max-width: 380px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow:
        0 25px 60px rgba(0,0,0,0.8),
        0 0 50px rgba(201, 168, 76, 0.2),
        0 0 100px rgba(201, 168, 76, 0.08);
    transform: perspective(1000px) rotateY(-8deg);
    transition: transform 0.4s ease;
    animation: bookFloat 6s ease-in-out infinite;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.book-container:hover .book-cover {
    animation-play-state: paused;
    transform: perspective(1000px) rotateY(0deg) scale(1.03);
}

@keyframes bookFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-8deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-8deg) translateY(-15px); }
}

/* ============================================
   OFFER BOX
   ============================================ */
.offer-box {
    background: linear-gradient(180deg, rgba(20, 18, 10, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(201, 168, 76, 0.5);
    padding: 35px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.15), inset 0 1px 0 rgba(201, 168, 76, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.05), transparent);
    animation: offerShimmer 4s ease-in-out infinite;
}

@keyframes offerShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.price-container {
    margin: 20px 0;
}

.regular-price {
    font-size: 1.1rem;
    color: #777;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--red-urgent);
    font-size: 1.2rem;
}

.sale-price {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    margin: 5px 0;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.price-note {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0;
}

/* ---- COUNTDOWN TIMER ---- */
.countdown-label {
    font-size: 0.9rem;
    color: var(--red-urgent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    animation: blink 2s infinite;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: 'Courier New', monospace;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.time-unit span {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 8px 14px;
    border-radius: 6px;
    color: var(--red-urgent);
    border: 1px solid #333;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
    min-width: 55px;
    text-align: center;
}

.time-unit small {
    font-size: 0.55rem;
    color: #666;
    margin-top: 5px;
    text-transform: uppercase;
    font-family: var(--font-body);
    letter-spacing: 1px;
}

.time-sep {
    color: var(--red-urgent);
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 15px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   CTA BUTTON
   ============================================ */
.cta-button {
    display: block;
    width: 100%;
    padding: 20px 30px;
    background: linear-gradient(180deg, #00C851 0%, #28a745 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    box-shadow: 0 5px 0 #1e7e34, 0 8px 25px rgba(0, 200, 81, 0.3);
    transition: all 0.2s ease;
    margin: 15px 0;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.08) 50%,
        transparent 70%
    );
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.cta-button:hover {
    background: linear-gradient(180deg, #00e05c 0%, #00C851 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #1e7e34, 0 15px 35px rgba(0, 200, 81, 0.4);
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1e7e34, 0 3px 8px rgba(0, 200, 81, 0.3);
}

.cta-gold {
    background: linear-gradient(180deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    color: #000;
    box-shadow: 0 5px 0 #8B6914, 0 8px 25px rgba(201, 168, 76, 0.3);
}

.cta-gold:hover {
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    box-shadow: 0 8px 0 #8B6914, 0 15px 35px rgba(201, 168, 76, 0.4);
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s infinite, btnScale 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 5px 0 #1e7e34, 0 0 0 0 rgba(0, 200, 81, 0.5); }
    70% { box-shadow: 0 5px 0 #1e7e34, 0 0 0 15px rgba(0, 200, 81, 0); }
    100% { box-shadow: 0 5px 0 #1e7e34, 0 0 0 0 rgba(0, 200, 81, 0); }
}

@keyframes btnScale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.cta-gold.pulse-animation {
    animation: pulseGold 2s infinite, btnScale 2s ease-in-out infinite;
}

@keyframes pulseGold {
    0% { box-shadow: 0 5px 0 #8B6914, 0 0 0 0 rgba(201, 168, 76, 0.5); }
    70% { box-shadow: 0 5px 0 #8B6914, 0 0 0 15px rgba(201, 168, 76, 0); }
    100% { box-shadow: 0 5px 0 #8B6914, 0 0 0 0 rgba(201, 168, 76, 0); }
}

.secure-badge {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: 5px;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    background: var(--bg-secondary);
    text-align: center;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #222;
    padding: 30px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: rgba(231, 76, 60, 0.4);
    transform: translateY(-3px);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.problem-highlight {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 30px;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    background: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: linear-gradient(180deg, #161614 0%, #0e0e0c 100%);
    padding: 35px 25px;
    border: 1px solid #252520;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.5);
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.15), 0 0 30px rgba(201, 168, 76, 0.08);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.3));
}

/* ============================================
   AUTHOR SECTION
   ============================================ */
.author-section {
    background: linear-gradient(135deg, #0f0f0a 0%, #0a0a05 50%, #050505 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.author-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.author-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-primary);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.author-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold-primary);
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    text-align: center;
    background: radial-gradient(circle, #151510 0%, #050505 100%);
    padding: 100px 0;
}

.offer-box-final {
    background: var(--bg-card);
    padding: 45px;
    max-width: 600px;
    margin: 40px auto 0;
    border: 2px solid var(--gold-primary);
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(201, 168, 76, 0.15);
}

.price-container-final {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.strikethrough-big {
    font-size: 2rem;
    text-decoration: line-through;
    color: #555;
}

.price-big {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.countdown-container-small {
    margin-top: 15px;
}

.countdown-label-small {
    font-size: 0.9rem;
    color: var(--red-urgent);
    font-weight: 600;
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-section {
    background: var(--bg-secondary);
    padding: 60px 0;
}

.guarantee-box {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 40px;
}

.guarantee-shield {
    font-size: 4rem;
    margin-bottom: 15px;
}

.guarantee-box h2 {
    font-size: 1.8rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--bg-color);
    padding: 80px 0;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #222;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(201, 168, 76, 0.4);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--bg-card);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #1a1a1a;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0,0,0,0.3);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 25px;
}

.faq-answer p {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    position: relative;
    z-index: 2;
}

footer p { color: #555; font-size: 0.8rem; }

footer a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

footer a:hover { color: var(--gold-primary); }

.disclaimer {
    margin-top: 15px;
    font-size: 0.7rem !important;
    color: #444 !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.exit-popup-overlay.active {
    display: flex;
}

.exit-popup {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 15px;
    padding: 45px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 80px rgba(201, 168, 76, 0.2);
    animation: popupSlide 0.4s ease;
}

@keyframes popupSlide {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.exit-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #666;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.exit-close:hover { color: #fff; }

.exit-popup h2 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 10px;
}

.exit-subtitle {
    color: #aaa;
    font-style: italic;
    font-family: var(--font-subheading);
    margin-bottom: 5px;
}

.exit-no-thanks {
    margin-top: 10px;
}

.exit-no-thanks a {
    color: #555;
    font-size: 0.8rem;
    text-decoration: underline;
    transition: color 0.3s;
}

.exit-no-thanks a:hover { color: #888; }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   LIVE REVIEWS SECTION
   ============================================ */
.live-reviews-section {
    background: linear-gradient(135deg, #050505 0%, #0a0a05 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    position: relative;
    overflow: hidden;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card:hover {
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.author-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
    font-family: var(--font-body);
}

.author-info p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

.review-rating {
    color: var(--gold-primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
    font-style: italic;
    margin-bottom: 20px;
}

.review-product-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 81, 0.1);
    color: var(--green-accent);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 200, 81, 0.3);
}

.review-product-tag.tag-gold {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-primary);
    border-color: rgba(201, 168, 76, 0.3);
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    color: var(--green-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.live-indicator .dot {
    width: 10px;
    height: 10px;
    background: var(--green-accent);
    border-radius: 50%;
    animation: livePulseGreen 1.5s infinite;
}

@keyframes livePulseGreen {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 200, 81, 0.6); }
    50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(0, 200, 81, 0); }
}

/* ============================================
   REAL-TIME PURCHASE TOAST
   ============================================ */
.purchase-toast {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-left: 4px solid var(--gold-primary);
    padding: 15px 20px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 99999;
    transform: translateX(-150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    max-width: 320px;
}

.purchase-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-img {
    width: 45px;
    height: 60px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.toast-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #e0e0e0;
}

.toast-content .toast-name {
    font-weight: 700;
    color: var(--gold-primary);
}

.toast-time {
    font-size: 0.75rem;
    color: #888;
    margin-top: 4px;
    display: block;
}

/* ============================================
   RESPONSIVE — MOBILE FIRST
   ============================================ */

/* Small phones (375px base) */
@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .sale-price { font-size: 2.5rem; }
    .price-big { font-size: 2.5rem; }
    .countdown { font-size: 1.5rem; gap: 4px; }
    .time-unit span { padding: 6px 8px; min-width: 42px; font-size: 1.4rem; }
    .time-sep { font-size: 1.4rem; }
    .cta-button { font-size: 1rem; padding: 16px 20px; }
    .offer-box { padding: 20px 15px; }
    .offer-box-final { padding: 30px 20px; }
    .exit-popup { padding: 30px 20px; }
    .author-stats { gap: 25px; }
    .stat-number { font-size: 1.6rem; }
}

/* Tablets */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }

    .hero { padding: 40px 0 60px; }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-image {
        order: 1;
        margin-top: 10px;
    }

    .hero-text { min-width: auto; }

    .book-cover { max-width: 280px; }

    .viewers-badge { justify-content: center; }

    .problem-grid { grid-template-columns: 1fr; }

    .benefits-grid { grid-template-columns: 1fr 1fr; }

    .price-container-final { flex-direction: column; gap: 5px; }

    .sticky-title { display: none; }

    .sticky-inner { justify-content: center; }
}

/* Large phones */
@media (max-width: 600px) {
    .benefits-grid { grid-template-columns: 1fr; }
}

/* Desktop */
@media (min-width: 1200px) {
    h1 { font-size: 3.5rem; }
    .hero { padding: 80px 0 120px; }
}
