/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

h1, h2, h3 {
    font-weight: bold;
    line-height: 1.2;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 15px;
}

.small-text {
    font-size: 14px;
    color: #666;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subhead {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button.big {
    font-size: 24px;
    padding: 20px 50px;
}

.guarantee {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.9;
}

/* PROBLEM SECTION */
.problem {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.problem h2 {
    margin-bottom: 40px;
}

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

.problem-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.problem-box.highlight {
    border: 3px solid #dc3545;
    background: #fff5f5;
}

.fake-price {
    font-size: 48px;
    color: #28a745;
    font-weight: bold;
    margin: 20px 0;
}

.real-price {
    font-size: 48px;
    color: #dc3545;
    font-weight: bold;
    margin: 20px 0;
}

.breakdown {
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
}

.problem-text {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* SOLUTION SECTION */
.solution {
    padding: 80px 20px;
    text-align: center;
}

.intro {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature {
    text-align: center;
}

.icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.feature p {
    font-size: 16px;
    color: #666;
}

.screenshot-placeholder {
    background: #f0f0f0;
    border: 3px dashed #ccc;
    padding: 100px 20px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 900px;
}

.screenshot-placeholder p {
    font-size: 18px;
    color: #999;
    margin: 0;
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 80px 20px;
    background: #f9f9f9;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #667eea;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quote {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.author {
    font-weight: bold;
    color: #667eea;
    font-size: 14px;
}

/* PRICING SECTION */
.pricing {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.price-box {
    background: white;
    color: #333;
    padding: 50px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.price {
    font-size: 72px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
}

.price-detail {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.includes {
    text-align: left;
    list-style: none;
    margin: 30px 0;
    font-size: 16px;
}

.includes li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.guarantee-text {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer p {
    margin: 10px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .subhead {
        font-size: 18px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 15px 30px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .price-box {
        padding: 30px;
    }
    
    .price {
        font-size: 48px;
    }
}