/* ═══════════════════════════════════════════════════════════
   Landing Page — Real Estate CRM
   ═══════════════════════════════════════════════════════════ */

/* ── Top Navigation ─────────────────────────────────────── */

.lp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 64px;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(226,232,240,.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    z-index: 100;
    transition: box-shadow .2s;
}

.lp-nav.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
}

.lp-nav-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.lp-nav-logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, #2563EB, #14B8A6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37,99,235,.35);
}

.lp-nav-logo-name {
    font-size: 16px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -.4px;
    line-height: 1;
}

.lp-nav-logo-sub {
    font-size: 9.5px;
    color: #2563EB;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 22px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #fff !important;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(37,99,235,.35);
    font-family: var(--font);
    border: none;
    cursor: pointer;
}

.lp-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37,99,235,.45);
    color: #fff !important;
}

/* ── Wrapper ─────────────────────────────────────────────── */

.lp-wrap {
    overflow-x: hidden;
    font-family: var(--font);
    padding-top: 64px; /* clear fixed nav */
}

/* ── Shared ─────────────────────────────────────────────── */

.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.lp-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

.lp-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary-50);
    color: var(--primary);
    border: 1px solid rgba(37,99,235,.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .4px;
    margin-bottom: 14px;
}

.lp-section-badge.light {
    background: rgba(37,99,235,.15);
    border-color: rgba(37,99,235,.3);
    color: #93C5FD;
}

.lp-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.lp-title span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-title.white { color: #fff; }

.lp-subtitle {
    font-size: 15.5px;
    color: var(--text-2);
    line-height: 1.7;
    margin: 0;
}

.lp-subtitle.white { color: rgba(255,255,255,.65); }

/* colour helpers */
.lp-blue   { background: var(--primary-50); color: var(--primary); }
.lp-teal   { background: var(--accent-50);  color: var(--accent);  }
.lp-green  { background: var(--success-50); color: var(--success); }
.lp-amber  { background: var(--warning-50); color: var(--warning); }
.lp-red    { background: var(--danger-50);  color: var(--danger);  }
.lp-purple { background: var(--purple-50);  color: var(--purple);  }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */

.lp-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 55%, #0C4A6E 100%);
    padding: 80px 60px 70px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.lp-hero-blob1 {
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(37,99,235,.22) 0%, transparent 70%);
    top: -220px;
    right: -120px;
    border-radius: 50%;
    animation: lpBlob 9s ease-in-out infinite;
    pointer-events: none;
}

.lp-hero-blob2 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(20,184,166,.18) 0%, transparent 70%);
    bottom: -120px;
    left: 60px;
    border-radius: 50%;
    animation: lpBlob 11s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes lpBlob {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-28px) scale(1.06); }
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.lp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.9);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 22px;
    backdrop-filter: blur(10px);
}

.lp-hero-title {
    font-size: 58px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -2.5px;
    line-height: 1.08;
    margin-bottom: 20px;
}

.lp-hero-title span {
    background: linear-gradient(135deg, #60A5FA, #5EEAD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,.68);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
}

.lp-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.lp-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    border: none;
    font-family: var(--font);
    line-height: 1;
    height: auto;
}

.lp-btn-hero.primary {
    background: linear-gradient(135deg, var(--primary), #1D4ED8);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(37,99,235,.4);
}

.lp-btn-hero.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37,99,235,.55);
    color: #fff !important;
}

.lp-btn-hero.outline {
    background: rgba(255,255,255,.08);
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,.25);
    backdrop-filter: blur(10px);
}

.lp-btn-hero.outline:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.42);
    color: #fff !important;
    transform: translateY(-2px);
}

.lp-hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.lp-trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.6);
    font-size: 12.5px;
    font-weight: 500;
}

.lp-trust-badge i {
    font-size: 15px;
    color: var(--accent);
}

/* ── Hero Visual: Floating CRM Mock ─────────────────────── */

.lp-hero-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-mock-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 20px 22px;
    backdrop-filter: blur(20px);
}

.lp-mock-card:nth-child(1) { animation: lpFloat 4s ease-in-out infinite; }
.lp-mock-card:nth-child(2) { animation: lpFloat 4s ease-in-out infinite 1.3s; }
.lp-mock-card:nth-child(3) { animation: lpFloat 4s ease-in-out infinite 2.6s; }

@keyframes lpFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}

.lp-mock-head {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,.45);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.lp-mock-head i { font-size: 13px; color: var(--accent); }

.lp-mock-kpis {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}

.lp-mock-kpi { text-align: center; }

.lp-mock-val {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.2px;
    line-height: 1;
}

.lp-mock-lbl {
    font-size: 10px;
    color: rgba(255,255,255,.45);
    margin-top: 3px;
    font-weight: 500;
}

.lp-mock-trend {
    font-size: 10px;
    font-weight: 700;
    color: #4ADE80;
    margin-top: 2px;
}

.lp-mock-bars { display: flex; flex-direction: column; gap: 9px; }

.lp-mock-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-mock-bar-lbl {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    width: 70px;
    flex-shrink: 0;
}

.lp-mock-bar-track {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,.1);
    border-radius: 3px;
    overflow: hidden;
}

.lp-mock-bar-fill {
    height: 100%;
    border-radius: 3px;
    animation: lpBarGrow 2s ease forwards;
}

@keyframes lpBarGrow { from { width: 0; } }

.lp-mock-bar-pct {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,.55);
    width: 28px;
    text-align: right;
}

.lp-mock-feed { display: flex; flex-direction: column; gap: 9px; }

.lp-mock-feed-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-mock-feed-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lp-mock-feed-txt {
    font-size: 11.5px;
    color: rgba(255,255,255,.68);
    flex: 1;
    line-height: 1.4;
}

.lp-mock-feed-time {
    font-size: 10px;
    color: rgba(255,255,255,.3);
}

/* ══════════════════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════════════════ */

.lp-stats {
    background: var(--surface);
    padding: 52px 60px;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    max-width: 1100px;
    margin: 0 auto;
}

.lp-stat-item {
    text-align: center;
    padding: 20px 16px;
    border-right: 1px solid var(--border);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s, transform .5s;
}

.lp-stat-item:last-child { border-right: none; }

.lp-stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-stat-item:nth-child(2) { transition-delay: .1s; }
.lp-stat-item:nth-child(3) { transition-delay: .2s; }
.lp-stat-item:nth-child(4) { transition-delay: .3s; }
.lp-stat-item:nth-child(5) { transition-delay: .4s; }

.lp-stat-val {
    font-size: 34px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 7px;
}

.lp-stat-lbl {
    font-size: 12.5px;
    color: var(--text-2);
    font-weight: 500;
    line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════════ */

.lp-features {
    background: var(--surface-2);
    padding: 80px 60px;
}

.lp-feat-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-feat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    text-align: center;
    transition: all .25s;
    cursor: default;
    opacity: 0;
    transform: translateY(22px);
}

.lp-feat-card.visible { opacity: 1; transform: translateY(0); }

.lp-feat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(37,99,235,.25);
}

/* stagger */
.lp-feat-card:nth-child(4n+2) { transition-delay: .05s; }
.lp-feat-card:nth-child(4n+3) { transition-delay: .1s;  }
.lp-feat-card:nth-child(4n+4) { transition-delay: .15s; }

.lp-feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
}

.lp-feat-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.4;
}

.lp-feat-desc {
    font-size: 11.5px;
    color: var(--text-3);
    margin-top: 5px;
    line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════
   WORKFLOW
   ══════════════════════════════════════════════════════════ */

.lp-workflow {
    background: var(--surface);
    padding: 80px 60px;
}

.lp-workflow-steps {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 6px;
}

.lp-wf-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 90px;
    position: relative;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .4s, transform .4s;
}

.lp-wf-step.visible { opacity: 1; transform: translateY(0); }

.lp-wf-step:nth-child(2) { transition-delay: .07s; }
.lp-wf-step:nth-child(3) { transition-delay: .14s; }
.lp-wf-step:nth-child(4) { transition-delay: .21s; }
.lp-wf-step:nth-child(5) { transition-delay: .28s; }
.lp-wf-step:nth-child(6) { transition-delay: .35s; }
.lp-wf-step:nth-child(7) { transition-delay: .42s; }
.lp-wf-step:nth-child(8) { transition-delay: .49s; }
.lp-wf-step:nth-child(9) { transition-delay: .56s; }

/* connector line */
.lp-wf-step::after {
    content: '';
    position: absolute;
    top: 22px;
    left: calc(50% + 26px);
    width: calc(100% - 52px);
    height: 2px;
    background: linear-gradient(90deg, rgba(37,99,235,.35), rgba(20,184,166,.25));
}

.lp-wf-step:last-child::after { display: none; }

.lp-wf-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(37,99,235,.28);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    transition: transform .2s;
}

.lp-wf-step:hover .lp-wf-num { transform: scale(1.1); }

.lp-wf-lbl {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.35;
}

.lp-wf-icon {
    font-size: 13px;
    color: var(--text-3);
    margin-top: 5px;
}

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE
   ══════════════════════════════════════════════════════════ */

.lp-why {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-50) 100%);
    padding: 80px 60px;
}

.lp-why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-why-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 26px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all .25s;
    cursor: default;
    opacity: 0;
    transform: translateY(20px);
}

.lp-why-card.visible { opacity: 1; transform: translateY(0); }

.lp-why-card:nth-child(3n+2) { transition-delay: .08s; }
.lp-why-card:nth-child(3n+3) { transition-delay: .16s; }

.lp-why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.lp-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.lp-why-body h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 5px;
}

.lp-why-body p {
    font-size: 12.5px;
    color: var(--text-2);
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════
   DASHBOARD PREVIEW
   ══════════════════════════════════════════════════════════ */

.lp-preview {
    background: #0B1120;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.lp-preview-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% -10%, rgba(37,99,235,.2) 0%, transparent 65%);
    pointer-events: none;
}

.lp-preview-frame {
    max-width: 1040px;
    margin: 0 auto;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 18px 18px 22px;
    position: relative;
    z-index: 1;
}

.lp-preview-titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 0 2px;
}

.lp-pv-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.lp-preview-kpis {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.lp-pv-kpi {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    padding: 16px 14px;
    position: relative;
    overflow: hidden;
}

.lp-pv-kpi::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}

.lp-pv-kpi:nth-child(1)::after { background: linear-gradient(90deg,#3B82F6,#60A5FA); }
.lp-pv-kpi:nth-child(2)::after { background: linear-gradient(90deg,#F59E0B,#FDE68A); }
.lp-pv-kpi:nth-child(3)::after { background: linear-gradient(90deg,#22C55E,#86EFAC); }
.lp-pv-kpi:nth-child(4)::after { background: linear-gradient(90deg,#8B5CF6,#C4B5FD); }

.lp-pv-kpi-lbl {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: rgba(255,255,255,.4);
    margin-bottom: 8px;
}

.lp-pv-kpi-val {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
}

.lp-pv-kpi-trend {
    font-size: 10px;
    font-weight: 700;
    color: #4ADE80;
    margin-top: 4px;
}

.lp-preview-panels {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 12px;
}

.lp-pv-panel {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 16px;
}

.lp-pv-panel-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: rgba(255,255,255,.4);
    margin-bottom: 12px;
}

.lp-pv-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.lp-pv-row:last-child { border-bottom: none; }

.lp-pv-av {
    width: 26px; height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.lp-pv-name {
    font-size: 11.5px;
    color: rgba(255,255,255,.7);
    font-weight: 500;
    flex: 1;
}

.lp-pv-badge {
    font-size: 9.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

.lp-pv-funnel { display: flex; flex-direction: column; gap: 8px; }

.lp-pv-f-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-pv-f-lbl {
    font-size: 10px;
    color: rgba(255,255,255,.5);
    width: 68px;
    flex-shrink: 0;
    font-weight: 500;
}

.lp-pv-f-track {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,.08);
    border-radius: 3px;
    overflow: hidden;
}

.lp-pv-f-fill {
    height: 100%;
    border-radius: 3px;
}

.lp-pv-f-n {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,.55);
    width: 24px;
    text-align: right;
}

/* ══════════════════════════════════════════════════════════
   LEAD SOURCES
   ══════════════════════════════════════════════════════════ */

.lp-sources {
    background: var(--surface);
    padding: 80px 60px;
}

.lp-sources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 920px;
    margin: 0 auto;
}

.lp-src-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 22px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    min-width: 108px;
    transition: all .22s;
    cursor: default;
    opacity: 0;
    transform: scale(.92);
}

.lp-src-card.visible { opacity: 1; transform: scale(1); }

.lp-src-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(37,99,235,.1);
    transform: translateY(-4px);
}

.lp-src-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.lp-src-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-1);
    text-align: center;
}

/* ══════════════════════════════════════════════════════════
   CUSTOMER JOURNEY TIMELINE
   ══════════════════════════════════════════════════════════ */

.lp-journey {
    background: var(--surface-2);
    padding: 80px 60px;
}

.lp-journey-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    padding-left: 32px;
}

.lp-journey-inner::before {
    content: '';
    position: absolute;
    left: 18px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    opacity: .25;
}

.lp-jn-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .45s, transform .45s;
}

.lp-jn-item.visible { opacity: 1; transform: translateX(0); }

.lp-jn-item:nth-child(2) { transition-delay: .08s; }
.lp-jn-item:nth-child(3) { transition-delay: .16s; }
.lp-jn-item:nth-child(4) { transition-delay: .24s; }
.lp-jn-item:nth-child(5) { transition-delay: .32s; }
.lp-jn-item:nth-child(6) { transition-delay: .40s; }
.lp-jn-item:nth-child(7) { transition-delay: .48s; }
.lp-jn-item:nth-child(8) { transition-delay: .56s; }

.lp-jn-item:last-child { margin-bottom: 0; }

.lp-jn-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-left: -57px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
    border: 3px solid var(--surface-2);
    box-shadow: 0 0 0 2px rgba(37,99,235,.15);
}

.lp-jn-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 4px;
}

.lp-jn-body p {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.6;
    margin: 0;
}

.lp-jn-step {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--text-3);
    margin-bottom: 4px;
}

/* ══════════════════════════════════════════════════════════
   REPORTS
   ══════════════════════════════════════════════════════════ */

.lp-reports {
    background: var(--surface);
    padding: 80px 60px;
}

.lp-rep-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.lp-rep-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 22px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all .25s;
    position: relative;
    overflow: hidden;
    cursor: default;
    opacity: 0;
    transform: translateY(18px);
}

.lp-rep-card.visible { opacity: 1; transform: translateY(0); }

.lp-rep-card:nth-child(4n+2) { transition-delay: .06s; }
.lp-rep-card:nth-child(4n+3) { transition-delay: .12s; }
.lp-rep-card:nth-child(4n+4) { transition-delay: .18s; }

.lp-rep-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity .2s;
}

.lp-rep-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(37,99,235,.25);
}

.lp-rep-card:hover::before { opacity: 1; }

.lp-rep-icon {
    width: 42px; height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.lp-rep-body { flex: 1; min-width: 0; }

.lp-rep-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.35;
    margin-bottom: 4px;
}

.lp-rep-desc {
    font-size: 11.5px;
    color: var(--text-3);
    line-height: 1.5;
}

.lp-rep-arrow {
    font-size: 13px;
    color: var(--text-3);
    margin-top: 2px;
    transition: color .2s, transform .2s;
    flex-shrink: 0;
}

.lp-rep-card:hover .lp-rep-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* ══════════════════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════════════════ */

.lp-cta {
    background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 60%, #0C4A6E 100%);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-cta-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,.22) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

.lp-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
}

.lp-cta-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.lp-cta-sub {
    font-size: 16.5px;
    color: rgba(255,255,255,.62);
    line-height: 1.65;
    margin-bottom: 36px;
}

/* ══════════════════════════════════════════════════════════
   SECTION DIVIDERS / ORNAMENTS
   ══════════════════════════════════════════════════════════ */

.lp-divider {
    height: 1px;
    background: var(--border);
    margin: 0;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .lp-hero-title  { font-size: 46px; }
    .lp-feat-grid   { grid-template-columns: repeat(3,1fr); }
    .lp-rep-grid    { grid-template-columns: repeat(3,1fr); }
    .lp-stats-grid  { grid-template-columns: repeat(3,1fr); }
    .lp-stat-item:nth-child(4),
    .lp-stat-item:nth-child(5) { border-top: 1px solid var(--border); }
    .lp-stat-item:nth-child(3) { border-right: none; }
    .lp-stat-item:nth-child(4) { border-right: 1px solid var(--border); }
}

@media (max-width: 1024px) {
    .lp-hero-title  { font-size: 40px; }
    .lp-why-grid    { grid-template-columns: repeat(2,1fr); }
    .lp-preview-panels { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .lp-hero, .lp-stats, .lp-features, .lp-workflow, .lp-why,
    .lp-preview, .lp-sources, .lp-journey, .lp-reports, .lp-cta {
        padding-left: 28px;
        padding-right: 28px;
    }
    .lp-hero-grid   { grid-template-columns: 1fr; }
    .lp-hero-visual { display: none; }
    .lp-hero        { min-height: auto; padding-top: 60px; padding-bottom: 60px; }
    .lp-hero-title  { font-size: 38px; }
    .lp-feat-grid   { grid-template-columns: repeat(2,1fr); }
    .lp-preview-kpis{ grid-template-columns: repeat(2,1fr); }
    .lp-rep-grid    { grid-template-columns: repeat(2,1fr); }
    .lp-stats-grid  { grid-template-columns: repeat(2,1fr); }
    .lp-stat-item   { border-right: none; border-bottom: 1px solid var(--border); }
    .lp-stat-item:last-child { border-bottom: none; }
    .lp-stat-item:nth-child(3) { border-top: none; }
    .lp-stat-item:nth-child(4) { border-right: none; border-top: none; }
}

@media (max-width: 600px) {
    .lp-hero, .lp-stats, .lp-features, .lp-workflow, .lp-why,
    .lp-preview, .lp-sources, .lp-journey, .lp-reports, .lp-cta {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 56px;
        padding-bottom: 56px;
    }
    .lp-hero-title    { font-size: 32px; }
    .lp-hero-sub      { font-size: 15px; }
    .lp-title         { font-size: 26px; }
    .lp-cta-title     { font-size: 28px; }
    .lp-feat-grid     { grid-template-columns: repeat(2,1fr); }
    .lp-why-grid      { grid-template-columns: 1fr; }
    .lp-rep-grid      { grid-template-columns: repeat(2,1fr); }
    .lp-hero-actions  { flex-direction: column; }
    .lp-btn-hero      { width: 100%; justify-content: center; }
    .lp-workflow-steps{ flex-wrap: wrap; justify-content: center; gap: 20px; }
    .lp-wf-step::after{ display: none; }
    .lp-wf-step       { min-width: 80px; flex: 0 0 80px; }
}
