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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ========== HERO SECTION ========== */
.hero {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.pre-headline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #cccccc;
    margin-bottom: 30px;
}

.headline {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.headline .gold {
    color: #f0c230;
}

/* ========== VSL VIDEO SECTION ========== */
.vsl-container {
    max-width: 400px;
    margin: 0 auto 40px;
}

.vsl-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 vertical aspect ratio */
    background-color: #000000;
    border-radius: 8px;
    overflow: hidden;
}

.vsl-wrapper iframe,
.vsl-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vsl-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333333;
}

.vsl-placeholder .play-icon {
    font-size: 48px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.vsl-placeholder p {
    font-size: 16px;
    font-weight: 600;
}

/* ========== SUB-HEADLINE ========== */
.sub-headline {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ========== STRATEGY SECTION ========== */
.strategy-section {
    text-align: left;
    padding: 60px 30px 40px;
    max-width: 550px;
    margin: 0 auto;
}

.strategy-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.5;
}

.bullet {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: #f0c230;
    border-radius: 50%;
    margin-top: 3px;
}

/* ========== CTA SECTION ========== */
.cta-section {
    text-align: center;
    padding: 80px 20px 100px;
    max-width: 550px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    background-color: #f0c230;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(240, 194, 48, 0.35);
}

.cta-subtext {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

.cta-subtext strong {
    color: #ffffff;
    font-weight: 700;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 768px) {
    .hero {
        padding: 80px 40px 50px;
    }

    .headline {
        font-size: 36px;
    }

    .pre-headline {
        font-size: 15px;
    }

    .strategy-heading {
        font-size: 26px;
    }

    .vsl-container {
        max-width: 620px;
    }
}

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

    .strategy-heading {
        font-size: 20px;
    }

    .benefits-list li {
        font-size: 14px;
    }

    .cta-button {
        font-size: 14px;
        padding: 18px 30px;
    }
}
