@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Lato:wght@400;600;700&display=swap');

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

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #ffffff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', Georgia, serif;
    color: #1a202c;
}

.hero {
    text-align: center;
    padding: 60px 30px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: -20px -20px 50px -20px;
}

.main-headline {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.sub-headline {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.95;
    color: white;
}

.video-section {
    margin: 60px 0;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.video-placeholder {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 8px;
    padding: 60px 30px;
    text-align: center;
    color: white;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.bullet-points {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.bullet-points ul {
    list-style: none;
}

.bullet-points li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d3748;
}

.bullet-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.5rem;
}

.bullet-points .highlight {
    color: #667eea;
    font-weight: 700;
}

.whats-inside {
    margin: 80px 0;
    text-align: center;
    padding: 0 20px;
}

.whats-inside h2 {
    font-size: 2.25rem;
    margin-bottom: 50px;
    color: #1a202c;
    font-weight: 700;
}

.inside-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.inside-item {
    background: #f7fafc;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inside-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.inside-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 700;
}

.inside-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    margin: 80px -20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.cta-subtext {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

#emailInput {
    padding: 18px 20px;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    outline: none;
    font-family: 'Lato', sans-serif;
}

.cta-button {
    background-color: #f97316;
    color: white;
    padding: 25px 60px;
    font-size: 1.4rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.4);
    width: 100%;
    max-width: 600px;
}

.cta-button:hover {
    background-color: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
}

.cta-button.large {
    font-size: 1.5rem;
    padding: 28px 65px;
}

.privacy-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.testimonials {
    margin: 80px 0 60px 0;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial {
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    text-align: center;
}

.quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.7;
}

.author {
    font-weight: 600;
    color: #667eea;
    font-size: 1rem;
}


.attention-banner {
    background-color: #f97316;
    padding: 25px;
    text-align: center;
    margin: -20px -20px 0 -20px;
}

.attention-headline {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Merriweather', Georgia, serif;
}

.what-you-get {
    padding: 60px 40px;
    background-color: #f7fafc;
    margin: 50px -20px;
}

.what-you-get h2 {
    font-size: 2.25rem;
    margin-bottom: 35px;
    color: #1a202c;
    text-align: center;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-list li {
    padding: 20px 0 20px 45px;
    position: relative;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2d3748;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.8rem;
}

.benefits-list em {
    font-style: italic;
    color: #667eea;
    font-weight: 700;
}

.decline-link {
    margin-top: 30px;
    text-align: center;
}

.decline-link a {
    color: #718096;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.decline-link a:hover {
    color: #4a5568;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .main-headline {
        font-size: 1.75rem;
    }

    .sub-headline {
        font-size: 1.1rem;
    }

    .hero {
        padding: 40px 20px 35px;
    }

    .video-content {
        grid-template-columns: 1fr;
    }

    .video-placeholder {
        padding: 50px 20px;
    }

    .bullet-points {
        padding: 25px 20px;
    }

    .bullet-points li {
        font-size: 1rem;
        padding: 12px 0 12px 30px;
    }

    .inside-grid {
        grid-template-columns: 1fr;
    }

    .whats-inside h2 {
        font-size: 1.75rem;
    }

    .inside-item {
        padding: 25px;
    }

    .inside-item h3 {
        font-size: 1.15rem;
    }

    .cta-section {
        padding: 40px 25px;
        margin: 60px -15px;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-subtext {
        font-size: 1rem;
    }

    .email-form {
        width: 100%;
    }

    #emailInput {
        font-size: 1rem;
        padding: 16px 18px;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 18px 35px;
    }

    .cta-button.large {
        font-size: 1.15rem;
        padding: 20px 40px;
    }

    .testimonials {
        margin: 60px 0;
    }

    .testimonial {
        padding: 25px;
    }

    .quote {
        font-size: 1rem;
    }


    .attention-banner {
        padding: 20px 15px;
        margin: -15px -15px 0 -15px;
    }

    .attention-headline {
        font-size: 1.35rem;
    }

    .what-you-get {
        padding: 40px 25px;
        margin: 40px -15px;
    }

    .what-you-get h2 {
        font-size: 1.75rem;
    }

    .benefits-list li {
        font-size: 1rem;
        padding: 15px 0 15px 35px;
    }

    .benefits-list li:before {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 1.5rem;
    }

    .sub-headline {
        font-size: 1rem;
    }

    .hero {
        padding: 30px 15px 25px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 16px 30px;
    }

    .cta-button.large {
        font-size: 1.05rem;
        padding: 18px 35px;
    }

    .whats-inside h2,
    .what-you-get h2 {
        font-size: 1.5rem;
    }

    .attention-headline {
        font-size: 1.15rem;
    }
}
