﻿@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

/* ============================================================================
   HLRBO Lease Finder V3 â€” Quiz Flow Stylesheet
   6-screen flow: hero â†’ 4 question screens â†’ results/paywall
   ============================================================================ */

/* ---------------------------------------------------------------------------
   HEADER: Promo Banner + Navbar
   --------------------------------------------------------------------------- */
.lf-promo-banner {
    background: #6E883F;
    padding: 8px 24px;
    text-align: center;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 500;
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lf-navbar {
    background: #31420E;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.lf-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
    text-decoration: none;
}

.lf-nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.lf-nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.lf-nav-link:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.lf-nav-link--active {
    color: #DC7001;
    font-weight: 600;
}

.lf-nav-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.lf-nav-subscribe {
    background: #DC7001;
    color: #FFFFFF;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.lf-nav-subscribe:hover {
    background: #c56200;
    color: #FFFFFF;
    text-decoration: none;
}

.lf-nav-login {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.lf-nav-login:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

/* ---------------------------------------------------------------------------
   SCREEN CONTAINERS
   --------------------------------------------------------------------------- */
.lf-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lf-screen--hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.lf-screen--white {
    background: #FFFFFF;
    padding: 32px 24px 0;
    justify-content: flex-start;
}

.lf-screen--dark {
    background: #31420E;
    padding: 60px 24px;
}

.lf-screen--results {
    background: #F8F9FA;
    padding: 0;
    align-items: stretch;
    justify-content: flex-start;
}

/* ---------------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------------- */
.lf-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.lf-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(20, 15, 8, 0.1) 0%, rgba(20, 15, 8, 0.35) 40%, rgba(20, 15, 8, 0.7) 100%);
}

.lf-hero-panel {
    position: relative;
    z-index: 1;
    background: rgba(28, 22, 14, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 520px;
}

.lf-hero-proof {
    position: relative;
    z-index: 1;
    width: 80%;
    max-width: 640px;
    margin-top: 24px;
}

/* ---------------------------------------------------------------------------
   PROGRESS + TEXT
   --------------------------------------------------------------------------- */
.lf-progress {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.lf-progress__dot {
    flex: 1;
    height: 8px;
    background: #E0E0E0;
    transition: background 0.3s;
}

.lf-progress__dot:first-child {
    border-radius: 4px 0 0 4px;
}

.lf-progress__dot:last-child {
    border-radius: 0 4px 4px 0;
}

.lf-progress__dot--active {
    background: #DC7001;
}

.lf-progress__dot--completed {
    background: #6E883F;
}

.lf-step-label {
    font-size: 12px;
    font-weight: 700;
    color: #6E883F;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-align: center;
}

.lf-h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #FFFFFF;
    white-space: pre-line;
    margin: 0;
}

.lf-h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    white-space: pre-line;
    margin: 0;
    text-align: center;
}

.lf-h2--dark {
    color: #FFFFFF;
}

.lf-h2--light {
    color: #31420E;
}

.lf-sub {
    font-size: 15px;
    color: #666666;
    line-height: 1.5;
    max-width: 640px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.lf-sub--light {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

/* ---------------------------------------------------------------------------
   SELECTION ELEMENTS: Option Buttons
   --------------------------------------------------------------------------- */
.lf-option-btn {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
    display: inline-block;
    color: #1A1A1A;
}

.lf-option-btn:hover {
    border-color: #6E883F;
}

.lf-option-btn--selected {
    border: 2px solid #31420E;
    background: #31420E;
    color: #FFFFFF;
    font-weight: 700;
}

/* ---------------------------------------------------------------------------
   SELECTION ELEMENTS: County Groups
   --------------------------------------------------------------------------- */
.lf-county-group {
    margin-bottom: 24px;
}

.lf-county-group__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #6E883F;
}

.lf-county-group__state {
    font-size: 16px;
    font-weight: 700;
    color: #31420E;
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lf-county-group__count {
    font-size: 12px;
    font-weight: 500;
    color: #999;
}

.lf-county-btn {
    font-size: 12px;
    padding: 6px 12px;
}

.lf-county-loading {
    text-align: center;
    padding: 40px 0;
}

/* ---------------------------------------------------------------------------
   SELECTION ELEMENTS: Pain Cards
   --------------------------------------------------------------------------- */
.lf-pain-card {
    border-radius: 12px;
    text-align: left;
    padding: 16px 18px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    cursor: pointer;
    transition: all 0.15s;
}

.lf-pain-card:hover {
    border-color: #6E883F;
}

.lf-pain-card--selected {
    border: 2px solid #31420E;
    background: #31420E;
}

.lf-pain-card--selected .lf-pain-card__title {
    color: #FFFFFF;
}

.lf-pain-card--selected .lf-pain-card__sub {
    color: rgba(255, 255, 255, 0.7);
}

.lf-pain-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #31420E;
}

.lf-pain-card__sub {
    font-size: 12px;
    color: #999999;
    margin-top: 4px;
}

/* ---------------------------------------------------------------------------
   SELECTION ELEMENTS: Species Cards
   --------------------------------------------------------------------------- */
.lf-species-card {
    border-radius: 12px;
    text-align: left;
    padding: 16px 20px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lf-species-card:hover {
    border-color: #6E883F;
}

.lf-species-card--selected {
    border: 2px solid #31420E;
    background: #31420E;
}

.lf-species-card__emoji,
.lf-species-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #31420E;
}

.lf-species-card__icon svg {
    display: block;
    width: 28px;
    height: 28px;
}

.lf-species-card--selected .lf-species-card__icon {
    color: #FFFFFF;
}

.lf-species-card__label {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
}

.lf-species-card--selected .lf-species-card__label {
    color: #FFFFFF;
}

/* ---------------------------------------------------------------------------
   SELECTION ELEMENTS: Budget Cards
   --------------------------------------------------------------------------- */
.lf-budget-card {
    border-radius: 12px;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    cursor: pointer;
    transition: all 0.15s;
}

.lf-budget-card:hover {
    border-color: #6E883F;
}

.lf-budget-card--selected {
    border: 2px solid #31420E;
    background: #31420E;
}

.lf-budget-card--selected .lf-budget-card__label {
    color: #FFFFFF;
}

.lf-budget-card--selected .lf-budget-card__sub {
    color: rgba(255, 255, 255, 0.7);
}

.lf-budget-card__label {
    font-size: 18px;
    font-weight: 700;
}

.lf-budget-card__sub {
    font-size: 12px;
    color: #999999;
    margin-top: 4px;
}

/* ---------------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------------- */
.lf-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #FFFFFF;
    border-top: 1px solid #E0E0E0;
}

.lf-bottom-bar .lf-progress {
    margin-bottom: 0;
    border-radius: 0;
}

.lf-bottom-bar .lf-progress__dot {
    border-radius: 0;
    height: 6px;
}

.lf-bottom-bar .lf-progress__dot:first-child {
    border-radius: 0;
}

.lf-bottom-bar .lf-progress__dot:last-child {
    border-radius: 0;
}

.lf-bottom-bar__buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
}

.lf-btn-primary {
    background: #6E883F;
    color: #FFFFFF;
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.lf-btn-primary:hover {
    background: #5d7535;
}

.lf-btn-primary--disabled {
    background: #E0E0E0;
    cursor: not-allowed;
    color: #999999;
}

.lf-btn-primary--disabled:hover {
    background: #E0E0E0;
}

.lf-btn-cta {
    background: #CC8422;
    color: #FFFFFF;
    padding: 18px 44px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(204, 132, 34, 0.35);
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.lf-btn-cta:hover {
    background: #b5741c;
    color: #FFFFFF;
    text-decoration: none;
}

.lf-btn-back {
    background: transparent;
    border: 1px solid #E0E0E0;
    color: #999999;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.lf-btn-back:hover {
    border-color: #999999;
    color: #666666;
}

.lf-nav-row {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background: #FFFFFF;
    border-top: 1px solid #E0E0E0;
    z-index: 100;
}

/* ---------------------------------------------------------------------------
   INFO BARS
   --------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------
   COVERAGE BANNER (static, top of state selection)
   --------------------------------------------------------------------------- */
.lf-coverage-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    border-radius: 12px;
    background: #F5F3EE;
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lf-coverage-banner__info {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.lf-coverage-banner__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #6E883F;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lf-coverage-banner__title {
    font-size: 17px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.2;
}

.lf-coverage-banner__sub {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.3;
    margin-top: 2px;
}

.lf-coverage-banner__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.lf-coverage-banner__stat-count {
    font-size: 28px;
    font-weight: 700;
    color: #DC7001;
    line-height: 1;
}

.lf-coverage-banner__stat-label {
    font-size: 13px;
    font-weight: 500;
    color: #6E883F;
    margin-top: 2px;
}

.lf-info-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 14px;
}

.lf-info-bar--green {
    background: #EFF5E8;
    border: 1px solid #D4E4BF;
}

.lf-info-bar__icon {
    color: #6E883F;
    flex-shrink: 0;
}

.lf-info-bar--orange {
    background: #FFF5EC;
    border: 1px solid #FFE0C0;
}

.lf-demand-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #EFF5E8;
    border: 1px solid #D4E4BF;
    margin-top: 14px;
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lf-demand-bar__icon {
    color: #6E883F;
    flex-shrink: 0;
}

.lf-demand-bar__content {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.lf-demand-bar__count {
    font-size: 20px;
    font-weight: 800;
    color: #31420E;
}

.lf-demand-bar__label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

/* ---------------------------------------------------------------------------
   STATE REACTIVE BANNER (updates with selection)
   --------------------------------------------------------------------------- */
.lf-state-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    background: #4A5A28;
    margin-top: 14px;
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.lf-state-banner__info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.lf-state-banner__star {
    flex-shrink: 0;
}

.lf-state-banner__name {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.lf-state-banner__sub {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.3;
    margin-top: 2px;
}

.lf-state-banner__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 8px 16px;
    flex-shrink: 0;
    min-width: 72px;
}

.lf-state-banner__badge-count {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.lf-state-banner__badge-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ---------------------------------------------------------------------------
   ROTATING PROOF CARDS
   --------------------------------------------------------------------------- */
.lf-proof-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 18px;
    border-radius: 12px;
    width: 100%;
    transition: opacity 0.3s ease;
}

.lf-proof-card--fading {
    opacity: 0;
}

.lf-proof-card--dark {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lf-proof-card--green {
    background: #F5F3EE;
    border: 1px solid #E5E0D5;
}

.lf-proof-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6E883F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
}

.lf-proof-card__body {
    flex: 1;
}

.lf-proof-card__stars {
    font-size: 12px;
    color: #DC7001;
    margin-bottom: 3px;
}

.lf-proof-card__quote {
    font-size: 13px;
    font-style: italic;
    line-height: 1.5;
    margin: 0 0 6px;
}

.lf-proof-card__quote--dark {
    color: rgba(255, 255, 255, 0.7);
}

.lf-proof-card__quote--light {
    color: #666666;
}

.lf-proof-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lf-proof-card__attr {
    font-size: 11px;
    font-weight: 600;
}

.lf-proof-card__attr--dark {
    color: rgba(255, 255, 255, 0.35);
}

.lf-proof-card__attr--light {
    color: #999999;
}

.lf-proof-card__dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.lf-proof-card__dot {
    width: 5px;
    height: 5px;
    border-radius: 3px;
    transition: all 0.3s;
}

.lf-proof-card__dot--inactive-dark {
    background: rgba(255, 255, 255, 0.15);
}

.lf-proof-card__dot--inactive-green {
    background: #E5E0D5;
}

.lf-proof-card__dot--active-dark {
    width: 16px;
    background: #DC7001;
}

.lf-proof-card__dot--active-green {
    width: 16px;
    background: #DC7001;
}

/* ---------------------------------------------------------------------------
   RESULT CARDS + GATE
   --------------------------------------------------------------------------- */
.lf-result-card {
    display: flex;
    gap: 16px;
    padding: 18px;
    border-radius: 14px;
    background: #FFFFFF;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 12px;
}

.lf-result-thumb {
    width: 110px;
    min-height: 95px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.lf-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lf-result-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: #31420E;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
}

.lf-scarcity-badge {
    color: #DC3545;
    font-weight: 600;
    font-size: 11px;
}

.lf-species-pill {
    background: #EFF5E8;
    color: #31420E;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
    display: inline-block;
    margin-right: 4px;
}

.lf-result-blurred {
    filter: blur(6px);
    opacity: 0.5;
    pointer-events: none;
}

/* ---------------------------------------------------------------------------
   RESULTS SPLIT LAYOUT (search-page style)
   --------------------------------------------------------------------------- */
.lf-results-split {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.lf-results-panel {
    flex: 1;
    max-width: 50%;
    padding: 40px 32px;
    overflow-y: auto;
    max-height: 100vh;
}

.lf-results-map-panel {
    flex: 1;
    max-width: 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.lf-results-map-panel #map {
    width: 100% !important;
    height: 100% !important;
    min-height: 100vh;
}

/* ---------------------------------------------------------------------------
   GATE BACKDROP (fixed overlay, grays out background)
   --------------------------------------------------------------------------- */
.lf-gate-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
    animation: lf-backdrop-in 0.4s ease-out;
}

/* Lock page scroll while the gate modal is open */
body.lf-gate-open {
    overflow: hidden;
}

@keyframes lf-backdrop-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lf-gate-modal {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 28px 28px 24px;
    max-width: 540px;
    width: 100%;
    margin: auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    animation: lf-modal-in 0.4s ease-out;
}

@keyframes lf-modal-in {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ---------------------------------------------------------------------------
   PRICING GRID
   --------------------------------------------------------------------------- */
.lf-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

@media (max-width: 600px) {
    .lf-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lf-pricing-card {
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lf-pricing-card--selectable:hover {
    border-color: #6E883F;
    box-shadow: 0 0 0 2px rgba(110, 136, 63, 0.2);
}

.lf-pricing-card--featured {
    border: 2px solid #DC7001;
    background: #FFF5EC;
    position: relative;
}

.lf-pricing-badge {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: #DC7001;
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 8px;
    white-space: nowrap;
}

.lf-plan-select-btn {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #6E883F;
    border: 1px solid #6E883F;
    border-radius: 6px;
    padding: 5px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lf-plan-select-btn:hover,
.lf-plan-select-btn--green:hover {
    background-color: #6E883F;
    color: #FFFFFF;
}

/* ---------------------------------------------------------------------------
   GATE MODAL â€” TWO-COLUMN COMPARISON LAYOUT
   --------------------------------------------------------------------------- */
.lf-gate-lock-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #EFF5E8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 12px;
}

.lf-gate-heading {
    font-size: 21px;
    font-weight: 800;
    color: #31420E;
    margin: 0 0 4px;
    line-height: 1.2;
}

.lf-gate-subtitle {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0 0 18px;
}

.lf-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
    text-align: left;
}

.lf-compare-col {
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 16px 16px;
    display: flex;
    flex-direction: column;
}

.lf-compare-col--featured {
    border: 2px solid #6E883F;
    position: relative;
}

.lf-compare-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #6E883F;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 8px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.lf-compare-header {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.lf-compare-header--gold {
    color: #6E883F;
}

.lf-compare-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    flex: 1;
}

.lf-compare-item {
    font-size: 12.5px;
    line-height: 1.35;
    padding: 3px 0;
}

.lf-compare-item--included {
    color: #1A1A1A;
}

.lf-compare-item--excluded {
    color: #C0C0C0;
    text-decoration: line-through;
}

.lf-compare-item--gold {
    color: #1A1A1A;
    font-weight: 500;
}

.lf-compare-price {
    font-size: 22px;
    font-weight: 800;
    color: #31420E;
    text-align: center;
    margin-top: auto;
}

.lf-compare-price--gold {
    color: #6E883F;
}

.lf-compare-price-period {
    font-size: 14px;
    font-weight: 500;
    color: #999;
}

.lf-compare-price-monthly {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 2px;
}

.lf-gate-testimonial {
    background: #FFF5EC;
    border: 1px solid #FFE0C0;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    text-align: left;
}

.lf-gate-testimonial-quote {
    font-size: 13px;
    font-style: italic;
    color: #666;
    line-height: 1.4;
    margin: 0 0 4px;
}

.lf-gate-testimonial-attr {
    font-size: 13px;
    font-weight: 600;
    color: #1A1A1A;
}

.lf-gate-cta {
    width: 100%;
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
    padding: 14px 24px;
    border-radius: 30px;
}

.lf-gate-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.lf-gate-see-plans {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #31420E;
    text-decoration: underline;
    margin-bottom: 16px;
}

.lf-gate-see-plans:hover {
    color: #6E883F;
    text-decoration: underline;
}

.lf-gate-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: #C0C0C0;
    font-size: 12px;
}

.lf-gate-divider::before,
.lf-gate-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E0E0E0;
}

.lf-gate-free-alerts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
}

.lf-gate-free-alerts:hover {
    border-color: #6E883F;
    box-shadow: 0 0 0 2px rgba(110, 136, 63, 0.15);
}

.lf-gate-free-alerts-title {
    font-size: 14px;
    font-weight: 700;
    color: #31420E;
    margin-bottom: 2px;
}

.lf-gate-free-alerts-desc {
    font-size: 13px;
    color: #666;
}

.lf-gate-free-alerts-arrow {
    font-size: 20px;
    color: #999;
    flex-shrink: 0;
    margin-left: 16px;
}

@media (max-width: 600px) {
    .lf-compare-grid {
        grid-template-columns: 1fr;
    }

    .lf-gate-modal {
        padding: 28px 20px;
    }

    .lf-gate-trust {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }

    .lf-gate-cta {
        font-size: 15px;
        padding: 16px 20px;
    }
}

/* Split layout â€” stack below 992px (tablet) */
@media (max-width: 991px) {
    .lf-results-split {
        flex-direction: column;
    }

    .lf-results-panel {
        max-width: 100%;
        max-height: none;
    }

    .lf-results-map-panel {
        max-width: 100%;
        position: relative;
        height: 50vh;
        order: -1;
    }

    .lf-results-map-panel #map {
        min-height: 50vh;
    }
}

.lf-signup-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Figtree', sans-serif;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.lf-signup-input:focus {
    border-color: #6E883F;
}

/* ---------------------------------------------------------------------------
   LIVE TICKER
   --------------------------------------------------------------------------- */
.lf-live-ticker {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(28, 22, 14, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2;
    transition: opacity 0.3s;
}

.lf-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #DC3545;
    animation: pulse 2s infinite;
}

/* ---------------------------------------------------------------------------
   SOCIAL + TRUST + URGENCY
   --------------------------------------------------------------------------- */
.lf-social-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.lf-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
    border: 2px solid #F8F9FA;
}

.lf-avatar--overlap {
    margin-left: -8px;
}

.lf-urgency-bar {
    background: rgba(220, 112, 1, 0.1);
    border: 1px solid rgba(220, 112, 1, 0.2);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.lf-trust-bar--white {
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 14px 18px;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}

.lf-testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.lf-testimonial-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ---------------------------------------------------------------------------
   HLRBO MARK
   --------------------------------------------------------------------------- */
.lf-mark {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lf-mark__square {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #6E883F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: #FFFFFF;
}

.lf-mark__text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.lf-mark__text--white {
    color: #FFFFFF;
}

.lf-mark__badge {
    background: transparent;
    color: #DC7001;
    font-size: 8px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 8px;
    border: 1px solid rgba(220, 112, 1, 0.4);
}

/* ---------------------------------------------------------------------------
   STATS ROW
   --------------------------------------------------------------------------- */
.lf-stats-row {
    display: flex;
    gap: 36px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lf-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #CC8422;
}

.lf-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 4px;
}

/* ---------------------------------------------------------------------------
   VALUE CALC
   --------------------------------------------------------------------------- */
.lf-value-calc {
    margin-top: 20px;
    padding: 20px;
    border-radius: 12px;
    max-width: 640px;
    width: 100%;
}

.lf-value-calc__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6E883F;
    margin-bottom: 16px;
}

.lf-value-calc__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.lf-value-calc__savings {
    background: #EFF5E8;
    border: 1px solid #D4E4BF;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #6E883F;
}

/* ---------------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------------- */
.lf-footer {
    background: #31420E;
    padding: 48px 24px 24px;
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.lf-footer__inner {
    max-width: 960px;
    margin: 0 auto;
}

.lf-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.lf-footer__col-title {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lf-footer__link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.2s;
}

.lf-footer__link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.lf-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.lf-footer__social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.lf-footer__social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lf-footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.lf-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* ---------------------------------------------------------------------------
   UTILITY
   --------------------------------------------------------------------------- */
.lf-hidden {
    display: none !important;
}

.lf-fade-in {
    animation: fadeIn 0.5s ease-out;
}

.lf-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.lf-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.lf-flex-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lf-content-area {
    max-width: 820px;
    width: 100%;
    padding-bottom: 80px;
}

/* ---------------------------------------------------------------------------
   KEYFRAMES
   --------------------------------------------------------------------------- */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------------------------------------------------------------------
   MOBILE (max-width: 600px)
   --------------------------------------------------------------------------- */
@media (max-width: 600px) {
    .lf-grid-2col {
        grid-template-columns: 1fr;
    }

    .lf-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }

    .lf-h1 {
        font-size: 36px;
    }

    .lf-h2 {
        font-size: 26px;
        text-align: center;
    }

    .lf-bottom-bar__buttons {
        padding: 12px 16px;
    }

    .lf-hero-panel {
        padding: 24px;
    }

    .lf-hero-proof {
        width: 90%;
        margin-top: 16px;
        padding: 0 0 24px;
    }

    .lf-navbar nav {
        display: none;
    }

    .lf-footer__grid {
        grid-template-columns: 1fr;
    }

    .lf-result-card {
        flex-direction: column;
    }

    .lf-result-thumb {
        width: 100%;
        height: 160px;
    }

    .lf-testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* Results split â€” stack on mobile, hide map */
    .lf-results-split {
        flex-direction: column;
    }

    .lf-results-panel {
        max-width: 100%;
        padding: 24px 16px;
        max-height: none;
    }

    .lf-results-map-panel {
        display: none;
    }

    .lf-gate-backdrop {
        padding: 16px;
        align-items: flex-start;
        padding-top: 40px;
    }

    .lf-gate-modal {
        padding: 28px 20px;
    }
}

/* Hide the site header and footer while inside the 5 lease finder steps
   (screens 1-5). The body gets the lf-in-flow class applied by
   leasefinder-v3.js. */
body.lf-in-flow > header,
body.lf-in-flow > footer {
    display: none !important;
}

/* The site layout reserves top padding on <main> for the fixed header.
   With the header hidden we also need to remove that padding so the step
   content sits at the top of the viewport. */
body.lf-in-flow main,
body.lf-in-flow main.no-promo {
    padding-top: 0 !important;
}

/* Exit button (X) shown only while inside the 5 lease finder steps.
   Matches the dark-gray close X used elsewhere (e.g. landkey checkout).
   Returns the hunter to the hero (screen 0). */
.lf-exit-btn {
    display: none;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1100;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    color: #252323;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.lf-exit-btn:hover,
.lf-exit-btn:focus {
    opacity: 0.7;
    outline: none;
}

body.lf-in-flow .lf-exit-btn {
    display: flex;
}

