.lead-page {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 0 3rem;
}

/* ---------- Hero ---------- */
.lead-hero--compact {
    margin-bottom: 1.25rem;
}

.lead-hero--compact .lead-hero__title {
    margin-bottom: 0.5rem;
}

.lead-hero--compact .lead-hero__subtitle {
    margin-bottom: 0.75rem;
}

.lead-hero--compact .lead-hero__trust {
    margin-bottom: 0;
}

.lead-page .article-body h2 {
    font-size: 1.25rem;
    margin-top: 1.75rem;
}

.lead-page .article-body h2:first-child {
    margin-top: 0;
}

.lead-hero {
    text-align: center;
    padding: 2.5rem 1rem 2rem;
}
.lead-hero__kicker {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
    font-weight: 600;
    color: var(--bs-primary);
    margin-bottom: .5rem;
}
.lead-hero__title {
    font-size: clamp(1.7rem, 4.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: .75rem;
}
.lead-hero__subtitle {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--bs-secondary-color);
    max-width: 640px;
    margin: 0 auto 1.5rem;
}
.lead-hero__cta {
    padding: .8rem 2.2rem;
    font-weight: 700;
    border-radius: 999px;
}
.lead-hero__trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: center;
    padding: 0;
    margin: 1.5rem 0 0;
    font-size: .9rem;
    color: var(--bs-secondary-color);
}
.lead-hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.lead-hero__trust-dot {
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: #16a34a;
}

/* ---------- Wizard ---------- */
.lead-wizard {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
    scroll-margin-top: 1rem;
}
.lead-wizard__progress {
    margin-bottom: 1.5rem;
}
.lead-wizard__progress-bar {
    height: 8px;
    border-radius: 999px;
    background: var(--bs-secondary-bg);
    overflow: hidden;
}
.lead-wizard__progress-fill {
    display: block;
    height: 100%;
    width: 20%;
    background: var(--bs-primary);
    border-radius: 999px;
    transition: width .3s ease;
}
.lead-wizard__progress-text {
    margin: .5rem 0 0;
    font-size: .85rem;
    font-weight: 600;
    color: var(--bs-secondary-color);
}
.lead-step__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: .35rem;
}
.lead-step__help {
    color: var(--bs-secondary-color);
    margin-bottom: 1.2rem;
}
.lead-step__hint {
    font-size: .85rem;
    color: var(--bs-secondary-color);
    margin: .6rem 0 0;
}
.lead-step__status {
    font-size: .9rem;
    margin: .5rem 0 0;
}
.lead-step__selected {
    margin: .75rem 0 0;
    font-size: .95rem;
}
.lead-step__selected--error {
    color: var(--bs-danger);
    animation: lead-shake .4s;
}
@keyframes lead-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* Search row */
.lead-search {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: .75rem;
}
.lead-search__input {
    flex: 1 1 200px;
}
.lead-search__locate {
    white-space: nowrap;
}

/* Map */
.lead-map-frame {
    position: relative;
    border: 1px solid var(--bs-border-color);
    border-radius: .75rem;
    overflow: hidden;
}
.lead-map {
    width: 100%;
    height: 360px;
}
.lead-map__loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-body-bg);
}

/* Altitude */
.lead-altitude {
    text-align: center;
    padding: 1rem 0;
}
.lead-altitude__value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bs-primary);
    margin-bottom: .75rem;
}
.lead-altitude__scale {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    color: var(--bs-secondary-color);
    margin-top: .25rem;
}

/* Option cards */
.lead-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: .75rem;
}
.lead-option {
    display: flex;
    align-items: center;
    gap: .6rem;
    border: 2px solid var(--bs-border-color);
    border-radius: .75rem;
    padding: .9rem 1rem;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    margin: 0;
}
.lead-option:hover {
    border-color: var(--bs-primary);
}
.lead-option input {
    accent-color: var(--bs-primary);
    width: 1.1rem;
    height: 1.1rem;
}
.lead-option:has(input:checked) {
    border-color: var(--bs-primary);
    background: rgba(13, 110, 253, .08);
}
.lead-option__label {
    font-weight: 600;
}

/* Timing */
.lead-timing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

/* Nav */
.lead-wizard__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.75rem;
}
.lead-wizard__next {
    margin-left: auto;
    padding: .65rem 2rem;
    font-weight: 700;
    border-radius: 999px;
}

/* ---------- Result ---------- */
.lead-result {
    margin-top: 1.5rem;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
}
.lead-result__computing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    text-align: center;
    padding: 2rem 1rem;
    color: var(--bs-secondary-color);
}
.lead-verdict {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: .85rem;
    border: 1px solid var(--bs-border-color);
    margin-bottom: 1.5rem;
}
.lead-verdict__indicator {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin-top: .35rem;
    flex: 0 0 auto;
    background: var(--bs-secondary);
}
.lead-verdict__title {
    font-size: 1.2rem;
    display: block;
    margin-bottom: .25rem;
}
.lead-verdict__detail {
    margin: 0;
    color: var(--bs-secondary-color);
}
.lead-verdict--allowed { background: rgba(22, 163, 74, .08); border-color: rgba(22, 163, 74, .4); }
.lead-verdict--allowed .lead-verdict__indicator { background: #16a34a; }
.lead-verdict--approval,
.lead-verdict--conditional { background: rgba(234, 179, 8, .1); border-color: rgba(234, 179, 8, .45); }
.lead-verdict--approval .lead-verdict__indicator,
.lead-verdict--conditional .lead-verdict__indicator { background: #eab308; }
.lead-verdict--prohibited,
.lead-verdict--restricted { background: rgba(220, 38, 38, .08); border-color: rgba(220, 38, 38, .4); }
.lead-verdict--prohibited .lead-verdict__indicator,
.lead-verdict--restricted .lead-verdict__indicator { background: #dc2626; }

.lead-verdict__cta {
    width: 100%;
    margin: 0 0 1.5rem;
    padding: .85rem 1.5rem;
    font-weight: 700;
    border-radius: 999px;
}
.lead-verdict__cta[hidden] {
    display: none;
}

.lead-result__cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.lead-result__col h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.lead-result__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.lead-result__list li {
    background: var(--bs-secondary-bg);
    border-radius: .6rem;
    padding: .6rem .8rem;
    font-size: .9rem;
}
.lead-result__disclaimer {
    font-size: .8rem;
    color: var(--bs-secondary-color);
    border-top: 1px solid var(--bs-border-color);
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}
.lead-result__restart {
    display: block;
    margin: 1rem auto 0;
}

/* ---------- Conversion ---------- */
.lead-convert {
    text-align: center;
    background: linear-gradient(135deg, rgba(13, 110, 253, .1), rgba(13, 110, 253, .03));
    border: 1px solid rgba(13, 110, 253, .25);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
}
.lead-convert__title {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: .5rem;
}
.lead-convert__desc {
    color: var(--bs-secondary-color);
    max-width: 520px;
    margin: 0 auto 1.25rem;
}
.lead-convert__cta {
    padding: .85rem 2.5rem;
    font-weight: 700;
    border-radius: 999px;
}
.lead-convert__note {
    font-size: .85rem;
    color: var(--bs-secondary-color);
    margin: 1rem auto 0;
    max-width: 440px;
}
.lead-convert__login {
    font-size: .9rem;
    margin: .5rem 0 0;
}

/* ---------- How it works ---------- */
.lead-how {
    margin-top: 3rem;
}
.lead-how__title {
    text-align: center;
    font-weight: 800;
    margin-bottom: 1.75rem;
}
.lead-how__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    counter-reset: lead-how;
}
.lead-how__step {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
}
.lead-how__num {
    flex: 0 0 auto;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lead-how__step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .25rem;
}
.lead-how__step-body {
    font-size: .9rem;
    color: var(--bs-secondary-color);
    margin: 0;
}

/* ---------- SEO content ---------- */
.lead-seo {
    margin-top: 3rem;
    line-height: 1.7;
}
.lead-seo h2 {
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: .6rem;
    font-size: 1.4rem;
}
.lead-seo h3 {
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    font-size: 1.15rem;
}
.lead-seo p {
    color: var(--bs-body-color);
}
.lead-seo__cta {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem 1.5rem;
    background: var(--bs-secondary-bg);
    border-radius: 1rem;
}
.lead-seo__cta h2 {
    margin-top: 0;
}

/* ---------- FAQ ---------- */
.lead-faq {
    margin-top: 3rem;
}
.lead-faq__title {
    text-align: center;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.lead-faq__item {
    border: 1px solid var(--bs-border-color);
    border-radius: .75rem;
    padding: .25rem 1rem;
    margin-bottom: .75rem;
    background: var(--bs-body-bg);
}
.lead-faq__q {
    font-weight: 600;
    cursor: pointer;
    padding: .85rem 0;
    list-style: revert;
}
.lead-faq__a {
    color: var(--bs-secondary-color);
    padding: 0 0 .9rem;
}

@media (max-width: 575.98px) {
    .lead-wizard, .lead-result { padding: 1.1rem; }
    .lead-search__locate { flex: 1 1 100%; }
}
