/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background: linear-gradient(180deg, #faf8f5 0%, #f5f5dc 50%, #e6ddd4 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 50%, #2c1810 100%);
    color: #f5f5dc;
    padding: 12px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
}

.top-bar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #8b4513 50%, transparent 100%);
}

.top-bar p {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 25%, #5d2f0a 75%, #3d1f06 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 245, 220, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 69, 19, 0.3) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(245, 245, 220, 0.05) 50%, transparent 70%);
    opacity: 0.8;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, rgba(245, 245, 220, 0.3) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.title-main {
    display: block;
    color: #f5f5dc;
}

.title-highlight {
    display: block;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #f5f5dc;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-question {
    background: rgba(245, 245, 220, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 4px solid #8b4513;
}

.hero-question h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f5f5dc;
}

.hero-question p {
    font-size: 1.1rem;
    color: #e6e6e6;
}

.truth-statement {
    background: rgba(139, 69, 19, 0.15);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.truth-statement p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.truth-statement p:last-child {
    margin-bottom: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-mockup {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    /* Removed hover animation */
}

/* Introduction Section */
.introduction {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5dc 0%, #faf8f5 50%, #f0ead6 100%);
    position: relative;
}

.introduction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, rgba(139, 69, 19, 0.1) 0%, transparent 100%);
}

.introduction::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 69, 19, 0.05) 100%);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h3 {
    font-size: 1.3rem;
    color: #8b4513;
    margin-bottom: 20px;
    font-weight: 500;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 25px;
    line-height: 1.2;
}

.product-description {
    font-size: 1.2rem;
    color: #5d2f0a;
    margin-bottom: 40px;
    line-height: 1.6;
}

.unique-value {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    border-left: 5px solid #8b4513;
}

.unique-value p {
    font-size: 1.1rem;
    color: #2c1810;
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 50%, #f5f5dc 100%);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #8b4513 50%, transparent 100%);
}

.benefits::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #8b4513 50%, transparent 100%);
}

.benefits-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-items {
    list-style: none;
}

.benefit-items li {
    background: #faf8f5;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid #8b4513;
    font-size: 1.1rem;
    color: #2c1810;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-items li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

.benefit-items li::before {
    content: '✓';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #8b4513;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Product Showcase Section */
.product-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5dc 0%, #e6ddd4 25%, #d4c4a8 50%, #e6ddd4 75%, #f0ead6 100%);
    position: relative;
    overflow: hidden;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 20%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(245, 245, 220, 0.3) 0%, transparent 50%);
    opacity: 0.6;
}

.product-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 69, 19, 0.1) 100%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.showcase-item {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 50%, #f5f5dc 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 15px 40px rgba(139, 69, 19, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(139, 69, 19, 0.02) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover::before {
    opacity: 1;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.15);
}

.showcase-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    /* Removed animations */
}

.showcase-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 10px;
}

.showcase-item p {
    font-size: 1rem;
    color: #5d2f0a;
    line-height: 1.5;
}

/* What's Included Section */
.whats-included {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 25%, #5d2f0a 50%, #8b4513 75%, #654321 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.whats-included::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(245, 245, 220, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(160, 82, 45, 0.2) 0%, transparent 50%);
    opacity: 0.6;
}

.whats-included::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, rgba(245, 245, 220, 0.1) 100%);
}

.whats-included h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #f5f5dc;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.included-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: rgba(245, 245, 220, 0.1);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.included-item:hover {
    background: rgba(245, 245, 220, 0.15);
    transform: translateY(-5px);
}

.checkmark {
    color: #32cd32;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.included-item p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.audiobook-mockup {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5dc 0%, #f0ead6 25%, #e6ddd4 50%, #f5f5dc 75%, #faf8f5 100%);
    position: relative;
}

.target-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(139, 69, 19, 0.1) 0%, transparent 100%);
}

.target-audience::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 69, 19, 0.08) 100%);
}

.target-audience h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 60px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.bullet-point {
    color: #8b4513;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.audience-item p {
    font-size: 1.1rem;
    color: #2c1810;
    line-height: 1.5;
}

.bonus-mention {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    border: 2px solid #8b4513;
}

.bonus-mention p {
    font-size: 1.2rem;
    color: #2c1810;
}

/* CTA Sections */
.cta-section, .final-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 25%, #654321 50%, #5d2f0a 75%, #8b4513 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before, .final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(245, 245, 220, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(160, 82, 45, 0.2) 0%, transparent 50%);
    opacity: 0.7;
}

.cta-button {
    background: linear-gradient(135deg, #32cd32 0%, #228b22 50%, #32cd32 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 10px 30px rgba(50, 205, 50, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(50, 205, 50, 0.4);
    background: linear-gradient(135deg, #228b22 0%, #32cd32 100%);
}

.final-cta-content .cta-text {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c1810 0%, #3d2317 25%, #1a0f08 50%, #2c1810 75%, #4a2f1e 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 69, 19, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 245, 220, 0.05) 0%, transparent 50%);
    opacity: 0.8;
}

.pricing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(245, 245, 220, 0.1) 0%, transparent 100%);
}

.pricing-badge {
    margin-bottom: 40px;
}

.limited-time {
    background: #8b4513;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-block;
    animation: pulse 2s infinite;
}

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

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.original-price, .current-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #f5f5dc;
}

.old-price {
    font-size: 2rem;
    text-decoration: line-through;
    color: #999;
    font-weight: 600;
}

.new-price {
    font-size: 3rem;
    color: #32cd32;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(50, 205, 50, 0.5);
}

.arrow {
    font-size: 2rem;
    color: #8b4513;
    font-weight: bold;
}

/* Guarantee Section */
.guarantee {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f5dc 0%, #faf8f5 25%, #f0ead6 50%, #e6ddd4 75%, #f5f5dc 100%);
    text-align: center;
    position: relative;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, rgba(139, 69, 19, 0.1) 0%, transparent 100%);
}

.guarantee::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 69, 19, 0.1) 100%);
}

.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.1);
    border: 2px solid #32cd32;
}

.guarantee-content h3 {
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 20px;
    font-weight: 700;
}

.guarantee-content p {
    font-size: 1.1rem;
    color: #5d2f0a;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f08 50%, #2c1810 100%);
    color: #f5f5dc;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #8b4513 50%, transparent 100%);
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .whats-included h2, .target-audience h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .old-price {
        font-size: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.product-mockup, .audiobook-mockup {
    opacity: 1;
    /* Removed animation */
}

/* Removed fadeInUp animation */

/* Hover effects for sections */
.benefits, .whats-included, .target-audience {
    transition: all 0.3s ease;
}

/* Enhanced visual hierarchy */
h1, h2, h3 {
    font-weight: 700;
}

p {
    font-weight: 400;
}

strong {
    font-weight: 600;
    color: #2c1810;
}


/* Responsive Design */
@media (max-width: 768px) {
    .top-bar p {
        font-size: 0.8rem;
        padding: 0 10px;
        line-height: 1.4;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

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

    .product-mockup {
        max-width: 80%;
        margin: 0 auto;
    }

    .benefits-content, .whats-included-content, .target-audience-content {
        padding: 0 10px;
    }

    .benefit-items li, .included-item, .audience-item {
        font-size: 0.95rem;
        padding: 15px;
    }

    .cta-button {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .pricing h2 {
        font-size: 2rem;
    }

    .old-price {
        font-size: 1.8rem;
    }

    .new-price {
        font-size: 2.5rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .showcase-item {
        padding: 25px;
    }

    .showcase-image {
        max-width: 70%;
        margin: 0 auto 15px auto;
    }
}

