:root {
    --primary: #64ffda;
    --primary-dark: #00d9ff;
    --secondary: #ffd700;
    --dark: #0f172a;
    --darker: #020617;
    --light: #1e293b;
    --lighter: #334155;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --navy: #0a192f;
    --navy-light: #112240;
    --gold: #ffd700;
    --cyan: #64ffda;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    background: var(--dark);
    overflow-x: hidden;
}

.hero {
    background: linear-gradient(135deg, #0a192f 0%, #112240 50%, #0a192f 100%);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(100,255,218,0.15)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>'),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1.5" fill="rgba(100,255,218,0.3)"/></svg>');
    background-size: 60px 60px, 20px 20px;
    opacity: 1;
}

.hero-pattern {
    position: relative;
    overflow: hidden;
}

.hero-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(100,255,218,0.15)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>'),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1.5" fill="rgba(100,255,218,0.3)"/></svg>');
    background-size: 60px 60px, 20px 20px;
    opacity: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.subheadline {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.price-tag {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 2rem;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.2rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.cta-button {
    background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
    color: #0a192f;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffed4e 0%, var(--gold) 100%);
    color: #0a192f;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-light);
}

.pain-point {
    background: rgba(248, 113, 113, 0.1);
    border-left: 5px solid #f87171;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    color: var(--text-light);
}

.benefit-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    border: 1px solid var(--lighter);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.module-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--lighter);
    color: var(--text-light);
}

.bonus-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 2px solid #fbbf24;
    color: var(--text-light);
}

.guarantee-section {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 60px 0;
}

.testimonial {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    border: 1px solid var(--lighter);
    color: var(--text-light);
}

.countdown {
    background: rgba(251, 191, 36, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    border: 3px dashed #f59e0b;
}

.faq-item {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border: 1px solid var(--lighter);
    color: var(--text-light);
}

.stats {
    background: var(--darker);
    color: white;
    padding: 60px 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }
    .subheadline {
        font-size: 1.2rem;
    }
    .new-price {
        font-size: 2rem;
    }
}
