:root {
    --primary-purple: #6366F1;
    --secondary-purple: #8B5CF6;
    --accent-purple: #A855F7;
    --success-green: #10B981;
    --text-dark: #111827;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --bg-light: #F9FAFB;
    --border-light: #E5E7EB;
    --black: #000000;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section containers with rounded borders */
.section-container {
    background: var(--white);
    border-radius: 12px;
    padding: 4rem 3rem;
    margin: 2rem auto;
    max-width: 1000px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.section-container-narrow {
    background: var(--white);
    border-radius: 12px;
    padding: 4rem 3rem;
    margin: 2rem auto;
    max-width: 1000px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

/* Navigation */
.nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.logo i {
    color: var(--black);
}

.logo i {
    width: 20px;
    height: 20px;
    color: var(--black);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-cta {
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Hero Section */
.hero {
    background: var(--white);
    color: var(--text-dark);
    padding: 5rem 0;
    text-align: center;
}

.hero-container {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero .subheading {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--black);
}

/* Hero Badge */
.hero-badge {
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    margin: 2rem 0;
    position: relative;
}

.book-mockup {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.book-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.book-image:hover {
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.bonus-sticker {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--success-green);
    color: var(--white);
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    max-width: 120px;
    z-index: 3;
    transform: rotate(-5deg);
}

/* Hero Benefits */
.hero-benefits {
    margin: 2rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.benefit-list i {
    color: var(--success-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Hero CTA */
.hero-cta {
    margin-top: 2rem;
}

.btn-hero-primary {
    background: var(--primary-purple);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-hero-primary:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.trust-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* New Hero Section */
.new-hero {
    background: #FFF8E1;
    color: #333;
    padding: 30px 0 45px;
    position: relative;
}

/* Header Section */
.hero-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.new-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-purple);
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--black);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.4;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Two Panel Section */
.hero-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: start;
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

/* Left Panel - Image */
.hero-image-panel {
    position: relative;
}

.book-showcase {
    position: relative;
    max-width: 350px;
    margin: 0 0 0 auto;
    transform: translateY(10px);
}

.new-hero .book-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: none;
    transition: transform 0.3s ease;
}

.book-showcase:hover .book-image {
    transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-purple);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    animation: pulse 2s infinite;
}

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

/* Right Panel - Selling Points */
.hero-content-panel {
    padding-left: 20px;
}

.panel-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--black);
}

.selling-points {
    list-style: none;
    margin-bottom: 24px;
}

.selling-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
}

.selling-point:hover {
    transform: translateX(4px);
}

.point-icon {
    background: var(--primary-purple);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

.point-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.point-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

/* CTA Section */
.new-hero .hero-cta {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-primary {
    background: var(--primary-purple);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.cta-primary:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

/* Unified Primary CTA */
.cta-primary-unified {
    background: var(--primary-purple);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.cta-primary-unified:hover {
    background: var(--secondary-purple);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
}

.amazon-link {
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    color: #666;
}

.amazon-link a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
}

.amazon-link a:hover {
    text-decoration: underline;
}

/* Testimonial Section */
.testimonial-section {
    background: #f8f9fa;
    padding: 40px 0;
    margin: 20px 0;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-purple);
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

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

.quote-icon {
    color: var(--primary-purple);
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    quotes: none;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

.cta-secondary {
    background: transparent;
    color: var(--black);
    padding: 10px 20px;
    border: 2px solid var(--primary-purple);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

.cta-secondary:hover {
    background: var(--primary-purple);
    color: white;
}

.price-info {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    color: #666;
}

.price-highlight {
    color: var(--black);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .new-hero {
        padding: 25px 0 40px;
    }

    .hero-header {
        margin-bottom: 25px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .hero-panels {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 15px;
    }

    .cta-primary-unified {
        padding: 16px 28px;
        font-size: 1rem;
        max-width: none;
        width: 100%;
    }

    .testimonial-card {
        padding: 24px;
        margin: 0 10px;
    }

    .hero-content-panel {
        padding-left: 0;
        order: -1;
    }

    .panel-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .selling-point {
        padding: 12px;
    }

    .point-icon {
        width: 36px;
        height: 36px;
    }

    .point-content h4 {
        font-size: 1rem;
    }

    .point-content p {
        font-size: 0.9rem;
    }

    .new-hero .hero-cta {
        margin-top: 32px;
    }

    .cta-primary {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-panels {
        gap: 30px;
    }

    .selling-point {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .point-icon {
        align-self: center;
    }
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    cursor: pointer;
    min-width: 320px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-light);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    min-width: 280px;
    justify-content: center;
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--white);
    border-color: var(--text-light);
}

.trust-elements {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--success-green);
    font-weight: 600;
}

/* Video Section */
.video-section {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.video-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.video-placeholder {
    background: var(--white);
    border-radius: 12px;
    padding: 4rem 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.video-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.author-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-light);
    flex-shrink: 0;
    overflow: hidden;
}

.author-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.video-text {
    text-align: left;
}

.video-points {
    list-style: none;
    margin-top: 1rem;
}

.video-points li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Social Proof */
.social-proof {
    padding: 4rem 0;
    background: var(--white);
    text-align: center;
    overflow: hidden;
}

.social-proof h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--black);
}

/* Marquee Container */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause animation on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1000px;
}

.company-logo {
    padding: 1.5rem 2.5rem;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.company-logo img {
    max-width: 100%;
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.company-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.benefits h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-weight: 700;
}

.benefits .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-card {
    background: transparent;
    padding: 2rem 1rem;
    text-align: center;
    border: none;
    transition: transform 0.2s;
}

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

.benefit-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #3B82F6;
}

/* Different colors for each benefit icon */
.benefit-card:nth-child(1) .benefit-icon {
    color: #3B82F6; /* Blue */
}

.benefit-card:nth-child(2) .benefit-icon {
    color: #10B981; /* Green */
}

.benefit-card:nth-child(3) .benefit-icon {
    color: #F59E0B; /* Orange */
}

.benefit-card:nth-child(4) .benefit-icon {
    color: #EF4444; /* Red */
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
    background: var(--white);
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.step p {
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: var(--bg-light);
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: none;
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--black);
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background: var(--white);
}

.faq-container {
    background: var(--white);
    border-radius: 12px;
    padding: 4rem 3rem;
    margin: 0 auto;
    max-width: 1000px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid rgba(74, 26, 92, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    text-align: left;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 1.5rem 1.5rem 1.5rem;
    color: var(--text-light);
    border-top: 1px solid #E5E7EB;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
    background: var(--primary-purple);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.final-cta .subheading {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.pricing-box {
    background: var(--white);
    color: var(--text-dark);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.pricing-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.features-list i {
    color: var(--success-green);
}

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

.regular-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
}

.launch-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin: 0.5rem 0;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--text-dark);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #E5E7EB;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-copyright {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
    color: var(--text-light);
    font-size: 0.9rem;
}



/* Privacy Policy Styles */
.privacy-policy {
    padding: 4rem 0;
    background: var(--bg-light);
}

.policy-container {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.privacy-policy h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.policy-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-section a {
    color: var(--black);
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    margin-right: 16px;
}

.mobile-menu-toggle i {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-content {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        background: var(--white);
        flex-direction: column;
        padding: 16px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 100;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 8px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero .subheading {
        font-size: 1.2rem;
    }

    .hero-container {
        padding: 2rem 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .book-mockup {
        max-width: 300px;
    }
    
    .book-image {
        max-width: 250px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .bonus-sticker {
        font-size: 0.7rem;
        padding: 0.5rem;
        max-width: 100px;
    }
    
    .hero-benefits {
        text-align: center;
    }
    
    .benefit-list {
        text-align: left;
    }
    
    .benefit-list li {
        font-size: 1rem;
    }
    
    /* Privacy Policy Mobile Styles */
    .policy-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .privacy-policy h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .btn-hero-primary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: none;
        min-width: 100%;
        margin: 0;
    }
    
    .final-cta-buttons {
        width: 100%;
    }

    .trust-elements {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .company-logos {
        gap: 1rem;
    }

    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }

    .benefit-card p {
        font-size: 1rem;
    }

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

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

    /* Mobile container adjustments */
    .section-container,
    .section-container-narrow,
    .social-proof-container,
    .benefits-container,
    .how-it-works-container,
    .testimonials-container,
    .faq-container,
    .hero-container {
        margin: 1rem;
        padding: 3rem 2rem;
        border-radius: 8px;
        max-width: calc(100% - 2rem);
    }

    .video-placeholder {
        padding: 3rem 2rem;
        border-radius: 8px;
    }
}

/* Mobile CTA Adjustments */
@media (max-width: 640px) {
  .nav-cta {
    display: none;
  }
}

/* Mobile Sticky Bottom CTA */
.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: env(safe-area-inset-bottom, 0);
  z-index: 50;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0));
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
}

.mobile-sticky-cta .btn {
  width: 100%;
  min-height: 48px; /* accessible tap target */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #FFD700;
  color: #000000;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.mobile-sticky-cta .btn:hover {
  background-color: #FACC15;
}

@media (min-width: 641px) {
  .mobile-sticky-cta {
    display: none;
  }
}
