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

:root {
    --navy: #0B1733;
    --charcoal: #2C3E50;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --medium-gray: #D1D5DB;
    --dark-gray: #6B7280;
    --gold: #B8860B;
    --soft-blue: #4A90E2;
    --text: #1F2937;
    --light-text: #6B7280;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
}

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

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero .subheadline {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--soft-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #3A7BC8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    width: 100%;
}

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

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--navy);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* PROBLEM SECTION */
.problem {
    background-color: var(--light-gray);
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pain-point {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--soft-blue);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
}

/* HIDDEN PROBLEM SECTION */
.hidden-problem {
    background-color: var(--white);
}

.problem-grid {
    margin-top: 60px;
    display: grid;
    gap: 30px;
}

.problem-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.problem-item div {
    font-size: 1.2rem;
    line-height: 1.6;
}

.problem-left {
    text-align: right;
    color: var(--light-text);
}

.problem-right {
    text-align: left;
    color: var(--navy);
}

.problem-item strong {
    font-weight: 700;
    color: var(--charcoal);
}

@media (max-width: 768px) {
    .problem-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
    }

    .problem-left,
    .problem-right {
        text-align: left;
    }
}

/* WAKE-UP CALL SECTION */
.wake-up-call {
    background-color: var(--white);
}

.wake-up-call h2 {
    color: var(--navy);
    margin-bottom: 30px;
}

.wake-up-call .emphasis {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin: 30px 0;
    line-height: 1.7;
}

.section-content {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* HOW IT WORKS SECTION */
.how-it-works {
    background-color: var(--light-gray);
}

.video-placeholder {
    margin-top: 60px;
}

.placeholder-box {
    background: var(--white);
    padding: 80px 40px;
    border-radius: 8px;
    text-align: center;
    color: var(--light-text);
    font-size: 1.1rem;
    border: 2px dashed var(--medium-gray);
}

/* STRATEGY SECTION */
.strategy {
    background-color: var(--white);
}

.strategy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.feature {
    padding: 30px;
    border-radius: 8px;
    background-color: var(--light-gray);
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--navy);
}

.feature p {
    color: var(--light-text);
    line-height: 1.7;
}

.disclaimer {
    background-color: #FEF3C7;
    border-left: 4px solid var(--gold);
    padding: 25px;
    border-radius: 4px;
    margin-top: 60px;
    font-size: 0.95rem;
    color: #7C2D12;
    line-height: 1.7;
}

/* WHO THIS IS FOR SECTION */
.who-this-is-for {
    background-color: var(--light-gray);
}

.who-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 50px;
}

.who-column h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 25px;
}

.who-column ul {
    list-style: none;
}

.who-column li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text);
    line-height: 1.6;
}

.who-column li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--soft-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.who-column:nth-child(2) li:before {
    content: "✗";
    color: var(--dark-gray);
}

/* PROCESS SECTION */
.process {
    background-color: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--soft-blue);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 15px;
}

.step p {
    color: var(--light-text);
    line-height: 1.7;
}

/* FORM SECTION */
.lead-capture {
    background-color: var(--light-gray);
}

.strategy-form {
    max-width: 700px;
    margin: 60px auto 0;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--soft-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group input::placeholder {
    color: var(--medium-gray);
}

/* COMPLIANCE SECTION */
.compliance {
    background-color: #FEF3C7;
    padding: 40px 20px;
}

.compliance .container {
    max-width: 900px;
    margin: 0 auto;
}

.compliance h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 15px;
}

.compliance p {
    font-size: 0.9rem;
    color: #7C2D12;
    line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

/* FOOTER */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin: 10px 0;
}

.footer-disclaimer {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subheadline {
        font-size: 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    section {
        padding: 60px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .strategy-form {
        padding: 30px 20px;
    }
}
