:root {
    --navy: #111827;
    --orange: #FF5A1F;
    --white: #FFFFFF;
    --soft-slate: #F4F6F8;
    --green: #18A957;
    --grey-text: #6B7280;
    --border-grey: #E5E7EB;
    --warm-cream: #FFF7ED;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    color: var(--navy);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
section { padding: 72px 0; }
.text-center { text-align: center; }

h1, h2, h3 { line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.02em; }
h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.1rem; font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--grey-text); margin-bottom: 18px; }

header {
    height: 72px;
    border-bottom: 1px solid var(--border-grey);
    display: flex;
    align-items: center;
    background: var(--white);
}
header .container { text-align: center; }
.logo img { width: 190px; height: auto; display: inline-block; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.2s ease;
    text-align: center;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: #e44e1a; transform: translateY(-1px); }
.btn-secondary { background: var(--white); color: var(--navy); border-color: var(--border-grey); }
.btn-secondary:hover { background: var(--soft-slate); }

.hero { padding: 62px 0 70px; }
.hero-content { max-width: 860px; text-align: center; }
.eyebrow {
    display: inline-block;
    color: var(--orange);
    font-weight: 800;
    margin-bottom: 14px;
}
.subheadline { font-size: 1.2rem; max-width: 700px; margin: 0 auto 28px; }
.hero-ctas { display: flex; justify-content: center; gap: 14px; margin-bottom: 28px; }
.trust-line { max-width: 650px; margin: 22px auto 0; font-size: 0.95rem; }

.flow-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin: 6px auto 0;
}
.flow-container span {
    border: 1px solid var(--border-grey);
    border-radius: 999px;
    padding: 9px 15px;
    font-weight: 700;
    background: var(--white);
}
.flow-container strong { color: var(--orange); }

.video-section { background: var(--soft-slate); }
.video-wrapper { max-width: 900px; margin: 32px auto 0; }
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--navy);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 35px -18px rgba(0,0,0,0.35);
}
.video-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.demo-proof-card {
    max-width: 900px;
    margin: 18px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.demo-proof-card span {
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.problem-section, .pricing-section { background: var(--soft-slate); }
.split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: center;
}
.mini-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mini-card, .lead-card, .pricing-card, .faq-item, .fit-card {
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 16px;
    padding: 24px;
}
.mini-card strong { display: block; margin-bottom: 8px; }
.mini-card p { margin: 0; font-size: 0.95rem; }

.check-list, .pricing-features { list-style: none; }
.check-list li, .pricing-features li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    color: var(--navy);
    font-weight: 600;
}
.check-list li::before { content: '✓'; color: var(--green); font-weight: 900; }
.pricing-features li::before { content: '•'; color: var(--orange); font-weight: 900; }
.note { margin-top: 16px; font-weight: 600; color: var(--navy); }

.lead-card { max-width: 420px; width: 100%; justify-self: center; box-shadow: 0 16px 35px -24px rgba(0,0,0,0.35); }
.lead-card-header { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--border-grey); padding-bottom: 14px; margin-bottom: 18px; }
.lead-card-header h4 { color: var(--grey-text); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.8rem; }
.status-badge { background: var(--warm-cream); color: var(--orange); border-radius: 999px; padding: 4px 10px; font-weight: 800; font-size: 0.8rem; }
.lead-field { display: flex; justify-content: space-between; gap: 16px; padding: 6px 0; }
.lead-field span { color: var(--grey-text); }
.tag-success { display: inline-block; margin-top: 14px; background: #ECFDF3; color: var(--green); border-radius: 8px; padding: 7px 12px; font-weight: 800; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 30px auto; }
.pricing-card.featured { border: 2px solid var(--orange); }
.price { font-size: 3rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.price span { font-size: 1rem; color: var(--grey-text); font-weight: 500; }
.fit-card { max-width: 760px; margin: 8px auto 0; background: var(--warm-cream); border-color: #FED7AA; }
.fit-card strong { display: block; margin-bottom: 8px; }
.fit-card p { margin: 0; }

.faq-section { background: var(--white); }
.faq-item { margin-top: 14px; padding: 20px 22px; }
.faq-item h3 { margin-bottom: 8px; font-size: 1.1rem; }
.faq-item p { margin: 0; }

.final-cta { background: var(--navy); color: var(--white); text-align: center; }
.final-cta h2 { color: var(--white); font-size: 2.4rem; }
.final-cta p { color: rgba(255,255,255,0.82); font-size: 1.15rem; }
.final-cta .btn { margin-bottom: 16px; }
.secondary-line { font-size: 0.95rem !important; color: rgba(255,255,255,0.62) !important; margin: 0; }

footer { padding: 40px 0; border-top: 1px solid var(--border-grey); text-align: center; }
.footer-logo { width: 32px; margin-bottom: 14px; }
.footer-tagline { color: var(--navy); font-weight: 800; margin-bottom: 6px; }
.footer-contact, .footer-copyright { font-size: 0.9rem; margin-bottom: 4px; }

@media (max-width: 820px) {
    section { padding: 54px 0; }
    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.75rem; }
    header { height: 62px; }
    .logo img { width: 150px; }
    .hero { padding: 42px 0 48px; }
    .subheadline { font-size: 1.05rem; }
    .hero-ctas, .split, .pricing-grid { grid-template-columns: 1fr; flex-direction: column; }
    .hero-ctas { display: flex; }
    .btn { width: 100%; max-width: 420px; margin-left: auto; margin-right: auto; }
    .split { gap: 32px; }
    .reverse-mobile .lead-card { order: 2; }
    .mini-card-grid, .demo-proof-card { grid-template-columns: 1fr; }
    .flow-container { flex-direction: column; }
    .flow-container strong { transform: rotate(90deg); }
    .pricing-grid { margin-top: 26px; }
    .lead-card { max-width: 100%; }
    .final-cta h2 { font-size: 2rem; }
}


/* Final clarity pass */
.hero { padding: 58px 0 68px; }
.hero-ctas.single-cta { margin-bottom: 30px; }
.flow-container {
    gap: 18px;
    margin-top: 0;
}
.flow-container .flow-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border-grey);
    border-radius: 999px;
    padding: 11px 18px;
    background: var(--white);
    color: var(--navy);
    font-weight: 700;
    box-shadow: 0 8px 22px -18px rgba(0,0,0,0.25);
}
.flow-container i {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    display: inline-block;
    flex: 0 0 auto;
}
.flow-container .dot-orange { background: var(--orange); }
.flow-container .dot-green { background: var(--green); }
.flow-container .dot-navy { background: var(--navy); }
.flow-container strong {
    color: var(--navy);
    opacity: 0.85;
    font-weight: 700;
}

.video-section { padding-bottom: 72px; }

.problem-section .split {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
}
.missed-reasons-panel {
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: 18px;
    padding: 30px 34px;
    box-shadow: 0 16px 35px -26px rgba(0,0,0,0.28);
}
.reason-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--border-grey);
}
.reason-item:first-child { padding-top: 0; }
.reason-item:last-child { border-bottom: 0; padding-bottom: 0; }
.reason-item strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--navy);
}
.reason-item p {
    margin: 0;
    max-width: 420px;
}

@media (max-width: 820px) {
    .flow-container {
        gap: 8px;
    }
    .flow-container .flow-pill {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .flow-container strong {
        transform: rotate(90deg);
        line-height: 1;
    }
    .problem-section .split {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .missed-reasons-panel {
        padding: 24px;
    }
    .video-section { padding-bottom: 54px; }
}

/* Flow strip refinement: one line on desktop, clean vertical stack on phones */
.hero-content {
    max-width: 980px;
}

.flow-container {
    flex-wrap: nowrap;
    width: min(1180px, calc(100vw - 48px));
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    gap: 14px;
}

.flow-container .flow-pill {
    white-space: nowrap;
    flex: 0 0 auto;
}

.flow-container strong {
    flex: 0 0 auto;
}

@media (max-width: 900px) {
    .hero-content {
        max-width: 860px;
    }

    .flow-container {
        width: 100%;
        margin-left: auto;
        transform: none;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .flow-container .flow-pill {
        width: 100%;
        max-width: 310px;
        justify-content: center;
    }

    .flow-container strong {
        transform: rotate(90deg);
        line-height: 1;
    }
}
