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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #F97316 0%, #DC2626 100%);
    color: white;
    line-height: 1.6;
    min-height: 100vh;
    padding: 40px 20px;
    margin: 0;
}

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

.header-section {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.subheadline {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-section {
    margin-bottom: 40px;
}

.video-placeholder {
    background: #000;
    border-radius: 12px;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-placeholder .play-icon {
    font-size: 4em;
    color: white;
    opacity: 0.8;
    margin-bottom: 10px;
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1em;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.content-box {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.content-box h2 {
    color: #1a1a1a;
    font-size: 1.5em;
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-box h2:first-child {
    margin-top: 0;
}

.content-box p {
    color: #1a1a1a;
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

.feature-list,
.program-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.feature-list li,
.program-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #1a1a1a;
    font-size: 1.1em;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child,
.program-list li:last-child {
    border-bottom: none;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #F97316;
    font-weight: bold;
}

.program-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.pricing {
    font-size: 1.2em !important;
    margin-top: 25px !important;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.guarantee {
    color: #666 !important;
    font-size: 1em !important;
    font-style: italic;
}

.calendly-section {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.calendly-section h2 {
    color: #1a1a1a;
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
}

.calendly-intro {
    color: #666;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1em;
}

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

    h1 {
        font-size: 1.8em;
    }

    .subheadline {
        font-size: 1.1em;
    }

    .content-box {
        padding: 30px 25px;
    }

    .calendly-section {
        padding: 30px 25px;
    }

    .feature-list li,
    .program-list li {
        font-size: 1em;
    }
}
