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

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d2d2d 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #999999;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    padding: 15px 25px;
    border-radius: 12px;
    margin: 0 0 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

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

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
}

.cta-button.large {
    padding: 22px 45px;
    font-size: 1.3rem;
}

.cta-button.xl {
    padding: 25px 50px;
    font-size: 1.4rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #cccccc;
}

.indicator i {
    color: #ff6b35;
    font-size: 1.1rem;
}

/* Product Showcase */
.product-showcase {
    position: relative;
    perspective: 1000px;
}

.hero-product-mobile {
    display: none;
    margin: 2rem 0;
    text-align: center;
}

.hero-product-mobile .book-cover-image {
    width: 250px;
    margin: 0 auto;
}

.book-cover-image {
    width: 350px;
    height: auto;
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    margin: 0 auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.book-cover-image:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.02);
}

.main-book-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 3px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.main-book-image:hover {
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(255, 107, 53, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Bonus badge removed as per user request */

/* Social Proof */
.social-proof {
    background: rgba(255, 107, 53, 0.1);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.social-proof-cta {
    text-align: center;
    margin-top: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 5px;
}

.stat .label {
    color: #cccccc;
    font-size: 1rem;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 80px 0;
    text-align: center;
}

.problem-solution h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b35;
}

.problems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.problem-item {
    background: rgba(255, 107, 53, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.problem-item i {
    color: #ff6b35;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.solution {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 142, 83, 0.1));
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

.solution h3 {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.solution .cta-button {
    margin-top: 2rem;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #ff6b35;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.content-overview h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
}

.content-overview p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits {
    list-style: none;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #cccccc;
}

.benefits i {
    color: #ff6b35;
    font-size: 1.1rem;
}

.chapters-list {
    background: rgba(255, 107, 53, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.chapters-list h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
}

.chapter {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
    color: #cccccc;
    transition: all 0.3s ease;
}

.chapter:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.bonus-section {
    margin-top: 2rem;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 142, 83, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.bonus-section h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-item {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 10px;
}

.bonus-section .cta-button {
    margin-top: 1.5rem;
    width: 100%;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: rgba(255, 107, 53, 0.05);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #ff6b35;
}

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

.testimonial {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.stars {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial p {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author {
    color: #ff6b35;
    font-weight: 600;
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Lead Magnet */
.lead-magnet {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 142, 83, 0.05));
    text-align: center;
}

.lead-content h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.lead-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.lead-content p {
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lead-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.lead-form input {
    flex: 1;
    min-width: 250px;
    padding: 18px 25px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 1rem;
}

.lead-form input::placeholder {
    color: #999999;
}

.lead-form button {
    padding: 18px 35px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lead-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
}

.benefit i {
    color: #ff6b35;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.pricing-header p {
    color: #cccccc;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 142, 83, 0.05));
    padding: 50px;
    border-radius: 25px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
}

.price-before {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1.5rem;
    color: #999999;
    text-decoration: line-through;
}

.discount {
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.currency {
    font-size: 1.5rem;
    color: #ff6b35;
    font-weight: 600;
}

.amount {
    font-size: 2.5rem;
    color: #ff6b35;
    font-weight: 700;
}

.period {
    font-size: 1rem;
    color: #cccccc;
}

.price-installments-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 142, 83, 0.1));
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.4);
    margin-bottom: 1rem;
    text-align: center;
}

.installment-emphasis {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.installment-text {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
}

.installment-number {
    color: #ff6b35;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.installment-price {
    color: #ff6b35;
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.installment-subtext {
    color: #cccccc;
    font-size: 1.1rem;
    font-weight: 500;
}

.price-or {
    text-align: center;
    color: #cccccc;
    font-size: 1.2rem;
    margin: 1rem 0;
    font-weight: 500;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0;
    font-size: 2rem;
    color: #cccccc;
}

.urgency-note {
    background: rgba(255, 107, 53, 0.2);
    padding: 15px;
    border-radius: 10px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ff6b35;
    font-weight: 600;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: rgba(255, 107, 53, 0.05);
    text-align: center;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.guarantee h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ff6b35;
}

.guarantee p {
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.guarantee-points {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
}

.point i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.guarantee-cta {
    text-align: center;
    margin-top: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #ff6b35;
}

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

.faq-item {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.2);
}

.faq-question i {
    color: #ff6b35;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 25px 30px;
    color: #cccccc;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 142, 83, 0.05));
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.final-cta > p {
    color: #cccccc;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.cta-container {
    margin-bottom: 2rem;
}

.final-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #cccccc;
    margin-top: 1.5rem;
}

.final-guarantee i {
    color: #ff6b35;
}

.urgency-final {
    background: rgba(255, 107, 53, 0.2);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.urgency-final strong {
    color: #ff6b35;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer p {
    color: #999999;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

/* Exit Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 50px;
    border-radius: 25px;
    border: 2px solid #ff6b35;
    text-align: center;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #999999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #ff6b35;
}

.popup-content h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.popup-content p {
    color: #cccccc;
    margin-bottom: 2rem;
}

.popup-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.old-price {
    font-size: 1.5rem;
    color: #999999;
    text-decoration: line-through;
}

.new-price {
    font-size: 2.5rem;
    color: #ff6b35;
    font-weight: 700;
}

.popup-timer {
    color: #ff6b35;
    font-weight: 700;
    margin-top: 1rem;
}

.coupon-info {
    background: rgba(255, 107, 53, 0.2);
    padding: 15px;
    border-radius: 10px;
    border: 2px dashed rgba(255, 107, 53, 0.5);
    margin: 1.5rem 0;
    text-align: center;
}

.coupon-info p {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
}

.coupon-code {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 8px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-product {
        display: none;
    }
    
    .hero-product-mobile {
        display: block;
    }
    
    .hero-product-mobile .book-cover-image {
        width: 280px;
        transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
    }
    
    .installment-emphasis {
        flex-direction: column;
        gap: 5px;
    }
    
    .installment-text {
        font-size: 1.2rem;
    }
    
    .installment-number {
        font-size: 2rem;
    }
    
    .installment-price {
        font-size: 1.8rem;
    }
    
    .trust-indicators {
        justify-content: center;
        gap: 20px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .problems {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .lead-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .lead-form input {
        min-width: auto;
    }
    
    .guarantee-points {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .popup-content {
        margin: 20px;
        padding: 30px;
    }
    
    .coupon-code {
        font-size: 1.1rem;
        padding: 8px 12px;
    }
    
    .urgency-banner {
        flex-direction: row;
        text-align: center;
        gap: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-product-mobile .book-cover-image {
        width: 220px;
        transform: perspective(600px) rotateY(-3deg) rotateX(1deg);
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .payment-methods {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .cta-button.xl {
        padding: 20px 35px;
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.content-section,
.testimonials,
.pricing-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
