/* ==========================================================================
   RESILIENT WHEN IT MATTERS - SALES PAGE STYLESHEET
   Design System: Tactical Dark / Apocalyptic Cinematic / High-Conversion Direct Response
   ========================================================================== */

:root {
    --bg-main: #07090e;
    --bg-card: rgba(17, 24, 39, 0.75);
    --bg-card-hover: rgba(26, 36, 58, 0.85);
    --bg-card-highlight: rgba(30, 41, 67, 0.9);
    --bg-glass: rgba(15, 23, 42, 0.65);
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-glow-red: rgba(239, 68, 68, 0.4);
    --border-glow-yellow: rgba(245, 158, 11, 0.4);
    --border-glow-green: rgba(16, 185, 129, 0.4);

    --color-red: #ef4444;
    --color-red-bright: #ff3344;
    --color-yellow: #f59e0b;
    --color-yellow-light: #fef08a;
    --color-green: #10b981;
    --color-green-glow: #00ff88;
    --color-purple: #a855f7;
    --color-blue: #38bdf8;
    
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 1px 1px var(--border-subtle);
    --shadow-glow-red: 0 0 30px rgba(239, 68, 68, 0.35);
    --shadow-glow-green: 0 0 35px rgba(16, 185, 129, 0.45);
    --shadow-glow-yellow: 0 0 30px rgba(245, 158, 11, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* Base Reset & Typography */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

.page-wrapper {
    position: relative;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-yellow { color: var(--color-yellow); }
.text-green { color: var(--color-green); }
.text-red { color: var(--color-red); }
.text-purple { color: var(--color-purple); }
.text-blue { color: var(--color-blue); }
.text-muted { color: var(--text-muted); }

.highlight-red { color: var(--color-red); font-weight: 800; }
.highlight-yellow { color: var(--color-yellow); font-weight: 700; text-shadow: 0 0 15px rgba(245, 158, 11, 0.3); }
.highlight-green { color: var(--color-green-glow); font-weight: 800; text-shadow: 0 0 20px rgba(0, 255, 136, 0.4); }

.glow-text {
    text-shadow: 0 0 25px rgba(239, 68, 68, 0.6), 0 0 50px rgba(239, 68, 68, 0.3);
}

/* ==========================================================================
   TOP URGENCY ALERT BAR (CLEAN, SLIM & COMPACT)
   ========================================================================== */
.top-urgency-bar {
    background: linear-gradient(90deg, #1c0606 0%, #350c0c 50%, #1c0606 100%);
    border-bottom: 1px solid rgba(239, 68, 68, 0.35);
    padding: 0.45rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.urgency-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.urgency-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-red);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-red);
    animation: livePulse 1.2s infinite alternate;
}

@keyframes livePulse {
    from { transform: scale(0.85); opacity: 0.6; }
    to { transform: scale(1.25); opacity: 1; }
}

.urgency-text { color: #f1f5f9; font-weight: 700; }

.countdown-wrapper {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-mono);
}

.time-box {
    background: #000;
    border: 1px solid rgba(245, 158, 11, 0.5);
    border-radius: 4px;
    padding: 0.15rem 0.4rem;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.time-box span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-yellow);
}

.time-box label {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.colon {
    color: var(--color-yellow);
    font-weight: 700;
    font-size: 0.95rem;
    animation: blink 1s infinite;
}

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

.urgency-right-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.live-viewers-pill {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pulse-red-dot {
    width: 6px;
    height: 6px;
    background: var(--color-red);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--color-red);
    animation: livePulse 1s infinite alternate;
}

.stock-pill {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: var(--color-yellow-light);
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* ==========================================================================
   SECTION 1: HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 3.5rem 0 1.5rem;
    position: relative;
    text-align: center;
}

.hero-glow-sphere {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: -1;
}

.hero-glow-sphere.top-left {
    top: 5%;
    left: -10%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.25) 0%, transparent 70%);
}

.hero-glow-sphere.bottom-right {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    margin-bottom: 1.4rem;
    backdrop-filter: blur(8px);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #e2e8f0;
}

.pill-icon { color: var(--color-red); }

.pill-highlight {
    background: var(--color-red);
    color: #fff;
    padding: 0.12rem 0.45rem;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 800;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4.5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.18;
    color: #ffffff;
    max-width: 950px;
    margin: 0 auto 1.2rem;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.45rem);
    color: #e2e8f0;
    max-width: 820px;
    margin: 0 auto 1.6rem;
    font-weight: 500;
    line-height: 1.45;
}

.hero-callout {
    display: inline-flex;
    align-items: center;
    gap: 1.1rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.6rem;
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.callout-icon {
    font-size: 2rem;
    color: var(--color-red);
    flex-shrink: 0;
}

.callout-text p {
    font-size: 1.05rem;
    color: #f1f5f9;
    line-height: 1.5;
}

.hero-social-proof {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.stars-row {
    color: #fbbf24;
    font-size: 1.15rem;
    display: flex;
    gap: 0.2rem;
}

.proof-number {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.pulse-counter {
    color: var(--color-yellow);
    font-weight: 900;
}

.proof-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.proof-desc strong { color: #ffffff; }

/* ==========================================================================
   SECTION 2: 3D HERO SHOWCASE MOCKUP
   ========================================================================== */
.showcase-section {
    padding: 1.5rem 0 3rem;
    position: relative;
}

.showcase-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-stage {
    position: relative;
    perspective: 1200px;
    padding: 1.5rem;
}

.stage-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(239, 68, 68, 0.15) 50%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.book-3d-card {
    position: relative;
    z-index: 1;
    width: 290px;
    height: 435px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out;
    cursor: pointer;
    box-shadow: -15px 20px 45px rgba(0, 0, 0, 0.85), 0 0 30px rgba(245, 158, 11, 0.25);
    border-radius: 4px 14px 14px 4px;
}

.book-spine {
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 100%;
    background: linear-gradient(90deg, #180808 0%, #3b0d0d 50%, #180808 100%);
    border-radius: 4px 0 0 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.book-cover-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px 14px 14px 4px;
    overflow: hidden;
    border: 2px solid rgba(245, 158, 11, 0.5);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.book-cover-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cover-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    z-index: 3;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
}

.floating-badge i { font-size: 1.4rem; }
.floating-badge strong { display: block; font-size: 0.85rem; color: #ffffff; }
.floating-badge span { font-size: 0.72rem; color: var(--text-muted); }

.badge-1 { top: 10%; left: -20%; }
.badge-2 { bottom: 15%; right: -22%; }
.badge-3 { bottom: -5%; left: -10%; }

.animate-float { animation: floating 4s ease-in-out infinite; }
.animate-float-delay { animation: floating 4s ease-in-out 2s infinite; }

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==========================================================================
   SECTION 3: PROMINENT TOP PRICING TABLE ($7.90 vs $15.90)
   ========================================================================== */
.offer-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, #0c121e 50%, var(--bg-main) 100%);
    position: relative;
}

.prominent-top-offer {
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.pricing-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: linear-gradient(160deg, #111827 0%, #0c101a 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 2.8rem 2rem 2.2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.tier-basic { border-color: rgba(255, 255, 255, 0.18); }
.tier-basic:hover { border-color: rgba(245, 158, 11, 0.4); }

.tier-pro.featured-card {
    border: 2px solid rgba(245, 158, 11, 0.6);
    background: linear-gradient(165deg, #182338 0%, #0d1424 60%, #0a1f16 100%);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(245, 158, 11, 0.25);
    transform: scale(1.02);
}

.tier-pro.featured-card:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 45px rgba(245, 158, 11, 0.35);
}

.featured-ribbon-gold {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
    color: #000;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
    white-space: nowrap;
}

.tier-type-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
}

.pro-badge {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
    color: var(--color-yellow);
}

.tier-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.tier-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    min-height: 40px;
    line-height: 1.45;
}

.tier-price-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.2rem 1rem;
    margin: 1.4rem 0;
    text-align: center;
}

.tier-regular-price {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.tier-amount-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    color: #ffffff;
    line-height: 1;
}

.tier-curr {
    font-size: 1.7rem;
    font-weight: 900;
    margin-top: 0.2rem;
    color: var(--color-yellow);
}

.tier-val {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
}

.pro-val {
    color: var(--color-green-glow);
    text-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
}

.tier-one-time {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 0.5rem;
    margin-left: 0.35rem;
}

.tier-save-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    margin-top: 0.4rem;
}

.pro-save {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
    color: #d1fae5;
}

.tier-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
}

.tier-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: #e2e8f0;
    line-height: 1.4;
}

.tier-features-list li i {
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.item-included.highlight-item {
    background: rgba(245, 158, 11, 0.08);
    border-radius: 4px;
    padding: 0.3rem 0.5rem;
    border-left: 2px solid var(--color-yellow);
}

.item-excluded { opacity: 0.5; }

.tier-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.btn-tier-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
    padding: 1.05rem 1.4rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-tier-basic {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.btn-tier-basic:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-tier-pro {
    width: 100%;
    padding: 1.25rem 1.6rem;
}

.tier-security-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SECTION 4: UNIFIED 3-BOOK RESILIENCE COLLECTION (CLEAN & MINIMAL)
   ========================================================================== */
.bundle-collection-section {
    padding: 5rem 0;
    background: var(--bg-main);
    position: relative;
}

.free-gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #15803d 0%, #16a34a 100%);
    color: #ffffff;
    font-weight: 800;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
    box-shadow: 0 0 20px rgba(22, 163, 74, 0.4);
}

.unified-books-stack {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    margin-top: 2.5rem;
}

.unified-book-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 2.4rem 2.2rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.unified-book-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.main-book-featured {
    border: 2px solid rgba(245, 158, 11, 0.5);
    background: linear-gradient(165deg, #182338 0%, #0e1626 60%, #151a14 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 158, 11, 0.15);
}

.book-card-flex {
    display: flex;
    gap: 2.8rem;
    align-items: center;
}

.book-cover-col {
    flex-shrink: 0;
    width: 220px;
}

.unified-cover-wrapper {
    position: relative;
    border-radius: 8px 14px 14px 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: -10px 18px 40px rgba(0, 0, 0, 0.85);
}

.unified-cover-wrapper.gold-glow {
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: -10px 18px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(245, 158, 11, 0.25);
}

.unified-cover-wrapper.green-glow {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: -10px 18px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(16, 185, 129, 0.2);
}

.unified-cover-wrapper.purple-glow {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: -10px 18px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(168, 85, 247, 0.2);
}

.unified-cover-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.book-details-col { flex-grow: 1; }

.book-series-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-yellow);
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.book-series-tag.green-tag { color: var(--color-green); }
.book-series-tag.purple-tag { color: var(--color-purple); }

.unified-book-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.unified-book-subtitle {
    font-size: 1rem;
    color: var(--color-yellow);
    font-weight: 700;
    margin-bottom: 0.9rem;
    line-height: 1.4;
}

.unified-book-p {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 1.2rem;
    line-height: 1.55;
}

.book-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin: 1.4rem 0;
}

.bh-item {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    color: #e2e8f0;
    line-height: 1.4;
}

.bh-item i { margin-right: 0.4rem; }

.book-feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.2rem 0;
}

.book-feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: #f1f5f9;
    line-height: 1.45;
}

.book-feature-bullets li i {
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.unified-card-footer {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.1rem;
    margin-top: 1.3rem;
}

.val-tag { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }

.status-tag {
    font-size: 0.88rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.included-tag {
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-yellow);
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.free-tag {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-green);
    border: 1px solid rgba(16, 185, 129, 0.4);
}

/* ==========================================================================
   PRIMARY CTA BUTTON STYLES
   ========================================================================== */
.cta-center-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 1.3rem 2.6rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 900;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4), 0 0 20px rgba(16, 185, 129, 0.6);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 650px;
    width: 100%;
    cursor: pointer;
}

.btn-primary-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 45px rgba(16, 185, 129, 0.55), 0 0 35px rgba(16, 185, 129, 0.8);
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.btn-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-left: 0.8rem;
}

.btn-content strong {
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-content small {
    font-size: 0.82rem;
    font-weight: 600;
    color: #d1fae5;
    margin-top: 0.25rem;
}

.btn-arrow {
    background: rgba(0, 0, 0, 0.25);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-primary-cta:hover .btn-arrow { transform: translateX(6px); }

.btn-shine {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(30deg);
    animation: shineSweep 3.5s infinite;
}

@keyframes shineSweep {
    0% { left: -60%; }
    25%, 100% { left: 140%; }
}

.pulse-btn { animation: btnPulseGlow 2.5s infinite; }

@keyframes btnPulseGlow {
    0%, 100% { box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4), 0 0 20px rgba(16, 185, 129, 0.6); }
    50% { box-shadow: 0 15px 45px rgba(16, 185, 129, 0.7), 0 0 40px rgba(16, 185, 129, 0.9); }
}

/* ==========================================================================
   SECTION 5: 3 PILLARS & HARD TRUTHS
   ========================================================================== */
.pillars-section {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, #0d121c 50%, var(--bg-main) 100%);
    position: relative;
}

.section-header { margin-bottom: 3rem; }

.sub-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--color-yellow);
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 0.9rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    max-width: 880px;
    margin: 0 auto 1rem;
}

.section-lead {
    font-size: 1.08rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    position: relative;
    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
}

.pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-card);
}

.pillar-number {
    position: absolute;
    top: 1.4rem;
    right: 1.6rem;
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
}

.pillar-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.pillar-icon-box.red-glow {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-red);
    border: 1px solid rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
}

.pillar-icon-box.yellow-glow {
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-yellow);
    border: 1px solid rgba(245, 158, 11, 0.4);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.25);
}

.pillar-icon-box.green-glow {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-green);
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

.pillar-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.4rem;
    line-height: 1.55;
}

.pillar-checks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.1rem;
}

.pillar-checks li {
    font-size: 0.88rem;
    color: #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.pillar-checks li i {
    color: var(--color-green);
    margin-top: 0.15rem;
}

.featured-pillar {
    border-color: rgba(245, 158, 11, 0.4);
    background: linear-gradient(180deg, rgba(30, 41, 67, 0.8) 0%, rgba(17, 24, 39, 0.9) 100%);
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.15);
}

.featured-ribbon {
    position: absolute;
    top: -11px;
    left: 1.8rem;
    background: var(--color-yellow);
    color: #000;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.75rem;
    border-radius: 4px;
}

/* Agitation Banner */
.agitation-box {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.2) 0%, rgba(15, 23, 42, 0.85) 100%);
    border: 1px solid rgba(239, 68, 68, 0.45);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.3rem;
    margin-bottom: 2rem;
}

.agitation-icon {
    font-size: 2.2rem;
    color: var(--color-red-bright);
    flex-shrink: 0;
}

.agitation-content h4 {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.agitation-content p {
    font-size: 0.98rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   SECTION 6: INTERACTIVE READINESS QUIZ
   ========================================================================== */
.quiz-section {
    padding: 4.5rem 0;
    background: var(--bg-main);
}

.quiz-box-card {
    background: linear-gradient(160deg, #111726 0%, #0a0e18 100%);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: var(--radius-xl);
    padding: 2.8rem 2.2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 158, 11, 0.15);
    max-width: 840px;
    margin: 0 auto;
}

.quiz-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: var(--color-yellow);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.quiz-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 0.7rem;
}

.quiz-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.quiz-container {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem 1.6rem;
    text-align: left;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.quiz-step.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-step-header { margin-bottom: 1.4rem; }

.step-num {
    font-size: 0.78rem;
    font-family: var(--font-mono);
    color: var(--color-yellow);
    font-weight: 700;
    display: block;
    margin-bottom: 0.35rem;
}

.quiz-step-header h4 {
    font-size: 1.18rem;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.35;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.quiz-opt-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1rem 1.3rem;
    color: #f1f5f9;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.quiz-opt-btn:hover {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateX(4px);
    color: #ffffff;
}

/* Dynamic Quiz Result Container */
.quiz-result {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.quiz-result.active {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-score-badge {
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 900;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.04em;
}

.quiz-result.status-critical .result-score-badge {
    background: rgba(239, 68, 68, 0.25);
    border: 1px solid var(--color-red);
    color: #fca5a5;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.35);
}

.quiz-result.status-moderate .result-score-badge {
    background: rgba(245, 158, 11, 0.25);
    border: 1px solid var(--color-yellow);
    color: var(--color-yellow-light);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.35);
}

.quiz-result.status-advanced .result-score-badge {
    background: rgba(16, 185, 129, 0.25);
    border: 1px solid var(--color-green);
    color: #d1fae5;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.35);
}

.quiz-result h4 {
    font-size: 1.45rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.quiz-result p {
    font-size: 1.02rem;
    color: var(--text-secondary);
    max-width: 660px;
    margin: 0 auto 2rem;
    line-height: 1.55;
}

/* ==========================================================================
   SECTION 7: TRANSFORMATION
   ========================================================================== */
.transformation-section {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, #0d131f 100%);
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.trans-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem 1.6rem;
    transition: all 0.3s ease;
}

.trans-item:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3);
    background: var(--bg-card-hover);
}

.trans-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: var(--color-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.trans-text h4 {
    font-size: 1.18rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.trans-text p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   SECTION 8: SNEAK PEEK & CLASSIFIED TABLE OF CONTENTS
   ========================================================================== */
.toc-section {
    padding: 4.5rem 0;
    background: var(--bg-main);
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.6rem;
}

.toc-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.toc-card:hover {
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.toc-chapter-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--color-yellow);
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
}

.toc-card h4 {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.toc-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.45;
}

.toc-status {
    font-size: 0.75rem;
    font-weight: 700;
    color: #d1fae5;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: 0.7rem;
}

/* ==========================================================================
   SECTION 9: TRIPLE GUARANTEE BOX
   ========================================================================== */
.guarantee-section {
    padding: 2.5rem 0 4.5rem;
    background: var(--bg-main);
}

.triple-guarantee-box {
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-xl);
    background: rgba(0, 0, 0, 0.4);
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.guarantee-header {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-bottom: 2rem;
}

.seal-gold-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
    border: 2px solid var(--color-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-yellow);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
    flex-shrink: 0;
}

.guarantee-header-text h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.guarantee-header-text p {
    font-size: 0.98rem;
    color: #cbd5e1;
}

.guarantee-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.g-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.g-icon {
    font-size: 1.5rem;
    color: var(--color-yellow);
    margin-bottom: 0.7rem;
}

.g-card h4 {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.g-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* ==========================================================================
   SECTION 10: TESTIMONIALS (UPDATED REAL FACES)
   ========================================================================== */
.testimonials-section {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, #0d121d 50%, var(--bg-main) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-card);
}

.quote-watermark {
    position: absolute;
    top: 1.3rem;
    right: 1.5rem;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.05);
}

.card-stars {
    color: #fbbf24;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.2rem;
}

.testimonial-body {
    font-size: 0.96rem;
    color: #f1f5f9;
    line-height: 1.55;
    margin-bottom: 1.6rem;
    font-style: italic;
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1rem;
}

.user-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.user-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-yellow);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
}

.verified-check {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--color-green);
    color: #000;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    border: 2px solid #000;
}

.user-details { display: flex; flex-direction: column; }
.user-name { font-size: 0.98rem; color: #ffffff; font-weight: 800; }
.user-age { font-size: 0.78rem; color: var(--text-muted); }
.user-status { font-size: 0.75rem; color: var(--color-green); font-weight: 600; margin-top: 0.15rem; }

.featured-testimonial {
    border-color: rgba(245, 158, 11, 0.4);
    background: linear-gradient(180deg, rgba(30, 41, 67, 0.85) 0%, rgba(17, 24, 39, 0.9) 100%);
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.15);
}

.featured-badge-t {
    position: absolute;
    top: -11px;
    left: 1.8rem;
    background: var(--color-yellow);
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 0.2rem 0.75rem;
    border-radius: 4px;
}

/* ==========================================================================
   SECTION 11: INTERACTIVE FAQ ACCORDION
   ========================================================================== */
.faq-section {
    padding: 4.5rem 0;
    background: var(--bg-main);
}

.faq-accordion-wrapper {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(245, 158, 11, 0.45);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    cursor: pointer;
    text-align: left;
    gap: 0.8rem;
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-arrow {
    font-size: 0.95rem;
    color: var(--color-yellow);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.faq-item.active .faq-arrow { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    padding: 0 1.6rem;
}

.faq-item.active .faq-answer { padding: 0 1.6rem 1.3rem; }

.faq-answer p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.55;
    border-top: 1px solid var(--border-subtle);
    padding-top: 0.9rem;
}

/* ==========================================================================
   SECTION 12: FINAL URGENCY RECAP & BOTTOM CTA
   ========================================================================== */
.final-cta-section {
    padding: 4.5rem 0 5.5rem;
    background: radial-gradient(circle at 50% 50%, #151e30 0%, var(--bg-main) 70%);
}

.final-cta-card {
    background: linear-gradient(145deg, #1a0f0f 0%, #0d121d 50%, #0a1f14 100%);
    border: 2px solid rgba(239, 68, 68, 0.45);
    border-radius: var(--radius-xl);
    padding: 3.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(239, 68, 68, 0.25);
}

.final-fire-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.3rem;
}

.final-title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.final-recap-text {
    font-size: 1.15rem;
    color: #e2e8f0;
    max-width: 780px;
    margin: 0 auto 1.8rem;
    line-height: 1.55;
}

.recap-highlight-box {
    background: rgba(245, 158, 11, 0.12);
    border: 1px dashed rgba(245, 158, 11, 0.4);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.6rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.98rem;
    color: #ffffff;
}

.final-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-huge {
    padding: 1.4rem 2.8rem;
    font-size: 1.35rem;
    max-width: 680px;
}

.payment-badges-row {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
}

.pay-item { display: flex; align-items: center; gap: 0.35rem; }
.pay-item i { font-size: 1.1rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #040608;
    border-top: 1px solid var(--border-subtle);
    padding: 2.5rem 0;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-disclaimer {
    max-width: 720px;
    margin: 0 auto 1.2rem;
    line-height: 1.55;
}

.footer-copyright { color: #64748b; }

/* ==========================================================================
   STICKY BOTTOM BAR
   ========================================================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 15, 23, 0.95);
    border-top: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
    padding: 0.65rem 0;
    z-index: 998;
    backdrop-filter: blur(14px);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-bottom-bar.show { transform: translateY(0); }

.sticky-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}

.sticky-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.88rem;
}

.sticky-badge {
    background: var(--color-red);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.sticky-title { color: #ffffff; font-weight: 700; }
.sticky-pricing strong { color: var(--color-green-glow); margin-left: 0.2rem; }

.btn-sticky-buy {
    background: var(--color-green);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
    flex-shrink: 0;
}

.btn-sticky-buy:hover {
    background: #00ff88;
    transform: scale(1.04);
}

/* ==========================================================================
   LIVE RECENT PURCHASE TOAST NOTIFICATION
   ========================================================================== */
.live-toast {
    position: fixed;
    bottom: 75px;
    left: 20px;
    z-index: 997;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    transform: translateX(-150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 340px;
}

.live-toast.show { transform: translateX(0); }

.toast-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--color-green);
    color: var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.toast-content { display: flex; flex-direction: column; }
.toast-name { font-size: 0.82rem; font-weight: 800; color: #ffffff; }
.toast-action { font-size: 0.75rem; color: #cbd5e1; }
.toast-time { font-size: 0.68rem; color: var(--color-green); font-weight: 600; margin-top: 0.1rem; }

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    margin-left: auto;
    padding-left: 0.4rem;
}

/* ==========================================================================
   MINI QUADRADO UPGRADE POPUP ($9.90 - ULTRA ENXUTO & COMPACTO)
   ========================================================================== */
.upgrade-modal-backdrop, .exit-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.upgrade-modal-backdrop.show, .exit-modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.mini-upgrade-card {
    background: linear-gradient(160deg, #182236 0%, #0d1320 50%, #091a13 100%);
    border: 2px solid rgba(245, 158, 11, 0.75);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.2rem 1.3rem;
    max-width: 360px;
    width: 100%;
    margin: auto;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95), 0 0 35px rgba(245, 158, 11, 0.35);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 90vh;
}

.upgrade-modal-backdrop.show .mini-upgrade-card,
.exit-modal-backdrop.show .mini-upgrade-card {
    transform: scale(1);
}

.upgrade-modal-close, .exit-modal-close {
    position: absolute;
    top: 0.6rem;
    right: 0.9rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    z-index: 10;
}

.upgrade-modal-close:hover, .exit-modal-close:hover { color: #ffffff; }

.mini-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.45);
    color: var(--color-yellow);
    padding: 0.18rem 0.7rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.mini-modal-head {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.mini-modal-sub {
    font-size: 0.8rem;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.mini-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.7rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
    margin-bottom: 0.8rem;
    text-align: left;
}

.mini-box-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #e2e8f0;
}

.mini-box-row i {
    font-size: 0.88rem;
    flex-shrink: 0;
}

.mini-price-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(245, 158, 11, 0.1);
    border: 1px dashed rgba(245, 158, 11, 0.35);
    border-radius: 6px;
    padding: 0.4rem 0.75rem;
    margin-bottom: 0.9rem;
    font-size: 0.8rem;
}

.val-del { color: var(--text-muted); font-size: 0.78rem; }
.pay-tag { color: #ffffff; font-weight: 700; }
.pay-tag strong { color: var(--color-green-glow); font-size: 1.1rem; margin-left: 0.25rem; }

.mini-btn {
    width: 100%;
    padding: 0.85rem 1rem;
    justify-content: center;
}

.mini-btn .btn-content {
    margin-left: 0;
    text-align: center;
}

.mini-btn .btn-content strong {
    font-size: 0.92rem;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.animate-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

.animate-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE-FIRST OPTIMIZATION)
   ========================================================================== */
@media (max-width: 1024px) {
    .tier-pro.featured-card { transform: scale(1); }
    .tier-pro.featured-card:hover { transform: translateY(-4px); }
    .floating-badge { display: none; }
    .book-card-flex { flex-direction: column; text-align: center; }
    .book-cover-col { margin: 0 auto; }
    .book-highlights-grid { grid-template-columns: 1fr; }
    .book-feature-bullets li { text-align: left; }
    .unified-card-footer { justify-content: center; }
}

@media (max-width: 768px) {
    .urgency-container { justify-content: center; text-align: center; gap: 0.35rem; }
    .urgency-left { justify-content: center; font-size: 0.76rem; gap: 0.35rem; }
    .urgency-right-group { justify-content: center; gap: 0.35rem; }
    .live-viewers-pill, .stock-pill { font-size: 0.68rem; padding: 0.12rem 0.45rem; }
    
    .hero-section { padding: 2rem 0 1rem; }
    .hero-pill-badge { font-size: 0.7rem; padding: 0.2rem 0.7rem; margin-bottom: 0.8rem; }
    .hero-title { font-size: clamp(1.55rem, 5vw, 2.1rem); margin-bottom: 0.75rem; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 1.1rem; }
    .hero-callout { padding: 0.8rem 1rem; gap: 0.75rem; margin-bottom: 1.3rem; }
    .callout-icon { font-size: 1.5rem; }
    .callout-text p { font-size: 0.88rem; }
    
    .mockup-stage { padding: 0.5rem 0 1.5rem; }
    .book-3d-card { width: 220px; height: 330px; }
    
    .pricing-tier-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .pricing-card { padding: 1.8rem 1.2rem 1.6rem; }
    .tier-title { font-size: 1.35rem; }
    .tier-val { font-size: 2.8rem; }
    
    .bundle-collection-section { padding: 3.5rem 0; }
    .unified-books-stack { gap: 2rem; margin-top: 1.5rem; }
    .unified-book-card { padding: 1.6rem 1.1rem; }
    .book-cover-col { width: 100%; max-width: 190px; }
    .unified-cover-wrapper { max-width: 180px; margin: 0 auto; }
    .unified-book-title { font-size: 1.4rem; }
    .unified-book-subtitle { font-size: 0.9rem; }
    .unified-book-p { font-size: 0.88rem; }
    
    .triple-guarantee-box { padding: 1.6rem 1.1rem; }
    .guarantee-header { flex-direction: column; text-align: center; gap: 0.75rem; }
    
    .final-cta-card { padding: 2rem 1.1rem; }
    .btn-primary-cta { padding: 1.05rem 1.2rem; flex-direction: column; gap: 0.5rem; text-align: center; }
    .btn-content { margin-left: 0; text-align: center; }
    .btn-content strong { font-size: 1.05rem; }
    .btn-arrow { display: none; }
    
    .sticky-title { display: none; }
    .live-toast { left: 10px; right: 10px; max-width: calc(100% - 20px); bottom: 65px; padding: 0.55rem 0.75rem; }
}

@media (max-width: 420px) {
    .book-3d-card { width: 190px; height: 285px; }
    .mini-upgrade-card { max-width: 320px; padding: 1.2rem 1rem; }
}
