/* =========================================
   GLOBAL STYLES & RESET
   ========================================= */

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

:root {
    /* Color Palette */
    --black: #000000;
    --deep-black: #0a0a0a;
    --gold: #FFD700;
    --gold-dark: #DAA520;
    --gold-light: #FFF4CC;
    --white: #FFFFFF;
    --gray-light: #E5E5E5;
    --gray-medium: #CCCCCC;
    --gray-dark: #333333;

    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;

    /* Safe area insets for mobile notches */
    --safe-area-inset-top: env(safe-area-inset-top);
    --safe-area-inset-bottom: env(safe-area-inset-bottom);
    --safe-area-inset-left: env(safe-area-inset-left);
    --safe-area-inset-right: env(safe-area-inset-right);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   NAVIGATION
   ========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.8));
    padding-top: calc(1rem + var(--safe-area-inset-top));
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gold);
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(0,0,0,0.98);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo i {
    font-size: 1.5rem;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* =========================================
   BUTTONS
   ========================================= */

.cta-button {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width var(--transition-medium), height var(--transition-medium);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.cta-button i {
    margin-right: 0.5rem;
}

.cta-large {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.cta-mega {
    font-size: 1.35rem;
    padding: 1.75rem 3.5rem;
    width: 100%;
    margin-top: 2rem;
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: 
        radial-gradient(ellipse at top, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        var(--black);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 215, 0, 0.03) 2px, rgba(255, 215, 0, 0.03) 4px);
    pointer-events: none;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title .subtitle {
    display: block;
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.hero-title .highlight {
    display: block;
    color: var(--gold);
    font-size: 2.5rem;
    margin-top: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray-light);
}

.hero-description strong {
    color: var(--gold);
    font-weight: 600;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-text {
    margin-top: 1.5rem;
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.guarantee-text i {
    color: var(--gold);
    margin-right: 0.5rem;
}

/* Book Cover Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
}

.book-cover-image {
    width: 100%;
    max-width: 360px;
    border: 4px solid var(--gold);
    border-radius: 20px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.25);
    transform: rotateY(-8deg);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
    animation: float 6s ease-in-out infinite;
    object-fit: cover;
}

.book-cover-image:hover {
    transform: rotateY(0deg) scale(1.03);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.75),
        0 0 50px rgba(255, 215, 0, 0.35);
}

.book-cover-placeholder {
    width: 350px;
    height: 480px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-15deg);
    transition: transform var(--transition-slow);
    animation: float 6s ease-in-out infinite;
}

.book-cover-placeholder:hover {
    transform: rotateY(0deg) scale(1.05);
}

@keyframes float {
    0%, 100% { transform: rotateY(-15deg) translateY(0px); }
    50% { transform: rotateY(-15deg) translateY(-20px); }
}

.book-spine {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right, #1a1a1a, var(--gray-dark));
    border-left: 2px solid var(--gold);
    transform: rotateY(-90deg);
    transform-origin: right;
}

.book-front {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 3px solid var(--gold);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 0 50px rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.book-front::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

.book-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.book-ornament-top,
.book-ornament-bottom {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    position: relative;
}

.book-ornament-top::before,
.book-ornament-top::after,
.book-ornament-bottom::before,
.book-ornament-bottom::after {
    content: '◆';
    position: absolute;
    color: var(--gold);
    font-size: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
}

.book-ornament-top::before { left: -15px; }
.book-ornament-top::after { right: -15px; }
.book-ornament-bottom::before { left: -15px; }
.book-ornament-bottom::after { right: -15px; }

.book-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.1;
    margin: 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.book-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 2px;
    margin: 1.5rem 0;
    line-height: 1.4;
}

.book-author {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-top: auto;
    padding-top: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--gold);
    animation: bounce 2s infinite;
}

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

/* =========================================
   SOCIAL PROOF BANNER
   ========================================= */

.social-proof-banner {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    padding: 1.5rem 0;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.proof-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--black);
    font-weight: 600;
}

.proof-item i {
    font-size: 1.5rem;
}

/* =========================================
   SECTION STYLES
   ========================================= */

section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title .highlight {
    color: var(--gold);
    display: inline-block;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-medium);
    margin-bottom: 4rem;
}

/* =========================================
   PROBLEM SECTION
   ========================================= */

.problem-section {
    background: linear-gradient(to bottom, var(--black), var(--deep-black));
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-medium);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.problem-card i {
    font-size: 3rem;
    color: #FF4444;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.problem-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

.solution-intro {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.solution-intro h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.solution-intro p {
    font-size: 1.25rem;
    color: var(--gray-light);
}

/* =========================================
   WHAT'S INSIDE SECTION
   ========================================= */

.whats-inside {
    background: 
        radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        var(--deep-black);
}

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

.category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left var(--transition-slow);
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold);
}

.category-card p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.prompt-count {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* =========================================
   BENEFITS SECTION
   ========================================= */

.benefits {
    background: var(--black);
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-medium);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.benefit-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */

.testimonials {
    background: linear-gradient(to bottom, var(--deep-black), var(--black));
    padding: 6rem 0;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: var(--gold);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--gold);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* =========================================
   PRICING SECTION
   ========================================= */

.pricing {
    background: 
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        var(--black);
    padding: 6rem 0;
}

.pricing-card {
    max-width: 900px;
    margin: 3rem auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF4444 0%, #CC0000 100%);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.pricing-left h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.price-old {
    font-size: 2rem;
    color: var(--gray-medium);
    text-decoration: line-through;
}

.price-current {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.price-note {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--gray-light);
}

.pricing-features i {
    color: var(--gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.trust-badges i {
    color: var(--gold);
    font-size: 1.2rem;
}

.countdown-wrapper {
    max-width: 600px;
    margin: 0 auto 2rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.countdown-label {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.countdown-label i {
    margin-right: 0.5rem;
}

.countdown-display {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 3px;
}

.security-callout {
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.security-callout i {
    color: var(--gold);
    font-size: 1.2rem;
}

.security-callout p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.money-back-guarantee {
    max-width: 700px;
    margin: 4rem auto 0;
    display: flex;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 2.5rem;
}

.guarantee-badge {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.guarantee-badge i {
    font-size: 2.5rem;
    color: var(--black);
}

.guarantee-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    color: var(--gray-light);
    line-height: 1.6;
}

/* =========================================
   FAQ SECTION
   ========================================= */

.faq {
    background: var(--deep-black);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

.faq-question i {
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform var(--transition-medium);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--gray-medium);
    line-height: 1.8;
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */

.final-cta {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    padding: 6rem 0;
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.final-cta p {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
}

.final-cta .cta-button {
    background: var(--black);
    color: var(--gold);
    border: 2px solid var(--black);
}

.final-cta .cta-button:hover {
    background: var(--deep-black);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.cta-subtext {
    margin-top: 1.5rem;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
}

.cta-subtext i {
    margin-right: 0.5rem;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
    background: var(--deep-black);
    border-top: 2px solid var(--gold);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-medium);
    margin-bottom: 0.5rem;
}

.copyright {
    font-size: 0.9rem;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a,
.footer-legal a {
    color: var(--gray-medium);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: var(--gray-medium);
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.footer-disclaimer p {
    color: var(--gray-dark);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* =========================================
   LEGAL PAGES
   ========================================= */

body.legal-page {
    background-color: var(--black);
    color: var(--white);
    min-height: 100vh;
    padding: 2rem 0 4rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.legal-header h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin: 1rem 0;
    text-transform: uppercase;
}

.legal-updated {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.legal-back {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.legal-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.legal-content section {
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.01);
}

.legal-content section:not(:last-child) {
    border-bottom: 1px solid var(--gold);
    border-radius: 0;
    margin-bottom: 0;
}

.legal-content section:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.legal-content section:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 0;
}

.legal-content h2 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legal-content p:last-child,
.legal-content li:last-child {
    margin-bottom: 0;
}

.legal-content ul,
.legal-content ol {
    margin-left: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
}

.legal-content ul:last-child,
.legal-content ol:last-child {
    margin-bottom: 0;
}

.legal-content a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

.legal-content a:hover {
    border-bottom-color: var(--gold);
}

/* =========================================
   BACK TO TOP BUTTON
   ========================================= */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title .highlight {
        font-size: 2rem;
    }
    
    .hero-image {
        order: -1;
    }

    .pricing-content {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   COOKIE BANNER
   ========================================= */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    border-top: 2px solid var(--gold);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: slideUp 0.5s ease;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-text i {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.cookie-text p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.cookie-text a:hover {
    color: var(--gold-light);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-accept,
.cookie-decline {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.cookie-decline {
    background: transparent;
    color: var(--gray-medium);
    border: 1px solid var(--gray-medium);
}

.cookie-decline:hover {
    color: var(--white);
    border-color: var(--white);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .nav-content {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .logo {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .nav-cta {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-accept,
    .cookie-decline {
        flex: 1;
        min-width: 120px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title .highlight {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .book-cover-placeholder {
        width: 280px;
        height: 380px;
    }
    
    .book-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-large {
        font-size: 1.1rem;
        padding: 1.25rem 2rem;
    }
    
    .cta-mega {
        font-size: 1.1rem;
        padding: 1.25rem 2rem;
    }
    
    .categories-grid,
    .benefits-grid,
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-items {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .money-back-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .logo {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .nav-cta {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title .highlight {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .book-cover-placeholder {
        width: 240px;
        height: 320px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .price-current {
        font-size: 3rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-content section {
        padding: 1rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
}