/* ═══════════════════════════════════════════════════════════
   Fundindia Loan Flow — Navy + Gold (lf-*)
   Fonts loaded via <link> in page head for faster first paint.
   ═══════════════════════════════════════════════════════════ */

:root {
    --lf-bg: #E4EAF2;
    --lf-bg-2: #F5F7FA;
    --lf-white: #FFFFFF;
    --lf-border: #C8D2E0;
    --lf-border-light: #DDE4EE;
    --lf-text: #1A2B3C;
    --lf-text-soft: #4A6178;
    --lf-text-muted: #7A8FA3;
    --lf-navy: #0D1B2A;
    --lf-navy-mid: #1A3352;
    --lf-gold: #D4AD4A;
    --lf-gold-light: #E8C96A;
    --lf-gold-dark: #B8922E;
    --lf-gold-soft: #FBF3DC;
    --lf-gold-glow: rgba(212, 173, 74, 0.35);
    --lf-green: #18A06B;
    --lf-green-soft: #E3F7EE;
    --lf-red: #D64545;
    --lf-red-soft: #FEF0F0;
    --lf-shadow: 0 8px 32px rgba(13, 27, 42, 0.12);
    --lf-shadow-lg: 0 16px 48px rgba(13, 27, 42, 0.16);
    --lf-radius: 18px;
    --lf-radius-sm: 12px;
    --lf-font: 'DM Sans', system-ui, sans-serif;
    --lf-head: 'Plus Jakarta Sans', sans-serif;
    --lf-sticky: 72px;
    --lf-safe: env(safe-area-inset-bottom, 0px);
    --lf-header-h: 52px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body.lf-app {
    font-family: var(--lf-font);
    background: var(--lf-bg);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(26, 51, 82, 0.18), transparent),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(212, 173, 74, 0.12), transparent);
    color: var(--lf-text);
    min-height: 100dvh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.lf-app h1, body.lf-app h2, body.lf-app h3 {
    font-family: var(--lf-head);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

a { color: var(--lf-gold-dark); text-decoration: none; font-weight: 600; }
a:hover { color: var(--lf-gold); }

/* ─── Loader (legacy — removed from pages) ─── */

.lf-topbar-progress {
    position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9998; overflow: hidden;
}
.lf-topbar-progress::after {
    content: ''; display: block; height: 100%; width: 0;
    background: linear-gradient(90deg, var(--lf-gold), var(--lf-green));
    transition: width 0.3s;
}
.lf-topbar-progress.is-active::after { width: 75%; animation: lf-pulse 1s ease infinite; }
@keyframes lf-pulse { 50% { opacity: 0.7; } }

/* ─── Header — dark for white logo ─── */
.lf-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 18px;
    height: var(--lf-header-h);
    background: var(--lf-navy);
    border-bottom: 2px solid var(--lf-gold);
    position: sticky; top: 0; z-index: 100;
}
.lf-header img { height: 28px; object-fit: contain; }
.lf-header-secure {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}
.lf-header-secure .lf-ico { color: var(--lf-gold-light); }

/* ─── Step 1 intro hero (navy + gold) ─── */
.lf-intro {
    position: relative;
    background: linear-gradient(168deg, #081220 0%, var(--lf-navy) 42%, #1A3352 100%);
    padding: 0 0 40px;
    overflow: hidden;
}
.lf-intro-bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(212, 173, 74, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 173, 74, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.35) 100%);
}
.lf-intro-orb {
    position: absolute; border-radius: 50%; pointer-events: none;
}
.lf-intro-orb--1 {
    width: 220px; height: 220px; top: -80px; right: -60px;
    background: radial-gradient(circle, rgba(212, 173, 74, 0.22) 0%, transparent 70%);
}
.lf-intro-orb--2 {
    width: 180px; height: 180px; bottom: 20px; left: -70px;
    background: radial-gradient(circle, rgba(26, 51, 82, 0.9) 0%, transparent 70%);
    border: 1px solid rgba(212, 173, 74, 0.08);
}
.lf-intro::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0; height: 28px;
    background: var(--lf-bg);
    border-radius: 28px 28px 0 0;
    z-index: 2;
}

.lf-intro-topbar {
    position: relative; z-index: 3;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px 8px;
    max-width: 480px; margin: 0 auto;
}
.lf-intro-logo-img {
    height: 34px; width: auto; max-width: 160px;
    object-fit: contain; display: block;
}
.lf-intro-secure {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(212, 173, 74, 0.12);
    border: 1px solid rgba(212, 173, 74, 0.28);
    border-radius: 100px;
    padding: 5px 10px;
}
.lf-intro-secure .lf-ico { color: var(--lf-gold-light); }

.lf-intro-inner {
    position: relative; z-index: 1;
    max-width: 400px; margin: 0 auto;
    padding: 8px 18px 0;
    text-align: center;
}

.lf-intro-offer {
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(212, 173, 74, 0.35);
    border-radius: 20px;
    padding: 18px 16px 0px;
    margin-bottom: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.08);
    overflow: hidden;
}
.lf-intro-offer::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--lf-gold-dark), var(--lf-gold-light), var(--lf-gold-dark));
}
.lf-intro-offer-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--lf-gold-soft);
    color: var(--lf-gold-dark);
    font-size: 0.58rem; font-weight: 700; letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 9px; border-radius: 100px;
}
.lf-intro-offer-badge .lf-ico { color: var(--lf-gold-dark); }
.lf-intro-offer-badges {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
    margin-bottom: 12px;
}
.lf-intro-offer-badge--hot {
    background: rgba(214, 69, 69, 0.15);
    color: #FFB4B4;
    border: 1px solid rgba(214, 69, 69, 0.35);
    animation: lf-badge-pulse 2.5s ease infinite;
}
@keyframes lf-badge-pulse {
    50% { box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.15); }
}
.lf-intro-offer-label {
    font-size: 0.78rem; color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2px;
}
.lf-intro-offer-amt {
    font-family: var(--lf-head);
    font-size: clamp(2rem, 8vw, 2.6rem);
    font-weight: 800; line-height: 1;
    color: var(--lf-gold-light);
    text-shadow: 0 2px 24px var(--lf-gold-glow);
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}
.lf-intro-offer-amt span {
    font-size: 0.55em; font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 2px;
}
.lf-intro-offer-hook {
    font-size: 0.72rem; font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
    margin-bottom: 12px;
}
.lf-intro-keywords {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(212, 173, 74, 0.2);
}
.lf-intro-keywords span {
    font-size: 0.62rem; font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(212, 173, 74, 0.12);
    border: 1px solid rgba(212, 173, 74, 0.25);
    border-radius: 6px;
    padding: 5px 8px;
    letter-spacing: 0.02em;
}
.lf-intro-cta {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    font-size: 0.72rem; font-weight: 600;
    color: var(--lf-gold-light);
    margin-bottom: 12px;
    opacity: 0.9;
}
.lf-intro-cta .lf-ico {
    transform: rotate(90deg);
    color: var(--lf-gold-light);
    animation: lf-cta-bounce 1.8s ease infinite;
}
@keyframes lf-cta-bounce {
    0%, 100% { transform: rotate(90deg) translateY(0); }
    50% { transform: rotate(90deg) translateY(3px); }
}
.lf-intro-offer-sub {
    font-size: 0.72rem; color: rgba(255, 255, 255, 0.55);
    line-height: 1.45;
}

.lf-intro-metrics {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
    margin-bottom: 12px;
}
.lf-intro-metric {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 6px;
    backdrop-filter: blur(6px);
}
.lf-intro-metric-val {
    display: block;
    font-family: var(--lf-head);
    font-size: 0.95rem; font-weight: 800; color: #fff;
    line-height: 1.2; margin-bottom: 2px;
}
.lf-intro-star {
    font-size: 0.72rem; color: var(--lf-gold-light); margin-left: 1px;
}
.lf-intro-metric-lbl {
    font-size: 0.58rem; color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase; letter-spacing: 0.04em;
}

.lf-intro-feats {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
}
.lf-intro-feat {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.65rem; font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(13, 27, 42, 0.5);
    border: 1px solid rgba(212, 173, 74, 0.2);
    border-radius: 8px;
    padding: 6px 10px;
}
.lf-intro-feat .lf-ico { color: var(--lf-gold-light); }

/* legacy hero — other pages if needed */
.lf-hero {
    background: linear-gradient(135deg, var(--lf-navy) 0%, var(--lf-navy-mid) 100%);
    padding: 20px 18px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lf-hero::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0; height: 20px;
    background: var(--lf-bg);
    border-radius: 20px 20px 0 0;
}
.lf-hero h1 {
    font-size: 1.45rem; font-weight: 800; color: #fff;
    margin-bottom: 4px; position: relative; z-index: 1;
}
.lf-hero h1 em { font-style: normal; color: var(--lf-gold-light); }
.lf-hero p {
    font-size: 0.82rem; color: rgba(255,255,255,0.6);
    position: relative; z-index: 1;
}

.lf-ico { width: 18px; height: 18px; flex-shrink: 0; display: block; }
.lf-ico-sm { width: 14px; height: 14px; }
.lf-ico-lg { width: 28px; height: 28px; }

/* ─── Layout ─── */
.lf-wrap {
    max-width: 440px; margin: 0 auto;
    padding: 0 16px 24px;
    margin-top: -8px;
    position: relative; z-index: 2;
}
body:has(.lf-sticky) .lf-wrap { padding-bottom: calc(var(--lf-sticky) + var(--lf-safe) + 20px); }
body:has(.lf-intro) .lf-wrap { margin-top: -16px; }
body:has(.lf-hero) .lf-wrap { margin-top: -12px; }

@media (min-width: 768px) {
    .lf-wrap { max-width: 480px; padding-bottom: 32px; margin-top: 20px; }
    body:has(.lf-intro) .lf-wrap { margin-top: 16px; }
    body:has(.lf-hero) .lf-wrap { margin-top: 20px; }
    body:has(.lf-sticky) .lf-wrap { padding-bottom: 32px; }
    .lf-sticky { display: none !important; }
}

/* ─── Card ─── */
.lf-card {
    background: var(--lf-white);
    border: 1px solid var(--lf-border);
    border-radius: var(--lf-radius);
    box-shadow: var(--lf-shadow-lg);
    overflow: hidden;
}
.lf-card::before {
    content: '';
    display: block; height: 4px;
    background: linear-gradient(90deg, var(--lf-gold), var(--lf-gold-light), var(--lf-green));
}

.lf-card-body { padding: 20px 18px 24px; }

.lf-card-body > .lf-otp-phone-badge { display: flex; margin: 0 auto; width: fit-content; }

/* ─── Compact step bar ─── */
.lf-steps-bar {
    padding: 16px 18px 14px;
    background: var(--lf-bg-2);
    border-bottom: 1px solid var(--lf-border-light);
}
.lf-steps-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px;
}
.lf-step-label {
    font-size: 0.78rem; font-weight: 600; color: var(--lf-text-soft);
}
.lf-step-pct {
    font-family: var(--lf-head); font-size: 0.72rem; font-weight: 800;
    color: var(--lf-navy); background: var(--lf-gold-soft);
    padding: 2px 8px; border-radius: 100px;
}
.lf-steps-track {
    display: flex; gap: 6px; margin-bottom: 10px;
}
.lf-steps-seg {
    flex: 1; height: 5px; border-radius: 5px;
    background: var(--lf-border);
    transition: background 0.4s, box-shadow 0.4s;
}
.lf-steps-seg.is-done { background: var(--lf-green); }
.lf-steps-seg.is-active {
    background: linear-gradient(90deg, var(--lf-gold), var(--lf-gold-light));
    box-shadow: 0 0 8px var(--lf-gold-glow);
}
.lf-steps-names {
    display: flex; justify-content: space-between;
}
.lf-steps-names span {
    font-size: 0.58rem; font-weight: 700; letter-spacing: 0.04em;
    text-transform: uppercase; color: var(--lf-text-muted);
}
.lf-steps-names span.is-active { color: var(--lf-gold-dark); }
.lf-steps-names span.is-done { color: var(--lf-green); }
.lf-progress-fill--hidden { display: none !important; }

.lf-card-head { margin-bottom: 18px; }
.lf-card-head h2 { font-size: 1.25rem; font-weight: 800; color: var(--lf-navy); margin-bottom: 3px; }
.lf-card-head p { font-size: 0.84rem; color: var(--lf-text-soft); }

/* ─── Form ─── */
.lf-field { margin-bottom: 16px; }
.lf-field-amount {
    background: var(--lf-bg-2);
    border: 1px solid var(--lf-border-light);
    border-radius: var(--lf-radius-sm);
    padding: 14px;
}
.lf-field label {
    display: block; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--lf-text-soft); margin-bottom: 6px;
}
.lf-input-wrap {
    display: flex; align-items: center; gap: 10px;
    background: var(--lf-white); border: 1.5px solid var(--lf-border);
    border-radius: var(--lf-radius-sm); padding: 0 14px; min-height: 50px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.lf-input-wrap:focus-within {
    border-color: var(--lf-gold-dark);
    box-shadow: 0 0 0 3px var(--lf-gold-glow);
}
.lf-input-wrap .prefix {
    font-weight: 700; color: var(--lf-navy); font-size: 0.95rem;
    padding-right: 10px; border-right: 1px solid var(--lf-border);
}
.lf-input-wrap input, .lf-input-wrap select {
    flex: 1; border: none; background: transparent; outline: none;
    font-family: var(--lf-font); font-size: 16px; font-weight: 500;
    color: var(--lf-text); padding: 13px 0; width: 100%; min-width: 0;
    -webkit-appearance: none; appearance: none;
}
.lf-input-wrap select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8FA3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 0 center; padding-right: 18px;
}
.lf-input-wrap input::placeholder { color: var(--lf-text-muted); font-weight: 400; }

.lf-amount-display {
    font-family: var(--lf-head); font-size: 2rem; font-weight: 800;
    color: var(--lf-navy); text-align: center; margin-bottom: 10px;
}
input[type=range].lf-range {
    width: 100%; height: 6px; -webkit-appearance: none; appearance: none;
    background: var(--lf-border); border-radius: 6px; outline: none;
}
input[type=range].lf-range::-webkit-slider-thumb {
    -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(135deg, var(--lf-gold), var(--lf-gold-light));
    border: 3px solid var(--lf-white);
    box-shadow: 0 2px 12px var(--lf-gold-glow); cursor: pointer;
}
.lf-range-labels {
    display: flex; justify-content: space-between;
    font-size: 0.68rem; color: var(--lf-text-muted); margin-top: 6px;
}
.lf-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.lf-chip {
    background: var(--lf-white); border: 1.5px solid var(--lf-border);
    color: var(--lf-text); font-family: var(--lf-font);
    font-size: 0.78rem; font-weight: 600; padding: 7px 13px;
    border-radius: 100px; cursor: pointer;
    transition: all 0.15s; -webkit-tap-highlight-color: transparent;
}
.lf-chip.is-active {
    background: var(--lf-navy); border-color: var(--lf-navy); color: var(--lf-gold-light);
}

.lf-group-title {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--lf-gold-dark); margin: 18px 0 12px; padding-top: 14px;
    border-top: 1px solid var(--lf-border-light);
}
.lf-group-title:first-child { border-top: none; margin-top: 0; padding-top: 0; }

.lf-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .lf-grid-2 { grid-template-columns: 1fr; } }

.lf-consent {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 0.72rem; color: var(--lf-text-soft); line-height: 1.55; margin-top: 4px;
}
.lf-consent input { accent-color: var(--lf-gold-dark); width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }

.lf-err { font-size: 0.75rem; color: var(--lf-red); margin-top: 4px; }
.lf-err p { margin: 0; }

.lf-alert {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 12px 14px; border-radius: var(--lf-radius-sm);
    font-size: 0.84rem; margin-bottom: 16px;
}
.lf-alert-error { background: var(--lf-red-soft); color: var(--lf-red); border: 1px solid rgba(214, 69, 69, 0.2); }
.lf-alert-success { background: var(--lf-green-soft); color: var(--lf-green); border: 1px solid rgba(24, 160, 107, 0.2); }
.lf-alert-warn { background: var(--lf-gold-soft); color: var(--lf-gold-dark); border: 1px solid rgba(212, 173, 74, 0.3); }

/* ─── Button ─── */
.lf-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; min-height: 50px; margin-top: 18px;
    background: linear-gradient(135deg, var(--lf-gold) 0%, var(--lf-gold-light) 100%);
    color: var(--lf-navy) !important; font-family: var(--lf-head);
    font-size: 0.95rem; font-weight: 700; border: none; border-radius: 12px;
    padding: 13px 20px; cursor: pointer; text-decoration: none !important;
    box-shadow: 0 6px 20px var(--lf-gold-glow);
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}
.lf-btn:hover { filter: brightness(1.04); transform: translateY(-1px); color: var(--lf-navy) !important; }
.lf-btn:active { transform: scale(0.98); }
.lf-btn.is-loading { color: transparent !important; pointer-events: none; }
.lf-btn.is-loading::after {
    content: ''; position: absolute; width: 22px; height: 22px;
    border: 2.5px solid rgba(13, 27, 42, 0.2); border-top-color: var(--lf-navy);
    border-radius: 50%; animation: lf-spin 0.65s linear infinite;
}
.lf-btn-desktop { display: none; }
@media (min-width: 768px) { .lf-btn-desktop { display: flex; } }

.lf-sticky {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--lf-navy);
    border-top: 2px solid var(--lf-gold);
    padding: 10px 16px calc(10px + var(--lf-safe));
    box-shadow: 0 -8px 30px rgba(13, 27, 42, 0.25);
}
.lf-sticky .lf-btn { margin-top: 0; }

.lf-foot-note {
    text-align: center; font-size: 0.68rem; color: var(--lf-text-muted);
    margin-top: 14px; line-height: 1.5;
}

/* ─── Step 1 below-fold (partners, why us, disclosure) ─── */
.lf-step1-extras {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: lf-fade-up 0.45s ease 0.1s both;
}

.lf-partners-card {
    background: var(--lf-white);
    border: 1px solid var(--lf-border-light);
    border-radius: var(--lf-radius);
    padding: 16px 14px;
    box-shadow: var(--lf-shadow);
    overflow: hidden;
}
.lf-partners-label {
    display: block;
    text-align: center;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lf-text-muted);
    margin-bottom: 14px;
}
.lf-partners-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: lf-partners-scroll 28s linear infinite;
}
.lf-partners-track:hover { animation-play-state: paused; }
@keyframes lf-partners-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.lf-partner-logo {
    flex-shrink: 0;
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lf-partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.85);
    transition: filter 0.25s, transform 0.25s;
}
.lf-partner-logo img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.04);
}

.lf-why-section { padding: 0 2px; }
.lf-why-title {
    text-align: center;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--lf-navy);
    margin-bottom: 12px;
}
.lf-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.lf-why-card {
    background: var(--lf-white);
    border: 1px solid var(--lf-border-light);
    border-radius: var(--lf-radius-sm);
    padding: 14px 12px;
    box-shadow: 0 4px 16px rgba(13, 27, 42, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.lf-why-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 27, 42, 0.1);
}
.lf-why-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
}
.lf-why-icon .lf-ico { width: 18px; height: 18px; }
.lf-why-icon--purple { background: #EDE9FE; color: #7C3AED; }
.lf-why-icon--green { background: var(--lf-green-soft); color: var(--lf-green); }
.lf-why-icon--orange { background: #FFEDD5; color: #EA580C; }
.lf-why-icon--rose { background: #FFE4E6; color: #E11D48; }
.lf-why-card h4 {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--lf-navy);
    margin-bottom: 4px;
    line-height: 1.25;
}
.lf-why-card p {
    font-size: 0.68rem;
    color: var(--lf-text-soft);
    line-height: 1.45;
    margin: 0;
}

.lf-disclosure {
    background: linear-gradient(135deg, #EEF4FF 0%, #F0F4FA 100%);
    border: 1px solid #C8D8F0;
    border-radius: var(--lf-radius);
    padding: 16px 14px;
}
.lf-disclosure-text {
    font-size: 0.68rem;
    color: var(--lf-text-soft);
    line-height: 1.65;
    text-align: justify;
    margin-bottom: 12px;
}
.lf-disclosure-text strong { color: var(--lf-navy); font-weight: 700; }
.lf-disclosure-text a { font-size: inherit; color: var(--lf-navy); text-decoration: underline; }
.lf-disclosure-tip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--lf-text);
    line-height: 1.5;
    margin-bottom: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}
.lf-disclosure-tip .lf-ico { flex-shrink: 0; color: var(--lf-gold-dark); margin-top: 1px; }
.lf-disclosure-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--lf-head);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--lf-green);
    background: var(--lf-green-soft);
    border: 1px solid rgba(24, 160, 107, 0.25);
    border-radius: 10px;
    padding: 10px 12px;
    margin: 0;
}
.lf-disclosure-secure .lf-ico { color: var(--lf-green); }

body.lf-step1-page .lf-wrap { max-width: 480px; }
body.lf-step1-page:has(.lf-sticky) .lf-wrap {
    padding-bottom: calc(var(--lf-sticky) + var(--lf-safe) + 24px);
}

/* Step 1 — highlight first field for new visitors */
.lf-field-start {
    position: relative;
    background: linear-gradient(145deg, var(--lf-gold-soft) 0%, rgba(251, 243, 220, 0.35) 100%);
    border: 2px solid rgba(212, 173, 74, 0.5);
    border-radius: var(--lf-radius-sm);
    padding: 14px 14px 12px;
    margin-bottom: 18px;
    animation: lf-field-glow 2.8s ease-in-out infinite;
}
.lf-field-start.is-done {
    animation: none;
    background: var(--lf-bg-2);
    border-color: var(--lf-border-light);
    box-shadow: none;
}
@keyframes lf-field-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 173, 74, 0.35); }
    50% { box-shadow: 0 0 0 8px rgba(212, 173, 74, 0.08); }
}
.lf-field-start-head {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    margin-bottom: 8px;
}
.lf-field-start-head label {
    margin-bottom: 0;
    color: var(--lf-navy);
    font-size: 0.85rem;
}
.lf-start-badge {
    flex-shrink: 0;
    font-size: 0.58rem; font-weight: 800;
    letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--lf-navy);
    background: linear-gradient(135deg, var(--lf-gold), var(--lf-gold-light));
    padding: 4px 10px; border-radius: 100px;
    box-shadow: 0 2px 8px var(--lf-gold-glow);
}
.lf-field-start .lf-input-wrap--focus {
    border-color: var(--lf-gold-dark);
    border-width: 2px;
    background: var(--lf-white);
    box-shadow: 0 4px 14px rgba(212, 173, 74, 0.22);
}
.lf-field-start.is-done .lf-input-wrap--focus {
    border-width: 1.5px;
    border-color: var(--lf-border);
    box-shadow: none;
}
.lf-field-hint {
    display: flex; align-items: flex-start; gap: 6px;
    font-size: 0.78rem; font-weight: 600;
    color: var(--lf-gold-dark);
    margin-top: 8px; margin-bottom: 0;
    line-height: 1.4;
}
.lf-field-hint .lf-ico { flex-shrink: 0; margin-top: 1px; color: var(--lf-gold-dark); }
.lf-field-start.is-done .lf-field-hint { color: var(--lf-text-soft); font-weight: 500; }
.lf-field-start.is-done .lf-field-hint .lf-ico { color: var(--lf-green); }

body.lf-step1-page .lf-card-head h2 { font-size: 1.42rem; }
body.lf-step1-page .lf-card-head p { font-size: 0.92rem; }
body.lf-step1-page .lf-field label { font-size: 0.82rem; }
body.lf-step1-page .lf-input-wrap .prefix { font-size: 1.08rem; }
body.lf-step1-page .lf-input-wrap input { font-size: 18px; font-weight: 600; }
body.lf-step1-page .lf-amount-display { font-size: 2.35rem; }
body.lf-step1-page .lf-range-labels { font-size: 0.76rem; }

@media (min-width: 640px) {
    .lf-why-grid { gap: 12px; }
    .lf-why-card { padding: 16px 14px; }
    .lf-why-card h4 { font-size: 0.88rem; }
    .lf-why-card p { font-size: 0.72rem; }
}

/* ─── EMI Step (Tenure) ─── */
.lf-loan-banner {
    display: flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, var(--lf-navy) 0%, var(--lf-navy-mid) 100%);
    border-radius: var(--lf-radius-sm);
    padding: 14px 16px;
    margin-bottom: 16px;
    color: #fff;
}
.lf-loan-banner-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(212, 173, 74, 0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--lf-gold-light); flex-shrink: 0;
}
.lf-loan-banner-text { flex: 1; min-width: 0; }
.lf-loan-banner-text .lbl { display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.65; margin-bottom: 2px; }
.lf-loan-banner-text strong { font-family: var(--lf-head); font-size: 1.15rem; font-weight: 800; color: var(--lf-gold-light); }
.lf-loan-banner-rate {
    text-align: center; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px; padding: 6px 10px; flex-shrink: 0;
}
.lf-loan-banner-rate span { display: block; font-family: var(--lf-head); font-size: 0.95rem; font-weight: 800; color: #fff; line-height: 1; }
.lf-loan-banner-rate small { font-size: 0.55rem; text-transform: uppercase; opacity: 0.55; letter-spacing: 0.05em; }

.lf-emi-list { list-style: none; display: flex; flex-direction: column; gap: 10px; padding-left: 0;}
.lf-emi-list li { position: relative; }
.lf-emi-list input { position: absolute; opacity: 0; pointer-events: none; }
.lf-emi-list label {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 16px;
    background: var(--lf-white);
    border: 2px solid var(--lf-border);
    border-radius: 14px;
    cursor: pointer; min-height: 68px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.lf-emi-list label::before { display: none; }
.lf-emi-radio {
    width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
    border: 2px solid var(--lf-border);
    position: relative; transition: all 0.2s;
    margin: 0;
}
.lf-emi-radio::after {
    content: ''; position: absolute; inset: 4px; border-radius: 50%;
    background: var(--lf-gold); transform: scale(0); transition: transform 0.2s;
}
.lf-emi-list input:checked + label {
    background: linear-gradient(135deg, #FFFBF0 0%, var(--lf-gold-soft) 100%);
    border-color: var(--lf-gold-dark);
    box-shadow: 0 4px 20px var(--lf-gold-glow);
    transform: translateY(-1px);
    border-left: 4px solid var(--lf-gold);
    padding-left: 13px;
}
.lf-emi-list input:checked + label::before { display: none; }
.lf-emi-list input:checked + label .lf-emi-radio { border-color: var(--lf-gold-dark); }
.lf-emi-list input:checked + label .lf-emi-radio::after { transform: scale(1); }
.lf-emi-list li.is-rec label { border-color: rgba(212, 173, 74, 0.35); }
.lf-emi-tag {
    position: absolute; top: -10px; right: 12px; z-index: 2;
    display: inline-flex; align-items: center; gap: 4px;
    background: linear-gradient(135deg, var(--lf-navy), var(--lf-navy-mid));
    color: var(--lf-gold-light);
    font-size: 0.55rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 100px;
    box-shadow: 0 4px 12px rgba(13, 27, 42, 0.25);
}
.lf-emi-left { flex: 1; min-width: 0; }
.lf-emi-left .tenure { font-family: var(--lf-head); font-weight: 700; font-size: 0.95rem; color: var(--lf-navy); display: block; }
.lf-emi-left .rate { font-size: 0.72rem; color: var(--lf-text-muted); }
.lf-emi-right { text-align: right; flex-shrink: 0; }
.lf-emi-right .amt { font-family: var(--lf-head); font-size: 1.2rem; font-weight: 800; color: var(--lf-navy); display: block; line-height: 1.1; }
.lf-emi-list input:checked + label .lf-emi-right .amt { color: var(--lf-gold-dark); }
.lf-emi-right .per { font-size: 0.62rem; color: var(--lf-text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* Tenure page extras */
.lf-tenure-extra { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.lf-tip-box {
    display: flex; gap: 10px; align-items: flex-start;
    background: linear-gradient(135deg, #EEF4FF, #F5F8FC);
    border: 1px solid #C8D8F0; border-radius: 12px; padding: 12px 14px;
    font-size: 0.78rem; color: var(--lf-text-soft); line-height: 1.5;
}
.lf-tip-box .lf-ico { color: #4A7FD4; flex-shrink: 0; margin-top: 2px; }
.lf-tip-box strong { color: var(--lf-navy); }

.lf-trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.lf-trust-tile {
    background: var(--lf-white); border: 1px solid var(--lf-border-light);
    border-radius: 12px; padding: 12px 8px; text-align: center;
}
.lf-trust-tile .ico {
    width: 36px; height: 36px; margin: 0 auto 6px;
    background: var(--lf-gold-soft); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--lf-gold-dark);
}
.lf-trust-tile strong { display: block; font-size: 0.72rem; color: var(--lf-navy); margin-bottom: 2px; }
.lf-trust-tile small { font-size: 0.6rem; color: var(--lf-text-muted); }

.lf-next-box {
    background: var(--lf-bg-2); border: 1px solid var(--lf-border-light);
    border-radius: 12px; padding: 14px;
}
.lf-next-box h4 {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.82rem; font-weight: 700; color: var(--lf-navy); margin-bottom: 10px;
}
.lf-next-box ol { padding-left: 18px; font-size: 0.76rem; color: var(--lf-text-soft); line-height: 1.65; }
.lf-next-box li { margin-bottom: 4px; }

.lf-tenure-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.lf-tenure-stats div {
    background: var(--lf-navy); color: #fff; border-radius: 12px;
    padding: 12px; text-align: center;
}
.lf-tenure-stats strong { display: block; font-family: var(--lf-head); font-size: 1.1rem; color: var(--lf-gold-light); }
.lf-tenure-stats span { font-size: 0.62rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.04em; }

body.lf-tenure-page .lf-wrap { max-width: 480px; padding-bottom: calc(var(--lf-sticky) + var(--lf-safe) + 28px); }

/* ─── Premium Checkout (Eligibility) ─── */
.lf-checkout { animation: lf-fade-up 0.5s ease; }

/* Loan Approved hero */
.lf-approved-hero {
    background: linear-gradient(160deg, var(--lf-navy) 0%, #152840 45%, var(--lf-navy-mid) 100%);
    border-radius: 16px;
    padding: 24px 18px 18px;
    text-align: center;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 173, 74, 0.2);
    box-shadow: 0 12px 40px rgba(13, 27, 42, 0.25);
}
.lf-approved-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.lf-approved-icon {
    width: 64px; height: 64px; margin: 0 auto 14px;
    background: var(--lf-green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 0 0 8px rgba(24, 160, 107, 0.2), 0 0 32px rgba(24, 160, 107, 0.45);
    animation: lf-approved-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative; z-index: 1;
}
@keyframes lf-approved-pop {
    from { transform: scale(0.4); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.lf-approved-hero h2 {
    font-family: var(--lf-head); font-size: 1.5rem; font-weight: 800;
    color: #fff; margin-bottom: 8px; position: relative; z-index: 1;
}
.lf-approved-hero h2 em {
    font-style: normal; color: #5EEAA0;
}
.lf-approved-hero > p {
    font-size: 0.82rem; color: rgba(255,255,255,0.72);
    line-height: 1.55; margin-bottom: 14px; position: relative; z-index: 1;
    max-width: 320px; margin-left: auto; margin-right: auto;
}
.lf-approved-hero > p strong { color: #fff; font-weight: 700; }
.lf-approved-pills {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
    position: relative; z-index: 1;
}
.lf-approved-pills span {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
    font-size: 0.72rem; font-weight: 600;
    padding: 6px 12px; border-radius: 100px;
}
.lf-approved-pills .lf-ico { color: var(--lf-gold-light); opacity: 0.9; }

/* Offer reserved countdown bar */
.lf-offer-reserved {
    display: flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, #5C1A1A 0%, #7A2222 100%);
    border: 1px solid rgba(255, 100, 100, 0.25);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 16px;
    box-shadow: 0 6px 20px rgba(92, 26, 26, 0.3);
}
.lf-offer-reserved.is-urgent {
    animation: lf-reserved-pulse 1s ease infinite;
}
@keyframes lf-reserved-pulse {
    50% { box-shadow: 0 0 0 4px rgba(255, 80, 80, 0.25); }
}
.lf-reserved-ico {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.lf-reserved-text {
    flex: 1; min-width: 0; text-align: left;
}
.lf-reserved-text strong {
    display: block; font-size: 0.88rem; font-weight: 700; color: #fff;
    margin-bottom: 2px;
}
.lf-reserved-text span {
    font-size: 0.68rem; color: rgba(255,255,255,0.65);
}
.lf-reserved-time {
    font-family: var(--lf-head); font-size: 1.5rem; font-weight: 800;
    color: #fff; letter-spacing: 0.04em; flex-shrink: 0;
    min-width: 58px; text-align: right;
}

.lf-checkout-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--lf-green-soft); color: var(--lf-green);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
    padding: 6px 14px; border-radius: 100px;
    margin-bottom: 14px;
    border: 1px solid rgba(24, 160, 107, 0.25);
}

.lf-offer-card--premium {
    border-radius: 16px; padding: 24px 18px 20px;
    margin-bottom: 12px;
    box-shadow: 0 12px 40px rgba(13, 27, 42, 0.28);
    border: 1px solid rgba(212, 173, 74, 0.25);
}
.lf-offer-shine {
    position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    animation: lf-shine 3s ease infinite;
    pointer-events: none;
}
@keyframes lf-shine { 0% { left: -100%; } 50%, 100% { left: 150%; } }
.lf-offer-card--premium .lbl {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.62rem; letter-spacing: 0.12em;
}
.lf-offer-card--premium .amt { font-size: 2.4rem; text-shadow: 0 2px 20px rgba(212, 173, 74, 0.4); }

.lf-user-strip {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px;
    font-size: 0.78rem; color: var(--lf-text-soft);
    padding: 10px 12px; margin-bottom: 16px;
    background: var(--lf-bg-2); border-radius: 100px;
    border: 1px solid var(--lf-border-light);
}
.lf-user-strip .dot { color: var(--lf-border); font-weight: 700; }
.lf-user-strip span:not(.dot) { font-weight: 600; color: var(--lf-navy); }

.lf-unlock-title {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--lf-head); font-size: 0.95rem; font-weight: 800;
    color: var(--lf-gold-light); text-align: center;
    margin-bottom: 0; padding: 14px 16px 12px;
    letter-spacing: 0.02em;
}
.lf-unlock-title .lf-ico { color: var(--lf-gold-light); }

/* Highlighted checkout block */
.lf-pay-wrap {
    background: linear-gradient(145deg, var(--lf-navy) 0%, #1a3352 55%, #243d5e 100%);
    border-radius: 18px;
    padding: 0 0 4px;
    margin-bottom: 4px;
    box-shadow:
        0 16px 48px rgba(13, 27, 42, 0.28),
        0 0 0 1px rgba(212, 173, 74, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative; overflow: hidden;
}
.lf-pay-wrap::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--lf-gold), var(--lf-gold-light), var(--lf-green), var(--lf-gold));
    background-size: 200% 100%;
    animation: lf-gradient 4s ease infinite;
}
.lf-pay-wrap::after {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(212, 173, 74, 0.18), transparent 70%);
    pointer-events: none;
}

.lf-pay-box {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFCF5 100%);
    border: none;
    border-radius: 0 0 15px 15px;
    padding: 18px 16px 16px;
    margin: 0 4px 4px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
}
.lf-pay-box::before { display: none; }

.lf-pay-head {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--lf-head); font-size: 0.72rem; font-weight: 800;
    color: var(--lf-navy); text-transform: uppercase; letter-spacing: 0.08em;
    margin: 0 auto 6px;
    background: linear-gradient(135deg, var(--lf-green-soft), #E8F7F0);
    border: 1px solid rgba(24, 160, 107, 0.25);
    padding: 5px 12px; border-radius: 100px;
    width: fit-content;
    display: flex; justify-content: center;
}
.lf-pay-head .lf-ico { color: var(--lf-green); }
.lf-pay-sub {
    text-align: center; font-size: 0.76rem; color: var(--lf-text-soft);
    margin-bottom: 14px;
}

.lf-pay-price {
    text-align: center; margin-bottom: 14px;
    background: linear-gradient(135deg, #FFF9EB 0%, #FFF3D6 100%);
    border: 1.5px solid rgba(212, 173, 74, 0.45);
    border-radius: 14px;
    padding: 16px 14px 14px;
    box-shadow: 0 4px 16px rgba(212, 173, 74, 0.15);
}
.lf-pay-mrp { font-size: 0.95rem; color: #9A8B6E; text-decoration: line-through; display: block; margin-bottom: 2px; }
.lf-pay-now { line-height: 1; margin: 6px 0 10px; }
.lf-pay-now .sym {
    font-family: var(--lf-head); font-size: 1.5rem; font-weight: 700;
    color: var(--lf-gold-dark); vertical-align: top;
}
.lf-pay-now .val {
    font-family: var(--lf-head); font-size: 3.2rem; font-weight: 800;
    color: var(--lf-navy); letter-spacing: -0.03em;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.8);
}
.lf-pay-save {
    display: inline-block;
    background: linear-gradient(135deg, var(--lf-green), #22B87A);
    color: #fff; font-size: 0.72rem; font-weight: 700;
    padding: 5px 16px; border-radius: 100px;
    border: none;
    box-shadow: 0 4px 12px rgba(24, 160, 107, 0.3);
}

.lf-pay-trust {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px;
}
.lf-pay-trust div {
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    font-size: 0.6rem; font-weight: 700; color: var(--lf-navy);
    text-align: center; line-height: 1.25;
    background: var(--lf-bg-2);
    border: 1px solid var(--lf-border-light);
    border-radius: 10px; padding: 10px 6px;
}
.lf-pay-trust .lf-ico {
    color: var(--lf-gold-dark); margin: 0 auto;
    width: 20px; height: 20px;
}

.lf-pay-urgency {
    display: flex; align-items: center; justify-content: center; gap: 5px;
    background: linear-gradient(135deg, var(--lf-navy), var(--lf-navy-mid));
    color: var(--lf-gold-light);
    font-size: 0.72rem; font-weight: 700;
    padding: 9px 14px; border-radius: 10px; margin-bottom: 14px;
    border: 1px solid rgba(212, 173, 74, 0.35);
    animation: lf-urgency-pulse 2s ease infinite;
}
.lf-pay-urgency .lf-ico { color: var(--lf-gold-light); }

.lf-pay-box .lf-btn-pay { margin-top: 0; }
.lf-pay-note {
    text-align: center; font-size: 0.65rem; color: var(--lf-text-muted);
    margin-top: 12px; line-height: 1.4;
}

.lf-btn-pay {
    background: linear-gradient(135deg, var(--lf-gold) 0%, #E8C96A 50%, var(--lf-gold-light) 100%);
    background-size: 200% 100%;
    animation: lf-btn-shimmer 3s ease infinite;
    font-size: 1rem; min-height: 54px;
    box-shadow: 0 8px 28px var(--lf-gold-glow), inset 0 1px 0 rgba(255,255,255,0.35);
    color: var(--lf-navy) !important;
}
@keyframes lf-btn-shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes lf-urgency-pulse { 50% { box-shadow: 0 0 0 5px rgba(212, 173, 74, 0.12); } }

.lf-offer-timer {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    background: linear-gradient(135deg, #FEF3E2, #FFF8EB);
    border: 1px solid rgba(212, 173, 74, 0.45);
    color: var(--lf-gold-dark); font-size: 0.78rem; font-weight: 600;
    padding: 10px 14px; border-radius: 12px; margin-bottom: 12px;
    animation: lf-urgency-pulse 2.5s ease infinite;
}
.lf-offer-timer strong { font-family: var(--lf-head); font-size: 0.95rem; color: var(--lf-navy); letter-spacing: 0.05em; }

.lf-customer-card {
    background: var(--lf-bg-2); border: 1px solid var(--lf-border-light);
    border-radius: 14px; padding: 14px; margin-bottom: 14px;
}
.lf-customer-card h4 {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.82rem; font-weight: 700; color: var(--lf-navy);
    margin-bottom: 10px; padding-bottom: 8px;
    border-bottom: 1px solid var(--lf-border-light);
}
.lf-customer-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px 12px;
}
.lf-customer-grid .k { display: block; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--lf-text-muted); margin-bottom: 2px; }
.lf-customer-grid .v { font-size: 0.78rem; font-weight: 600; color: var(--lf-navy); word-break: break-word; }

.lf-worth-box {
    display: flex; gap: 12px; align-items: flex-start;
    background: linear-gradient(135deg, #EEF4FF, #F0F6FF);
    border: 1px solid #C5D9F5; border-radius: 14px;
    padding: 14px; margin-top: 16px;
}
.lf-worth-box .lf-ico { color: #5B8DEF; flex-shrink: 0; margin-top: 2px; }
.lf-worth-box strong { display: block; font-size: 0.85rem; color: var(--lf-navy); margin-bottom: 4px; }
.lf-worth-box p { font-size: 0.74rem; color: var(--lf-text-soft); line-height: 1.55; margin: 0; }

.lf-trust-row--checkout { margin-top: 12px; }

.lf-after-pay {
    background: var(--lf-white); border: 1px solid var(--lf-border-light);
    border-radius: 14px; padding: 16px 14px; margin-top: 12px;
}
.lf-after-pay h4 { font-size: 0.88rem; font-weight: 700; color: var(--lf-navy); margin-bottom: 14px; }
.lf-timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 4px; }
.lf-timeline-item {
    display: flex; gap: 12px; padding-bottom: 16px; position: relative;
}
.lf-timeline-item:not(:last-child)::before {
    content: ''; position: absolute; left: 15px; top: 32px; bottom: 0; width: 2px;
    background: var(--lf-border-light);
}
.lf-timeline-item .num {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--lf-navy), var(--lf-navy-mid));
    color: var(--lf-gold-light); font-family: var(--lf-head); font-size: 0.82rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(13, 27, 42, 0.2);
}
.lf-timeline-item strong { display: block; font-size: 0.82rem; color: var(--lf-navy); margin-bottom: 2px; }
.lf-timeline-item p { font-size: 0.72rem; color: var(--lf-text-soft); line-height: 1.45; margin-bottom: 6px; }
.lf-tag-time {
    display: inline-block; font-size: 0.6rem; font-weight: 700;
    padding: 3px 8px; border-radius: 100px;
    background: var(--lf-green-soft); color: var(--lf-green);
}
.lf-tag-time--blue { background: #EEF4FF; color: #4A7FD4; }
.lf-tag-time--gold { background: var(--lf-gold-soft); color: var(--lf-gold-dark); }

.lf-checkout-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px;
}
.lf-stat-block {
    display: flex; align-items: center; gap: 10px;
    background: var(--lf-bg-2); border: 1px solid var(--lf-border-light);
    border-radius: 12px; padding: 12px;
}
.lf-stat-block .ico {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    background: var(--lf-white); border: 1px solid var(--lf-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--lf-gold-dark);
}
.lf-stat-block strong { display: block; font-family: var(--lf-head); font-size: 1rem; color: var(--lf-navy); line-height: 1.1; }
.lf-stat-block span { font-size: 0.62rem; color: var(--lf-text-muted); }

body.lf-checkout-page .lf-wrap { max-width: 480px; padding-bottom: calc(var(--lf-sticky) + var(--lf-safe) + 28px); }

.lf-sticky-pay { display: none; }

@keyframes lf-fade-up {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* legacy offer/fee — kept for compat */
.lf-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.lf-pill { background: var(--lf-bg-2); border: 1px solid var(--lf-border); border-radius: 100px; padding: 7px 12px; font-size: 0.76rem; color: var(--lf-text-soft); }
.lf-pill strong { color: var(--lf-navy); font-weight: 700; }
.lf-celebrate { text-align: center; padding: 16px 0 14px; }
.lf-celebrate-icon { width: 64px; height: 64px; margin: 0 auto 10px; background: var(--lf-green-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--lf-green); }
.lf-offer-card { background: linear-gradient(135deg, var(--lf-navy) 0%, var(--lf-navy-mid) 100%); border-radius: var(--lf-radius-sm); padding: 20px 16px; text-align: center; color: var(--lf-white); margin-bottom: 14px; position: relative; overflow: hidden; }
.lf-offer-card .lbl { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; }
.lf-offer-card .amt { font-family: var(--lf-head); font-size: 2rem; font-weight: 800; color: var(--lf-gold-light); display: block; margin: 4px 0 12px; }
.lf-offer-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 12px; }
.lf-offer-meta .ml { display: block; font-size: 0.58rem; opacity: 0.5; margin-bottom: 2px; }
.lf-offer-meta .mv { font-family: var(--lf-head); font-size: 0.82rem; font-weight: 700; }
.lf-offer-meta .mv.hi { color: var(--lf-gold-light); }
.lf-fee-box { background: var(--lf-gold-soft); border: 1px solid rgba(212, 173, 74, 0.35); border-radius: var(--lf-radius-sm); padding: 18px 14px; text-align: center; }

/* ─── OTP page ─── */
.lf-otp-visual { text-align: center; padding: 8px 0; }
.lf-otp-circle {
    width: 72px; height: 72px; margin: 0 auto 10px; border-radius: 50%;
    background: var(--lf-gold-soft); border: 2px solid rgba(212, 173, 74, 0.4);
    display: flex; align-items: center; justify-content: center; color: var(--lf-gold-dark);
}
.lf-otp-phone-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--lf-bg-2); border: 1px solid var(--lf-border);
    border-radius: 100px; padding: 7px 14px;
    font-weight: 700; color: var(--lf-navy); font-size: 0.88rem; margin-top: 6px;
}
.lf-otp-row { display: flex; gap: 10px; justify-content: center; margin: 14px 0; }
.lf-otp-digit {
    width: 52px; height: 56px; text-align: center;
    font-family: var(--lf-head); font-size: 1.5rem; font-weight: 800;
    color: var(--lf-navy); background: var(--lf-bg-2);
    border: 2px solid var(--lf-border); border-radius: 12px; outline: none;
    transition: all 0.2s;
}
.lf-otp-digit:focus, .lf-otp-digit.has-val {
    border-color: var(--lf-gold-dark); background: var(--lf-gold-soft);
    box-shadow: 0 0 0 3px var(--lf-gold-glow);
}
.lf-countdown { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 10px 0; }
.lf-countdown svg { width: 40px; height: 40px; transform: rotate(-90deg); }
.lf-countdown .bg { fill: none; stroke: var(--lf-border); stroke-width: 3; }
.lf-countdown .fg { fill: none; stroke: var(--lf-gold); stroke-width: 3; stroke-linecap: round; }
.lf-countdown p { font-size: 0.8rem; color: var(--lf-text-soft); }
.lf-countdown strong { color: var(--lf-navy); font-family: var(--lf-head); }

/* OTP resend timer — full-width bar */
.lf-otp-timer {
    background: var(--lf-bg-2);
    border: 1px solid var(--lf-border-light);
    border-radius: var(--lf-radius-sm);
    padding: 12px 14px;
    margin: 12px 0 14px;
}
.lf-otp-timer-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 8px;
    gap: 10px;
}
.lf-otp-timer-label {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.78rem; font-weight: 600; color: var(--lf-text-soft);
}
.lf-otp-timer-label .lf-ico { color: var(--lf-gold-dark); flex-shrink: 0; }
.lf-otp-timer-val {
    font-size: 0.78rem; color: var(--lf-text-soft); flex-shrink: 0;
}
.lf-otp-timer-val strong {
    font-family: var(--lf-head); font-size: 1.1rem; font-weight: 800;
    color: var(--lf-navy); min-width: 1.5ch; display: inline-block;
    text-align: right;
}
.lf-otp-timer-track {
    height: 6px; background: var(--lf-border);
    border-radius: 100px; overflow: hidden;
}
.lf-otp-timer-fill {
    display: block; height: 100%; width: 100%;
    background: linear-gradient(90deg, var(--lf-gold-dark), var(--lf-gold-light));
    border-radius: 100px;
    transition: width 1s linear;
}
.lf-otp-timer.is-urgent {
    border-color: rgba(214, 69, 69, 0.35);
    background: var(--lf-red-soft);
}
.lf-otp-timer.is-urgent .lf-otp-timer-fill {
    background: linear-gradient(90deg, #C53030, #E85D5D);
}
.lf-otp-timer.is-urgent .lf-otp-timer-val strong { color: var(--lf-red); }
.lf-resend {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    width: 100%; background: transparent; border: 2px solid var(--lf-gold-dark);
    color: var(--lf-gold-dark); font-family: var(--lf-head); font-weight: 700;
    font-size: 0.85rem; padding: 11px; border-radius: 12px; cursor: pointer; margin-bottom: 6px;
}
.lf-resend[hidden] { display: none !important; }

.lf-footer {
    text-align: center; padding: 16px;
    font-size: 0.68rem; color: var(--lf-text-muted);
}

/* ─── Fullscreen Analyze Overlay ─── */
.lf-analyze-screen {
    position: fixed; inset: 0; z-index: 9990;
    background: linear-gradient(160deg, var(--lf-navy) 0%, #152840 50%, var(--lf-navy-mid) 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 24px 20px calc(24px + var(--lf-safe));
    transition: opacity 0.45s, visibility 0.45s;
}
.lf-analyze-screen.lf-analyze-out { opacity: 0; visibility: hidden; pointer-events: none; }
.lf-analyze-inner {
    width: 100%; max-width: 400px;
    display: flex; flex-direction: column; align-items: center;
    animation: lf-fade-up 0.5s ease;
}
.lf-analyze-logo { margin-bottom: 24px; }
.lf-analyze-logo img { height: 32px; object-fit: contain; }

.lf-analyze-ring-wrap {
    position: relative; width: 140px; height: 140px; margin-bottom: 24px;
}
.lf-analyze-ring { width: 140px; height: 140px; transform: rotate(-90deg); }
.lf-analyze-ring .lf-ring-track { fill: none; stroke: rgba(255,255,255,0.12); stroke-width: 8; }
.lf-analyze-ring .lf-ring-fill {
    fill: none; stroke: var(--lf-gold-light); stroke-width: 8; stroke-linecap: round;
    transition: stroke-dashoffset 0.15s linear;
    filter: drop-shadow(0 0 8px rgba(212, 173, 74, 0.5));
}
.lf-analyze-ring-center {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.lf-analyze-ring-center .lf-modal-pct {
    font-size: 2rem; color: #fff;
}
.lf-analyze-ring-center .lf-modal-pct-lbl {
    font-size: 0.65rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em;
}

.lf-analyze-bar-wrap { width: 100%; margin-bottom: 22px; }
.lf-analyze-bar {
    height: 8px; background: rgba(255,255,255,0.12); border-radius: 8px; overflow: hidden;
    margin-bottom: 10px;
}
.lf-analyze-bar-fill {
    height: 100%; width: 0; border-radius: 8px;
    background: linear-gradient(90deg, var(--lf-gold), var(--lf-gold-light), var(--lf-green));
    background-size: 200% 100%;
    animation: lf-gradient 2s ease infinite;
    transition: width 0.15s linear;
}
.lf-analyze-msg {
    text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.75);
    min-height: 1.2em; line-height: 1.4;
}

@keyframes lf-gradient { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.lf-checklist--analyze { width: 100%; margin-bottom: 20px; }
.lf-checklist--analyze li {
    display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 10px;
    padding: 11px 12px; border-radius: 12px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.45); font-size: 0.82rem;
    margin-bottom: 8px; opacity: 1; transform: none;
    transition: all 0.35s;
}
.lf-checklist--analyze li.is-active {
    background: rgba(212, 173, 74, 0.12); border-color: rgba(212, 173, 74, 0.35);
    color: rgba(255,255,255,0.85);
}
.lf-checklist--analyze li.is-done {
    background: rgba(24, 160, 107, 0.15); border-color: rgba(24, 160, 107, 0.35);
    color: #fff;
}
.lf-checklist--analyze .lf-check-icon {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
}
.lf-checklist--analyze li.is-active .lf-check-icon {
    background: rgba(212, 173, 74, 0.25); color: var(--lf-gold-light);
    animation: lf-pulse-icon 1s ease infinite;
}
.lf-checklist--analyze li.is-done .lf-check-icon {
    background: var(--lf-green); color: #fff;
}
@keyframes lf-pulse-icon { 50% { transform: scale(1.08); } }
.lf-check-text { text-align: left; font-weight: 500; }
.lf-check-state {
    font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
    color: rgba(255,255,255,0.35);
}
.lf-checklist--analyze li.is-active .lf-check-state { color: var(--lf-gold-light); }
.lf-checklist--analyze li.is-done .lf-check-state { color: #7DE8B8; }

.lf-analyze-screen .lf-btn-unlock {
    width: 100%; max-width: 320px;
    animation: lf-fade-up 0.4s ease;
}
body:has(.lf-analyze-screen:not(.lf-analyze-out)) .lf-sticky { display: none !important; }

/* ─── OTP verify page ─── */
body.lf-otp-page .lf-intro { padding-bottom: 22px; }
.lf-intro--otp .lf-intro-offer { margin-bottom: 0; padding: 12px 14px 10px; }
.lf-intro-offer--otp .lf-intro-offer-amt { display: none; }
.lf-otp-phone-hero {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--lf-head); font-size: 1.35rem; font-weight: 800;
    color: var(--lf-gold-light); margin-bottom: 6px;
}
.lf-otp-phone-hero .lf-ico { color: var(--lf-gold-light); opacity: 0.85; }
body.lf-otp-page .lf-wrap { margin-top: -18px; }
body.lf-otp-page:has(.lf-sticky) .lf-wrap {
    padding-bottom: calc(var(--lf-sticky) + var(--lf-safe) + 24px);
}
.lf-otp-start { margin-bottom: 12px; }
.lf-otp-start .lf-otp-row { margin: 0; }
.lf-otp-start .lf-otp-digit {
    width: 56px; height: 58px; font-size: 1.6rem;
    border-color: rgba(212, 173, 74, 0.45);
    background: var(--lf-white);
}
.lf-otp-start.is-done { animation: none; }
body.lf-otp-page .lf-card-head h2 { font-size: 1.35rem; }
body.lf-otp-page .lf-card-head p { font-size: 0.9rem; }

.lf-otp-extras {
    margin-top: 14px;
    display: flex; flex-direction: column; gap: 12px;
}
.lf-otp-unlock {
    background: var(--lf-white);
    border: 1px solid var(--lf-border-light);
    border-radius: var(--lf-radius);
    padding: 16px 14px;
    box-shadow: var(--lf-shadow);
}
.lf-otp-unlock h3 {
    font-size: 0.92rem; font-weight: 800; color: var(--lf-navy);
    margin-bottom: 12px; text-align: center;
}
.lf-otp-steps { display: flex; flex-direction: column; gap: 10px; }
.lf-otp-step {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 12px;
    background: var(--lf-bg-2);
    border-radius: var(--lf-radius-sm);
    border: 1px solid var(--lf-border-light);
}
.lf-otp-step .num {
    width: 26px; height: 26px; flex-shrink: 0;
    background: var(--lf-navy); color: var(--lf-gold-light);
    border-radius: 50%; font-size: 0.72rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.lf-otp-step strong {
    display: block; font-size: 0.82rem; color: var(--lf-navy); margin-bottom: 2px;
}
.lf-otp-step p {
    font-size: 0.72rem; color: var(--lf-text-soft); margin: 0; line-height: 1.4;
}
.lf-otp-trust {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.lf-otp-trust span {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.68rem; font-weight: 600; color: var(--lf-text-soft);
    background: var(--lf-white);
    border: 1px solid var(--lf-border-light);
    border-radius: 100px;
    padding: 6px 12px;
}
.lf-otp-trust .lf-ico { color: var(--lf-green); }
.lf-disclosure--compact {
    padding: 12px 14px;
    background: linear-gradient(135deg, #EEF4FF 0%, #F0F4FA 100%);
    border-radius: var(--lf-radius-sm);
}
.lf-disclosure--compact .lf-disclosure-tip {
    margin: 0; padding: 0; background: none; border: none;
    font-size: 0.76rem; color: var(--lf-text);
}
.lf-disclosure--compact .lf-disclosure-tip strong { color: var(--lf-navy); }

/* ─── Contact page ─── */
.lf-header a { display: flex; align-items: center; }
.lf-contact-hero {
    background: linear-gradient(168deg, #081220 0%, var(--lf-navy) 50%, #1A3352 100%);
    padding: 28px 18px 36px;
    text-align: center;
    position: relative;
}
.lf-contact-hero::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0; height: 24px;
    background: var(--lf-bg);
    border-radius: 24px 24px 0 0;
}
.lf-contact-hero-inner {
    position: relative; z-index: 1;
    max-width: 520px; margin: 0 auto;
}
.lf-contact-eyebrow {
    display: inline-block;
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--lf-gold-light);
    margin-bottom: 8px;
}
.lf-contact-hero h1 {
    font-size: 1.75rem; font-weight: 800; color: #fff;
    margin-bottom: 8px;
}
.lf-contact-hero p {
    font-size: 0.88rem; color: rgba(255,255,255,0.65);
    line-height: 1.5;
}
body.lf-contact-page .lf-wrap--wide {
    max-width: 920px;
    margin-top: -12px;
    padding-bottom: 32px;
}
.lf-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 768px) {
    .lf-contact-grid { grid-template-columns: 320px 1fr; align-items: start; }
}
.lf-contact-info { display: flex; flex-direction: column; gap: 10px; }
.lf-contact-tile {
    display: flex; align-items: flex-start; gap: 12px;
    background: var(--lf-white);
    border: 1px solid var(--lf-border-light);
    border-radius: var(--lf-radius-sm);
    padding: 14px 16px;
    box-shadow: 0 4px 16px rgba(13, 27, 42, 0.06);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.lf-contact-tile:hover {
    border-color: var(--lf-gold-dark);
    box-shadow: 0 8px 24px rgba(13, 27, 42, 0.1);
}
.lf-contact-tile--static { cursor: default; }
.lf-contact-tile .ico {
    width: 40px; height: 40px; flex-shrink: 0;
    background: var(--lf-gold-soft);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--lf-gold-dark);
}
.lf-contact-tile .lbl {
    display: block; font-size: 0.62rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--lf-text-muted); margin-bottom: 3px;
}
.lf-contact-tile strong {
    font-size: 0.88rem; font-weight: 700; color: var(--lf-navy);
    line-height: 1.4; word-break: break-word;
}
.lf-contact-cta-box {
    background: linear-gradient(135deg, var(--lf-navy) 0%, var(--lf-navy-mid) 100%);
    border-radius: var(--lf-radius-sm);
    padding: 18px 16px;
    color: #fff;
    margin-top: 4px;
}
.lf-contact-cta-box h3 {
    font-size: 1rem; font-weight: 800; margin-bottom: 6px;
    color: var(--lf-gold-light);
}
.lf-contact-cta-box p {
    font-size: 0.78rem; color: rgba(255,255,255,0.65);
    margin-bottom: 14px; line-height: 1.45;
}
.lf-btn--outline {
    background: transparent;
    border: 2px solid var(--lf-gold-light);
    color: var(--lf-gold-light);
    box-shadow: none;
}
.lf-btn--outline:hover { background: rgba(232, 201, 106, 0.12); }
.lf-contact-form-card { margin-top: 0; }
.lf-input-wrap--textarea {
    align-items: stretch; min-height: auto; padding: 12px 14px;
}
.lf-input-wrap--textarea textarea {
    flex: 1; width: 100%; border: none; outline: none; resize: vertical;
    font-family: var(--lf-font); font-size: 16px; font-weight: 500;
    color: var(--lf-text); background: transparent; min-height: 100px;
}
.lf-field-captcha { margin-bottom: 16px; }
.lf-contact-map {
    margin-top: 20px;
    background: var(--lf-white);
    border: 1px solid var(--lf-border-light);
    border-radius: var(--lf-radius);
    overflow: hidden;
    box-shadow: var(--lf-shadow);
}
.lf-contact-map-inner iframe {
    display: block; width: 100%; min-height: 280px; border: 0;
}
