* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
    background-color: #52494;
    color: #e5e7eb;
    line-height: 1.6;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #cbd5f5;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #94a3b8;
}

/* CTA BUTTON */
.cta-button {
    display: inline-block;
    background-color: #22c55e;
    color: #022c22;
    padding: 15px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #16a34a;
    transform: translateY(-2px);
}

/* SECTIONS */
section {
    padding: 60px 20px;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.benefits {
    text-align: center;
    color: #0f172a;
    background-color: #e6e8ed;
}

.benefits ul {
    list-style: none;
    max-width: 600px;
    margin: auto;
}

.benefits li {
    padding: 10px 0;
    font-size: 1.05rem;
}

/* HOW IT WORKS */
.how-it-works {
    text-align: center;
    background-color: #0f172a;
}

.how-it-works ol {
    list-style: none;
    max-width: 600px;
    margin: auto;
}

.how-it-works li {
    margin-bottom: 12px;
}

.time-note {
    text-align: center;
    margin-top: 20px;
    color: #a5b4fc;
}

.video-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.video-container video {
    width: 100%;
    max-width: 720px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* PRICE */
.price {
    text-align: center;
    color: #0f172a;
    background-color: #e6e8ed;
}

.price-note {
    margin-bottom: 20px;
    color: #94a3b8;
}

.price-box {
    display: inline-block;
    background-color: #020617;
    padding: 30px 40px;
    border-radius: 12px;
    border: 1px solid #1e293b;
}

.amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #22c55e;
}

.lifetime {
    display: block;
    margin-top: 8px;
    color: #cbd5f5;
}

/* FINAL CTA */
.final-cta {
    text-align: center;
    background-color: #020617;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px 15px;
    background-color: #020617;
    font-size: 0.9rem;
    color: #94a3b8;
}

footer a {
    color: #a5b4fc;
    text-decoration: none;
}
