* {
    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: #e0e0e0;
    background-color: #111;
}

.section {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section + .section {
    border-top: 1px solid #1a1a1a;
}

h1, h2, h3 {
    color: #fff;
    line-height: 1.2;
}

/* Hero */
.hero {
    padding-top: 120px;
    padding-bottom: 100px;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.subheadline {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 540px;
    margin: 0 auto 32px;
}

.hero-cta-button {
    display: inline-block;
    margin-top: 32px;
    background: #4CAF50;
    color: #fff;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s;
}

.hero-cta-button:hover {
    background: #43A047;
}

.price-tag {
    font-size: 1.1rem;
    color: #4CAF50;
    font-weight: 600;
}

/* Illustration */
.illustration {
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
}

.illustration img {
    max-width: 100%;
    border-radius: 8px;
}

/* Problem */
#problem h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

#problem p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #ccc;
}

/* What You Get */
#what-you-get h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.feature {
    margin-bottom: 40px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature p {
    color: #ccc;
    font-size: 1.05rem;
}

/* The Numbers */
#the-numbers h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.numbers-illustration {
    max-width: 100%;
    border-radius: 8px;
    margin: 32px 0;
}

#the-numbers p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #ccc;
}

/* After You Pay */
#after-you-pay h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4CAF50;
    min-width: 32px;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.step p {
    color: #ccc;
    font-size: 1rem;
}

.steps-summary {
    font-size: 1.1rem;
    color: #aaa;
    font-style: italic;
}

/* Who It's For */
#who-its-for h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.audience-list {
    list-style: none;
}

.audience-list li {
    font-size: 1.05rem;
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid #222;
}

.audience-list li:last-child {
    border-bottom: none;
}

/* About */
#about h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.about-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    float: left;
    margin: 4px 20px 24px 0;
}

.about-content {
    overflow: hidden;
}

#about p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #ccc;
}

/* Testimonials */
#testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.testimonial {
    margin-bottom: 32px;
    padding: 24px;
    background: #1a1a1a;
    border-radius: 8px;
}

.testimonial.featured {
    background: #1a2e1a;
    border: 1px solid #2a4a2a;
    padding: 32px;
    margin-bottom: 48px;
}

.testimonial.featured blockquote {
    font-size: 1.15rem;
}

.testimonial blockquote {
    font-size: 1.05rem;
    color: #ccc;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.9rem;
    color: #888;
    font-style: normal;
}

/* FAQ */
#faq h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #222;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.faq-item p {
    color: #ccc;
    font-size: 1rem;
}

/* CTA */
.cta {
    text-align: center;
    padding-bottom: 120px;
}

.cta h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.cta > p {
    color: #ccc;
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.cta p.cta-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.cta p.cta-price-note {
    font-size: 1rem;
    color: #888;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background: #4CAF50;
    color: #fff;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #43A047;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #666;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding: 40px 16px;
}

.modal-content {
    background: #1a1a1a;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 40px;
    border-radius: 8px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-content h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #fff;
}

.legal-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.modal-content h2 {
    font-size: 1.2rem;
    margin-top: 28px;
    margin-bottom: 10px;
    color: #fff;
}

.modal-content p, .modal-content li {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.modal-content ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

@media (max-width: 600px) {
    .modal-content {
        padding: 32px 20px;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 24px;
    color: #666;
    font-size: 0.85rem;
}

.footer a {
    color: #666;
    text-decoration: none;
    margin: 0 12px;
}

.footer a:hover {
    color: #aaa;
}

/* Responsive */
@media (max-width: 600px) {
    .section {
        padding: 48px 16px;
    }

    .hero {
        padding-top: 72px;
        padding-bottom: 64px;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
