/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
   :root {
    /* Colors */
    --bg-dark: #0a0a0c;
    --bg-card: #151518;
    --bg-card-hover: #1e1e24;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --accent-emerald: #10b981;
    --accent-emerald-hover: #059669;
    --accent-gold: #ffd700;
    --accent-gold-hover: #e5c100;
    --danger: #ef4444;
    --danger-dark: #7f1d1d;
    --success-dark: #064e3b;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-max: 1200px;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-danger {
    color: var(--danger);
}

.text-gold {
    color: var(--accent-gold) !important;
}

/* ==========================================================================
   Buttons & FOMO Elements
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent-emerald);
    color: #fff;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-emerald-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.7);
}

.btn-massive {
    padding: 20px 48px;
    font-size: 1.25rem;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}

.pulse-btn-fast {
    animation: pulse-fast 1.5s infinite;
}

@keyframes pulse-fast {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.pulse-badge {
    animation: pulse-danger 2s infinite;
}

@keyframes pulse-danger {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* FOMO Top Banner */
.fomo-banner {
    background-color: var(--danger);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

.fomo-link {
    color: white;
    text-decoration: underline;
    font-weight: 800;
    margin-left: 8px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand .logo {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.separator {
    color: rgba(255,255,255,0.2);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
        margin-top: 16px;
    }
}

/* ==========================================================================
   Header
   ========================================================================== */
header {
    position: fixed;
    top: 40px; /* Offset for top banner */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    top: 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent-emerald);
    font-weight: 400;
}

.desktop-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--text-primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, rgba(10,10,12,0) 70%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.urgency-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.headline {
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 800;
}

.subheadline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
}

/* Countdown */
.fomo-glow {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3) !important;
}

.countdown-wrapper {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.02);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-block;
}

.countdown-label {
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    gap: 16px;
}

.time-box {
    background: var(--bg-card);
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.time-box small {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guarantee {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Problem vs Solution Section
   ========================================================================== */
.problem-solution-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.ps-card {
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.problem-card {
    background: linear-gradient(145deg, var(--danger-dark) 0%, rgba(10,10,12,1) 100%);
    border-color: rgba(239, 68, 68, 0.2);
}

.solution-card {
    background: linear-gradient(145deg, var(--success-dark) 0%, rgba(10,10,12,1) 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.ps-card h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.problem-card h3 { color: #fca5a5; }
.solution-card h3 { color: #6ee7b7; }

.ps-card ul {
    list-style: none;
}

.ps-card li {
    margin-bottom: 16px;
    font-size: 1.05rem;
    padding-left: 30px;
    position: relative;
}

.problem-card li::before {
    content: '✖';
    position: absolute;
    left: 0;
    color: var(--danger);
}

.solution-card li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
}

/* ==========================================================================
   Ultimate Offer Section (Single Bundle)
   ========================================================================== */
.bundles-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d12 100%);
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ultimate-offer-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.ultimate-offer-card {
    background: linear-gradient(145deg, #181820 0%, #0a0a0c 100%);
    border: 2px solid var(--accent-gold);
    border-radius: var(--border-radius);
    padding: 50px;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--danger);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.offer-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-header .bundle-name {
    font-size: 2rem;
    margin-bottom: 16px;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.old-price {
    font-size: 1.5rem;
    color: var(--danger);
    text-decoration: line-through;
    opacity: 0.8;
}

.new-price {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.offer-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.offer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--accent-emerald);
}

.bundle-features {
    list-style: none;
}

.bundle-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #e5e7eb;
}

.notice-text {
    font-size: 0.85rem !important;
    color: var(--accent-gold) !important;
}

.offer-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stock-warning {
    color: var(--danger);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ==========================================================================
   Testimonials Section (Sliding Carousel)
   ========================================================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-card);
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    position: relative;
    padding: 20px 0;
    margin-top: 50px;
    display: flex;
}

/* Gradient edge fading for premium look */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-card) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-card) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-marquee 80s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(145deg, #181820 0%, #0a0a0c 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    width: 350px; /* Fixed width for carousel items */
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: #e5e7eb;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}

.author-avatar-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-emerald);
}

.author-info h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    /* Shifts exact width of one block + gap to make seamless infinite loop */
    100% { transform: translateX(calc(-50% - 15px)); }
}

@media (max-width: 768px) {
    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: 50px;
    }
    .testimonial-card {
        width: 300px;
        padding: 20px;
    }
}

/* ==========================================================================
   Rewards & Founder
   ========================================================================== */
.rewards-section { padding: 80px 0; }
.rewards-container {
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(10,10,12,0) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 60px;
    text-align: center;
}
.rewards-content h2 { font-size: 2.5rem; margin-bottom: 16px; }

.founder-section { padding: 100px 0; }
.founder-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.founder-image { width: 100%; max-width: 450px; border-radius: 24px; }
.founder-content h2 { font-size: 2.5rem; margin-bottom: 24px; }

/* Social Proof Toast */
.social-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--bg-card);
    border: 1px solid var(--accent-emerald);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.social-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-img {
    font-size: 2rem;
    background: rgba(16, 185, 129, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.toast-content p {
    margin: 0;
    font-size: 0.9rem;
}

.toast-name {
    font-weight: 700;
    color: var(--accent-emerald);
}

.toast-action {
    color: var(--text-primary);
}

.toast-time {
    font-size: 0.75rem !important;
    color: var(--text-secondary);
    margin-top: 4px !important;
}

/* ==========================================================================
   Niche Highlights
   ========================================================================== */
.niche-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.niche-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.niche-card {
    background: linear-gradient(145deg, #181820 0%, #0a0a0c 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}
.niche-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.niche-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-block;
}
.niche-card h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.niche-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .niche-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .niche-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   How It Works Steps
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}
.step-card {
    background: linear-gradient(145deg, #181820 0%, #0a0a0c 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}
.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-emerald);
}
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-gold));
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.step-card h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Payment Trust Badges
   ========================================================================== */
.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.payment-logo-card {
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}
.payment-logo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.payment-logo-img {
    height: 22px;
    max-width: 70px;
    object-fit: contain;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: linear-gradient(145deg, #181820 0%, #0a0a0c 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}
.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}
.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-emerald);
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease;
    padding: 0 24px;
    background: rgba(0, 0, 0, 0.15);
}
.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
    padding-bottom: 24px;
    margin-bottom: 0;
}
.faq-item.active {
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-item.active .faq-answer {
    opacity: 1;
    padding-top: 10px;
}

/* ==========================================================================
   Mobile Sticky CTA
   ========================================================================== */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 24px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    display: none;
}
.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 20px;
}
.sticky-cta-price {
    display: flex;
    flex-direction: column;
}
.sticky-old-price {
    font-size: 0.85rem;
    color: var(--danger);
    text-decoration: line-through;
    opacity: 0.7;
    line-height: 1;
}
.sticky-new-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1.2;
}
.sticky-cta-btn {
    flex-grow: 1;
    font-size: 0.95rem !important;
    padding: 12px 20px !important;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3) !important;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
    .mobile-sticky-cta {
        display: block;
    }
    .mobile-sticky-cta.show {
        transform: translateY(0);
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .ps-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   3D Book Mockups
   ========================================================================== */
.book-container {
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    height: 260px;
    background: transparent;
}

.book {
    width: 140px;
    height: 190px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-25deg) rotateX(10deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-card:hover .book {
    transform: rotateY(-10deg) rotateX(5deg) scale(1.1);
}

.book-face {
    position: absolute;
    left: 50%;
    top: 50%;
}

.book-front, .book-back {
    width: 140px;
    height: 190px;
    margin-left: -70px;
    margin-top: -95px;
    border-radius: 2px 6px 6px 2px;
}

.book-front {
    transform: translateZ(16px);
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-left: 4px solid rgba(255,255,255,0.1);
    box-shadow: inset 4px 0 10px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
    overflow: hidden;
}

.book-front::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 10%, rgba(255,255,255,0) 90%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

.book-back {
    transform: rotateY(180deg) translateZ(16px);
    background: #0f172a;
    border-radius: 6px 2px 2px 6px;
}

.book-left, .book-right {
    width: 32px;
    height: 186px;
    margin-left: -16px;
    margin-top: -93px;
}

.book-left {
    transform: rotateY(-90deg) translateZ(70px);
    background: #1f2937;
    border-radius: 2px 0 0 2px;
}

.book-right {
    transform: rotateY(90deg) translateZ(68px);
    background: #f3f4f6;
    background-image: repeating-linear-gradient(to bottom, transparent, transparent 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 3px);
}

.book-top, .book-bottom {
    width: 136px;
    height: 32px;
    margin-left: -68px;
    margin-top: -16px;
}

.book-top {
    transform: rotateX(90deg) translateZ(93px);
    background: #f3f4f6;
    background-image: repeating-linear-gradient(to right, transparent, transparent 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 3px);
}

.book-bottom {
    transform: rotateX(-90deg) translateZ(93px);
    background: #f3f4f6;
    background-image: repeating-linear-gradient(to right, transparent, transparent 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 3px);
}

.book::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 30px;
    background: rgba(0,0,0,0.6);
    bottom: -30px;
    left: 0;
    border-radius: 50%;
    filter: blur(15px);
    transform: rotateX(70deg) translateZ(-50px);
}

.book-title {
    font-size: 15px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.book-icon {
    font-size: 36px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.book-brand {
    position: absolute;
    bottom: 15px;
    font-size: 9px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Custom Gradients for Books */
.book-1 .book-front { background: linear-gradient(135deg, #312e81 0%, #1e1b4b 100%); }
.book-1 .book-left { background: #312e81; }

.book-2 .book-front { background: linear-gradient(135deg, #064e3b 0%, #022c22 100%); }
.book-2 .book-left { background: #064e3b; }

.book-3 .book-front { background: linear-gradient(135deg, #78350f 0%, #451a03 100%); }
.book-3 .book-left { background: #78350f; }

.book-4 .book-front { background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%); }
.book-4 .book-left { background: #7c3aed; }

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .headline { font-size: 3rem; }
    .offer-body { grid-template-columns: 1fr; gap: 20px; }
    .offer-column { background: rgba(255,255,255,0.02); padding: 20px; border-radius: 8px; }
    .preview-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    header { top: 60px; } /* taller fomo banner */
    .hero-container, .founder-container, .ps-grid { grid-template-columns: 1fr; text-align: center; }
    .hero { padding-top: 150px; }
    .headline { font-size: 2.5rem; }
    .countdown { justify-content: center; }
    .ultimate-offer-card { padding: 30px 20px; }
    .new-price { font-size: 3rem; }
    .btn-massive { padding: 16px 24px; font-size: 1.1rem; }
    .offer-body, .preview-grid { grid-template-columns: 1fr !important; }
}
