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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 60px;
}

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

.urgency-badge {
    background: #ff4757;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.highlight-red {
    color: #ff6b6b;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit {
    font-size: 1.1rem;
    margin-bottom: 12px;
    padding-left: 10px;
}

.cta-section {
    text-align: center;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.cta-subtitle {
    margin-top: 15px;
    font-size: 1rem;
    opacity: 0.9;
}

/* Ebook Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-mockup {
    perspective: 1000px;
}

.ebook-cover {
    width: 300px;
    height: 400px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 15px;
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
    position: relative;
}

.ebook-cover:hover {
    transform: rotateY(-10deg) rotateX(2deg);
}

.ebook-cover h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    text-align: center;
    margin-bottom: 20px;
}

.ebook-cover p {
    font-size: 1rem;
    text-align: center;
    line-height: 1.4;
}

.ebook-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.problem-card p {
    font-size: 1.1rem;
    color: #666;
}

.shocking-fact {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.shocking-fact h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.shocking-fact p {
    font-size: 1.3rem;
    font-weight: 500;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-header {
    text-align: center;
    margin-bottom: 30px;
}

.comparison-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
}

.table-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

th, td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

th {
    background: #2c3e50;
    color: white;
    font-weight: 600;
}

.losing {
    background: #ffe6e6;
    color: #d63031;
}

.winning {
    background: #e6f7e6;
    color: #00b894;
    font-weight: 600;
}

.table-highlight {
    background: #ffd700;
    color: #2c3e50;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 0 0 15px 15px;
}

/* What You'll Learn */
.what-youll-learn {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.chapter-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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

.chapter-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.chapter-card h3 {
    font-size: 1.4rem;
    margin: 20px 0 15px;
    color: #2c3e50;
}

.chapter-card p {
    color: #666;
    line-height: 1.6;
}

.bonus-section {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.bonus-section h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.bonus-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.bonus-item {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 500;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: white;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #667eea;
    font-weight: bold;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.offer-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.offer-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.offer-header p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.price-section {
    margin-bottom: 40px;
    position: relative;
}

.old-price {
    margin-bottom: 10px;
}

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

.current-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
}

.price-label {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: #ff6b6b;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

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

.guarantee {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.guarantee h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.cta-button-large {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    border: none;
    padding: 25px 50px;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    margin-bottom: 20px;
    width: 100%;
    max-width: 500px;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.urgency {
    background: rgba(255, 107, 107, 0.2);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #ff6b6b;
    margin-top: 30px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.final-message {
    margin-top: 30px;
    font-size: 1.2rem;
    font-style: italic;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problem-grid,
    .chapters-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button,
    .cta-button-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .ebook-cover {
        width: 250px;
        height: 330px;
        padding: 20px;
    }
    
    .ebook-cover h3 {
        font-size: 1.5rem;
    }
    
    .table-container {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .offer-header h2 {
        font-size: 2rem;
    }
    
    .current-price .price {
        font-size: 2.5rem;
    }
}

