:root {
    /* --- ANCESTRAL PALETTE: DEEP FOREST & ANTIQUE GOLD --- */
    --color-bg-dark: #070d0a;
    /* Deepest Forest Green/Black */

    /* Text Colors - Softer, less harsh than pure white */
    --color-text-main: #e0e6e1;
    --color-text-muted: #9cada2;
    --color-text-highlight: #f0f5f1;

    /* Accents */
    --color-gold-primary: #d4af37;
    /* Antique Gold */
    --color-gold-muted: #8a7337;
    --color-green-sage: #6b8c73;
    --color-green-deep: #2a3d31;

    /* Semantic */
    --color-urgency: #8c3a3a;
    /* Earthy Red/Terracotta */
    --color-success: #4a7c3f;

    /* Botanical Surface System */
    --surface-bg: rgba(18, 28, 22, 0.75);
    /* Dark Organic Pane */
    --surface-border: 1px solid rgba(212, 175, 55, 0.15);
    /* Subtle Gold Line */
    --surface-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

    /* Layout */
    --container-width: 1100px;
    /* Tighter for readability */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 5rem;
    --spacing-xl: 8rem;

    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* --- RESET & BASE --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-dark);
}

body {
    background: transparent;
    /* Allows 3D canvas visibility */
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.8;
    /* cleaner reading */
    font-weight: 300;
    overflow-x: hidden;
}

/* 3D Canvas Background */
#webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    background: radial-gradient(circle at center, #111a15 0%, #050806 100%);
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-text-highlight);
    line-height: 1.25;
    margin-bottom: 1rem;
    font-weight: 500;
    /* Regular serif weight looks more classic */
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--color-gold-primary);
}

h3 {
    font-size: 1.5rem;
    color: var(--color-text-highlight);
}

p {
    margin-bottom: 1.5rem;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-muted);
}

.text-gold-gradient {
    /* Solid antique gold is cleaner than gradient for this vibe */
    color: var(--color-gold-primary);
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.text-center {
    text-align: center;
}

/* --- LAYOUT UTILITIES --- */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.container-sm {
    max-width: 700px;
}

/* --- COMPONENT: BOTANICAL CARD --- */
.glass-card {
    background: var(--surface-bg);
    border: var(--surface-border);
    backdrop-filter: blur(10px);
    /* Subtle blur */
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--surface-shadow);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
}

/* --- FOOTER --- */
.site-footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 6rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* --- BUTTONS: ULTRA-PREMIUM 3D --- */
.btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem 2rem;

    /* 3D Gradient Face */
    background: linear-gradient(to bottom, #f3d472 0%, #d4af37 100%);
    color: #050a07;
    /* Deepest Green-Black Text */

    /* Typography */
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1.1rem;
    line-height: 1.1;

    /* Shape */
    border-radius: 60px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Top highlight */
    border-bottom: none;

    /* 3D Depth Shadow */
    box-shadow:
        0 8px 0 #8a701f,
        /* The 3D side */
        0 20px 40px rgba(0, 0, 0, 0.6),
        /* Drop shadow */
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    /* Inner top light */

    transition: all 0.15s ease;
    /* Fast snapping physics */
    cursor: pointer;
    position: relative;
    width: fit-content;
    white-space: normal;
    /* Allow stacking */
}

/* Hover: Lift slightly */
.btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(to bottom, #fae291 0%, #e6c55e 100%);
    box-shadow:
        0 10px 0 #8a701f,
        0 25px 50px rgba(0, 0, 0, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

/* Active: Press Down (3D effect collapse) */
.btn:active {
    transform: translateY(8px);
    box-shadow:
        0 0 0 #8a701f,
        0 0 10px rgba(0, 0, 0, 0.4),
        inset 0 4px 10px rgba(0, 0, 0, 0.2);
    border-top: none;
}

.btn-large {
    font-size: 1.4rem;
    padding: 2.2rem 3rem;
    width: 100%;
    max-width: 500px;
    /* Control max width */
    border-radius: 90px;

    /* Make the 3D effect deeper for large buttons */
    box-shadow:
        0 12px 0 #8a701f,
        0 30px 60px rgba(0, 0, 0, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.btn-large:hover {
    box-shadow:
        0 14px 0 #8a701f,
        0 35px 70px rgba(0, 0, 0, 0.8),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

.btn-large:active {
    transform: translateY(12px);
    box-shadow: 0 0 0 #8a701f;
}

.btn-pulse {
    animation: none;
    /* 3D buttons usually don't need pulse, they use physics. But let's keep a subtle highlight sweep */
    overflow: hidden;
}

/* Shine Sweep */
.btn-pulse::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: shineSweep 4s infinite;
    pointer-events: none;
}

@keyframes shineSweep {
    0% {
        left: -150%;
    }

    20% {
        left: 150%;
    }

    /* Fast sweep */
    100% {
        left: 150%;
    }

    /* Wait */
}

/* --- STICKY BAR --- */
.sticky-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5000;
    background: linear-gradient(90deg, #1f0808 0%, #591e1e 50%, #1f0808 100%);
    /* Deep Ancestral/Urgency Gradient */
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    color: #f0f5f1;
    padding: 0.8rem 0;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.sticky-bar p {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    line-height: 1.2;
}

.timer {
    font-family: monospace;
    /* Preserves timer width */
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold-primary);
    background: rgba(0, 0, 0, 0.25);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- HERO SECTION --- */
.hero-section {
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 1rem 4rem 1rem;
    text-align: center;
    position: relative;
}

.hero-box {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Social Proof Pill */
.hero-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px;
    background: rgba(20, 30, 24, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-social-proof:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.5);
}

.hero-social-proof .stars {
    color: var(--color-gold-primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.hero-social-proof p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-highlight);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Hero Typography */
h1.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text-highlight);
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #fff 20%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.3));
}

.hero-box h2 {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--color-gold-muted);
    /* More subtle than the H1 */
    margin-bottom: 2rem;
    max-width: 800px;
    line-height: 1.4;
}

.separator {
    font-size: 2rem;
    color: var(--color-gold-primary);
    margin: 1rem 0 2rem 0;
    opacity: 0.8;
    text-shadow: 0 0 15px var(--color-gold-primary);
    animation: pulse-gold 3s infinite ease-in-out;
}

.hero-lede {
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-main);
    margin-bottom: 2.5rem;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    display: inline-block;
}

.hero-benefit span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    border-radius: 20px;
}

/* --- PRODUCT SECTION --- */
/* --- PRODUCT SECTION --- */
.product-section {
    padding: 4rem 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .book-mockup {
        width: 80%;
        height: auto;
        aspect-ratio: 3/4;
    }
}

.book-mockup {
    position: relative;
    width: 320px;
    height: 460px;
    background: linear-gradient(135deg, #1a2920 0%, #0d1410 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.6);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.book-mockup:hover {
    transform: translateY(-5px) scale(1.02);
}

.book-cover {
    border: 1px solid var(--color-gold-primary);
    width: 90%;
    height: 92%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: radial-gradient(circle, rgba(20, 30, 20, 1) 0%, rgba(5, 10, 5, 1) 100%);
}

.product-benefits h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-gold-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: left;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    /* Very subtle gold line */
}

.benefit-item:first-child {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.benefit-icon {
    font-size: 1.8rem;
    margin-right: 1.5rem;
    padding-top: 5px;
    /* Align with text top */
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2));
    color: var(--color-gold-primary);
}

.benefit-text {
    flex: 1;
}

.benefit-text strong {
    display: block;
    color: #e0e6e1;
    /* Off-white for readability */
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.benefit-text p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin: 0;
    font-weight: 300;
}

/* --- CAROUSEL --- */
/* --- CAROUSEL & CATEGORY CARDS --- */
.categories-section {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at center, rgba(30, 50, 35, 0.4) 0%, transparent 70%);
    /* Subtle glowing center */
}

/* Section Title Refinement */
.categories-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, #d4af37 0%, #fcf6ba 50%, #b38728 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    margin-bottom: 4rem;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
}

.carousel-track-container {
    width: 100%;
    /* overflow: visible; Allow shadows to bleed */
    /* overflow-x: hidden; */
    overflow: hidden;
    padding: 20px 0;
    /* Space for shadows */
}

.carousel-track {
    display: flex;
    gap: 30px;
    /* Wider gap for elegance */
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.carousel-slide {
    flex: 0 0 min(320px, 80vw);
    /* Responsive width */
}

/* NEW CATEGORY CARD DESIGN */
/* --- CAROUSEL SLIDES (Slim Premium Redesign) --- */
.carousel-slide {
    flex: 0 0 300px;
    padding: 0 15px;
    box-sizing: border-box;
    perspective: 1000px;
}

/* NEW CATEGORY CARD DESIGN - INTEGRATED PHOTO */
.category-card {
    height: 540px;
    background: #080c09;
    /* Deep organic black */
    border: 1px solid rgba(212, 175, 55, 0.2);
    /* Subtle Gold Border */
    border-radius: 20px;
    /* Rounder for friendly feel */
    padding: 1.5rem 1rem 1rem 1rem;
    /* Padding to frame the content like a card */
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-gold-primary);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.1);
}

/* 1. Hero Image Area - LARGE PHOTO */
.category-card .card-image {
    width: 100%;
    height: 240px;
    /* Generous height for photo */
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    border-radius: 12px;
    /* Rounded image */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the area */
    transition: transform 0.6s ease;
    filter: none;
    /* Remove icon filters */
    border-radius: 12px;
}

.category-card:hover .card-image img {
    transform: scale(1.1);
}

/* Gradient Overlay on Image for text readability if needed (optional, keeping clean for now) */
.category-card .card-image::after {
    display: none;
}

/* 2. Content Area */
.category-card .card-content-wrapper {
    padding: 1.5rem 0.5rem 0 0.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 3;
    position: static;
    /* Reset from relative to allow badge positioning on card */
}

/* Title */
.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-gold-primary);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    margin-top: 0.5rem;
}

/* FLOATING BADGE (Recipe Count) */
.category-card .recipe-count {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-success);
    /* Green Sage/Success */
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    margin: 0;
    opacity: 1;
}

/* Ailment List - Integrated Text */
.ailment-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    line-height: 1.5;
}

.ailment-list span {
    color: #cbd5e1;
    /* Lighter for reading */
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding-right: 5px;
}

/* Comma separation style instead of bullets for "Integrated" text feel */
.ailment-list span::after {
    content: ',';
    color: var(--color-gold-muted);
}

.ailment-list span:last-child::after {
    display: none;
}

.ailment-list span::before {
    display: none;
    /* Remove gold dots */
}

/* Hide duplicate count if present */
.category-card p:nth-of-type(1):not(.recipe-count) {
    display: none;
}


/* Carousel Buttons - Integrated into design */
.carousel-btn {
    background: rgba(15, 25, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gold-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--color-gold-primary);
    color: #000;
    transform: scale(1.1);
    border-color: var(--color-gold-primary);
}

.carousel-btn.prev {
    margin-right: 1rem;
}

.carousel-btn.next {
    margin-left: 1rem;
}

/* --- PROBLEMS GRID --- */
.problems-section {
    padding: 6rem 0;
    position: relative;
    /* Optional: Subtle background texture or gradient if desired, keeping it clean for now */
}

/* Section Title for Problems */
.problems-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3rem);
    text-align: center;
    color: var(--color-gold-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.problems-section h2 .highlight {
    color: #fcebeb;
    /* Off-white highlight */
    font-style: italic;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 4rem;
    padding: 0 1rem;
}

/* ELEGANT PROBLEM CARD */
.problem-card {
    background: linear-gradient(160deg, #1a0a0a 0%, #0d0404 100%);
    /* Deep Ancestral Red-Black */
    border: 1px solid rgba(140, 58, 58, 0.2);
    /* Subtle red clay border */
    padding: 3rem 2.5rem;
    border-radius: 24px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(140, 58, 58, 0.5);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.8);
}

.problem-card h3 {
    color: #e5baba;
    /* Pale red-clay text */
    font-size: 1.3rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

/* Custom Red Cross Icon Styling */
.problem-card h3::before {
    content: '✕';
    /* Elegant cross */
    color: #ff4d4d;
    /* Vivid urgency red */
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: 2px;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.4);
}

.problem-card p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    font-family: var(--font-body);
    font-weight: 300;
    margin: 0;
}

/* CLOSING CARD - The Solution/Hope */
.problem-closing {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #102015 0%, #050f08 100%);
    /* Ancestral Green */
    border: 1px solid var(--color-gold-muted);
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.problem-closing h3 {
    font-size: 2rem;
    color: #f0f5f1;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem-closing p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* --- BONUSES --- */
/* --- BONUSES (Premium Small Grid) --- */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    /* Compact cards */
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.bonus-card {
    background: linear-gradient(145deg, #0a100c 0%, #030504 100%);
    /* Deep Ancestral */
    border: 1px solid rgba(212, 175, 55, 0.2);
    /* Thin Gold Border */
    padding: 1.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold-primary);
    box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.9), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.bonus-img {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.15));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bonus-card:hover .bonus-img {
    transform: scale(1.1);
}

.bonus-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.3;
    color: #e0e6e1;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.bonus-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-gold-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: auto;
    /* Push to bottom */
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 80%;
}

/* --- FAQ & TESTIMONIALS --- */
.faq-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0.5rem;
    color: var(--color-text-highlight);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.faq-btn:hover {
    color: var(--color-gold-primary);
    padding-left: 1rem;
}

.faq-content {
    display: none;
    padding: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- TESTIMONIALS (Premium Trust) --- */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 5rem;
    padding: 0 1rem;
}

.testimonial-card {
    background: linear-gradient(145deg, #0f1a13 0%, #020503 100%);
    /* Deep Ancestral Forest */
    border: 1px solid rgba(212, 175, 55, 0.15);
    /* Subtle Gold Border */
    padding: 3rem 2rem;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold-primary);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.8);
}

/* Big Quote Watermark */
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 8rem;
    font-family: var(--font-heading);
    color: var(--color-gold-primary);
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card .stars {
    color: var(--color-gold-primary);
    font-size: 1rem;
    /* Precise stars */
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    font-family: var(--font-heading);
    /* Playfair */
    font-size: 1.15rem;
    color: #e0e6e1;
    /* Clear white-ish */
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: auto;
    font-size: 0.9rem;
    color: var(--color-gold-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

/* Verified Badge Checkmark */
.testimonial-author::after {
    content: '✓ Compra Verificada';
    font-size: 0.65rem;
    background: rgba(74, 124, 63, 0.2);
    color: #8fb394;
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(74, 124, 63, 0.3);
    text-transform: none;
    letter-spacing: 0;
    margin-left: auto;
}

/* --- FORMS --- */
.simple-form input,
.simple-form textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius-sm);
    color: #fff !important;
    font-family: var(--font-body);
    transition: 0.3s;
}

.simple-form input:focus,
.simple-form textarea:focus {
    border-color: var(--color-gold-primary) !important;
    background: rgba(0, 0, 0, 0.5) !important;
}

/* --- CURSOR --- */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    border-radius: 50%;
    z-index: 9999;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold-primary);
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    transform: translate(-50%, -50%);
}

@media (hover: none) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-section {
        padding-top: 8rem;
    }

    .container {
        width: 92%;
    }
}

/* --- DETAILED BENEFITS --- */
.benefits-detailed-section {
    padding: 6rem 0;
    position: relative;
    /* Clean background to let content shine */
}

.benefits-detailed-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-gold-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.benefits-detailed-section h3.text-center {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold-muted);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2rem;
}

.benefits-detailed-section p.text-center {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 300;
    padding: 0 1rem;
}

.benefits-detailed-card {
    background: linear-gradient(150deg, #111a14 0%, #060d08 100%);
    border: 1px solid rgba(107, 140, 115, 0.2);
    border-radius: 30px;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column for storytelling flow */
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-box {
    text-align: left;
    padding-left: 2rem;
    border-left: 2px solid rgba(212, 175, 55, 0.2);
    /* Gold timeline line */
    position: relative;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    border-left-color: var(--color-gold-primary);
    transform: translateX(10px);
}

.benefit-box h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-gold-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Move icon to be inline or above distinctively */


/* --- MAIN OFFER & PURCHASE --- */
.offer-section {
    padding: 8rem 0;
    position: relative;
    /* Clean background to let the gold shine */
}

.offer-container {
    max-width: 900px;
    margin: 0 auto;
    /* "Royal Invitation" Card Design */
    background: linear-gradient(135deg, #0f1c13 0%, #050a07 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 40px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.9);
    /* Massive shadow */
    overflow: hidden;
}

/* Inner Gold Border Effect */
.offer-container::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    pointer-events: none;
}

.offer-title {
    font-family: var(--font-heading);
    /* Playfair Display */
    font-size: clamp(3rem, 6vw, 4.5rem);
    /* Massive Scale */
    line-height: 1.1;
    text-transform: uppercase;
    color: #d4af37;
    /* Base Gold */
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;

    /* Premium Gradient Fill */
    background: linear-gradient(to bottom,
            #cfc09f 0%,
            #ffecb3 20%,
            #3a2c0f 50%,
            #996515 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback */

    /* "Engraved" Gold Shine Filter */
    filter: drop-shadow(0 2px 0px rgba(0, 0, 0, 0.5));

    /* Spacing */
    letter-spacing: -0.02em;
}

/* Secondary line handling if needed */
.offer-title span {
    display: block;
    font-size: 0.6em;
    /* Smaller secondary text */
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    background: none;
    -webkit-text-fill-color: #d4af37;
    /* Flat gold for readability */
    color: #d4af37;
}

/* Social Proof Badge */
.social-proof-offer {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

/* Pricing Grid */
.price-box {
    margin: 3rem 0;
    position: relative;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.old-price {
    display: block;
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 0.5rem;
    text-decoration: line-through;
}

.new-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 5rem;
    /* Massive Price */
    line-height: 1;
    font-weight: 700;
    color: var(--color-gold-primary);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    margin: 1rem 0;
}

.badge-fire {
    display: inline-block;
    background: linear-gradient(90deg, #b22222, #800000);
    /* Deep Red Fire */
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(178, 34, 34, 0.6);
    animation: flashBadge 2s infinite;
}

@keyframes flashBadge {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.offer-details p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin: 5px 0;
}

.offer-btn-container {
    margin-top: 3rem;
}

/* Guarantee Section in Offer */
.guarantee-box {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.guarantee-box h4 {
    color: #e0e6e1;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.guarantee-box p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* --- PREMIUM FAQ SECTION --- */
.faq-section {
    padding: 6rem 0;
}

.faq-accordion.premium-list {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

.faq-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem 0;
    color: #e0e6e1;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    font-weight: 400;
}

.faq-btn:hover {
    color: var(--color-gold-primary);
    padding-left: 10px;
}

/* Number styling if manual numbers are removed in HTML, but image shows them */

.faq-content {
    display: none;
    padding: 0 0 1.5rem 0;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: var(--font-body);
    font-weight: 300;
}

/* --- FINAL URGENCY SECTION --- */

/* --- FINAL URGENCY SECTION (Premium Cinema Style) --- */
.final-urgency {
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #0f1411 0%, #000000 100%);
}

.urgency-card {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(8, 12, 9, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 4rem 2rem;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.8),
        inset 0 0 30px rgba(212, 175, 55, 0.05);
}

/* Internal Gold Accent Lines */
.urgency-card::before,
.urgency-card::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
}

.urgency-card::before {
    top: 2rem;
}

.urgency-card::after {
    bottom: 2rem;
}

.urgency-icon {
    font-size: 2.5rem;
    color: var(--color-gold-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    animation: floating 3s ease-in-out infinite;
}

.urgency-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(to bottom, #fff 20%, var(--color-gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.urgency-title br {
    display: block;
    margin-bottom: 0.5rem;
}

.urgency-subtitle {
    font-size: 1.3rem;
    color: #e0e6e1;
    margin-bottom: 3rem;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.urgency-price-row {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    /* Responsive Font Size */
    color: var(--color-gold-muted);
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.9;
    font-weight: 400;
}

.urgency-value-free {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 6rem);
    /* Responsive Font Size: clamps between 4rem and 6rem */
    font-weight: 700;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.4), 0 0 10px rgba(212, 175, 55, 0.8);
    margin: 1rem 0 3rem 0;
    line-height: 1;
    letter-spacing: 0.05em;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        transform: scale(1);
    }

    to {
        text-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
        transform: scale(1.02);
    }
}

.timer-label {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    color: #889990;
    margin-bottom: 1rem;
    display: block;
}

.timer-container {
    font-family: 'Courier New', monospace;
    /* Monospace for stability */
    font-size: clamp(3rem, 10vw, 5rem);
    /* Responsive Font Size */
    color: #fff;
    font-weight: 700;
    letter-spacing: -2px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}



.final-cta-btn {
    background: var(--color-gold-primary);
    color: #050a07;
    /* Dark text for contrast */
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1rem, 4vw, 1.4rem);
    /* Responsive text size */
    padding: 1.5rem 2rem;
    /* Reduced horizontal padding */
    width: auto;
    max-width: 90%;
    /* Prevent overflowing width */
    text-align: center;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), inset 0 2px 2px rgba(255, 255, 255, 0.4);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    line-height: 1.3;
}

.final-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
    background: #fff;
    /* Invert on hover for premium feel */
}


/* --- SOCIAL PROOF NOTIFICATION --- */
#social-notification {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 9000;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(145deg, #0a140f 0%, #020503 100%);
    border: 1px solid var(--color-gold-muted);
    border-radius: 50px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.8);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

#social-notification.hidden {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
}

/* --- NEW BENEFITS GRID (3-Column Images) --- */
.benefits-detailed-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Space between rows */
    width: 100%;
}

.benefits-row-three {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.benefit-img-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    /* Square cards */
    display: flex;
    align-items: flex-end;
    /* Text at bottom */
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.benefit-img-card:hover {
    transform: translateY(-5px);
}

.benefit-img-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Gradient Overlay for Text Readability */
.benefit-img-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 28, 19, 0.9) 0%, transparent 60%);
    z-index: 2;
}

.benefit-img-card h3 {
    position: relative;
    z-index: 3;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
}

@media (max-width: 768px) {
    .benefits-row-three {
        gap: 0.8rem;
    }

    .benefit-img-card h3 {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
}

/* --- PREMIUM BONUS CARDS --- */
.bonus-card.premium-bonus {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.bonus-image-container {
    width: 100%;
    /* 3D Book Ratio approx 2:3 or slightly wider */
    aspect-ratio: 4/5;
    background: #0d120f;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.bonus-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bonus-card:hover .bonus-cover-img {
    transform: scale(1.05);
}

.bonus-content {
    padding: 1.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.bonus-content h4 {
    font-size: 1.1rem;
    color: var(--color-gold-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.bonus-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}