/* ═══════════════════════════════════════════════════════════
   CareerARIA — Landing Page
   Plus Jakarta Sans · Sky-blue brand · Indigo CTAs
   Premium mesh gradients · Glass cards · Fancy micro-details
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }

/* ── Page base ──────────────────────────────────────────── */
.lp-page {
    font-family: var(--font-sans);
    color: var(--text-body);
    background: #FFFFFF;
    overflow-x: hidden;
}

/* ── Announcement ───────────────────────────────────────── */
.lp-announcement {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; padding: 10px 24px;
    font-size: 13px; font-weight: 500; line-height: 1.5; text-align: center;
}
.lp-announcement.info    { background: #EFF6FF; border-bottom: 1px solid #BFDBFE; color: #1D4ED8; }
.lp-announcement.warning { background: #FFFBEB; border-bottom: 1px solid #FDE68A; color: #92400E; }
.lp-announcement.success { background: #F0FDF4; border-bottom: 1px solid #BBF7D0; color: #166534; }

/* ── Nav ────────────────────────────────────────────────── */
.lp-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(3,105,161,0.1);
    transition: box-shadow 0.25s;
}
.lp-nav.scrolled { box-shadow: 0 4px 24px rgba(3,105,161,0.08); }
.lp-nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
    height: 66px; display: flex; align-items: center;
    justify-content: space-between; gap: 24px;
}
.lp-nav-logo {
    display: flex; align-items: center; gap: 9px;
    text-decoration: none; font-weight: 800; font-size: 17px;
    color: var(--text-primary); flex-shrink: 0; letter-spacing: -0.4px;
}
.lp-logo-mark { font-size: 22px; color: var(--accent); line-height: 1; }
.lp-nav-links {
    display: flex; align-items: center; gap: 30px;
    list-style: none; margin: 0; padding: 0;
}
.lp-nav-links a {
    font-size: 14px; font-weight: 500; color: var(--text-secondary);
    text-decoration: none; transition: color 0.15s;
}
.lp-nav-links a:hover { color: var(--text-primary); }
.lp-nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ── Buttons ────────────────────────────────────────────── */
.lp-btn {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--font-sans); font-weight: 700;
    text-decoration: none; border-radius: 10px;
    transition: all 0.2s ease; cursor: pointer;
    white-space: nowrap; border: none; letter-spacing: -0.2px;
}

/* Primary — brand blue */
.lp-btn-primary {
    background: var(--accent); color: #FFFFFF;
    padding: 10px 20px; font-size: 14px;
    box-shadow: 0 1px 4px rgba(3,105,161,0.25);
}
.lp-btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 18px rgba(3,105,161,0.32);
    transform: translateY(-1px);
}
.lp-btn-primary.lg { padding: 14px 30px; font-size: 15px; border-radius: 12px; }

/* CTA — indigo-violet (high-contrast, pairs with blue) */
.lp-btn-cta {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: #FFFFFF; padding: 14px 28px; font-size: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(79,70,229,0.35);
    position: relative; overflow: hidden;
}
.lp-btn-cta::after {
    content: '';
    position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.lp-btn-cta:hover::after { left: 150%; }
.lp-btn-cta:hover {
    background: linear-gradient(135deg, #4338CA 0%, #4F46E5 100%);
    box-shadow: 0 8px 24px rgba(79,70,229,0.45);
    transform: translateY(-2px);
}
.lp-btn-cta.xl { padding: 16px 36px; font-size: 16px; border-radius: 14px; }

.lp-btn-outline {
    background: transparent; color: var(--accent);
    border: 1.5px solid var(--accent-border);
    padding: 10px 20px; font-size: 14px;
}
.lp-btn-outline:hover { background: var(--accent-light); border-color: var(--accent); }
.lp-btn-outline.lg { padding: 13px 24px; font-size: 15px; border-radius: 12px; }

.lp-btn-ghost {
    background: transparent; color: var(--text-secondary);
    padding: 10px 16px; font-size: 14px;
}
.lp-btn-ghost:hover { color: var(--text-primary); background: var(--bg-surface-2); }

.lp-btn-white {
    background: #FFFFFF; color: #4F46E5;
    padding: 14px 32px; font-size: 15px;
    border-radius: 12px; font-weight: 700;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.lp-btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.22); transform: translateY(-2px); }

/* ── Layout ─────────────────────────────────────────────── */
.lp-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.lp-section { padding: 100px 0; }
.lp-section-sm { padding: 60px 0; }

/* ── Section labels ─────────────────────────────────────── */
.lp-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 700; letter-spacing: 1.6px;
    text-transform: uppercase; color: #4F46E5; margin-bottom: 14px;
}
.lp-eyebrow::before {
    content: ''; display: inline-block;
    width: 20px; height: 2px;
    background: linear-gradient(90deg, #4F46E5, #818CF8);
    border-radius: 1px;
}
.lp-h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800; color: var(--text-primary);
    letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 16px;
}
.lp-lead {
    font-size: 17px; line-height: 1.72;
    color: var(--text-secondary); max-width: 540px;
}
.lp-center { text-align: center; }
.lp-center .lp-lead { margin: 0 auto; }

/* ══════════════════════════════════════════════════════════
   HERO — mesh gradient + 3D visual
   ══════════════════════════════════════════════════════════ */
.lp-hero {
    position: relative; overflow: hidden;
    padding: 92px 0 84px;
    background: #FFFFFF;
}

/* Layered mesh gradient background */
.lp-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(99,102,241,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 10% 80%, rgba(3,105,161,0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 90% 90%, rgba(14,165,233,0.05) 0%, transparent 50%),
        linear-gradient(160deg, #F8FAFF 0%, #F0F6FF 40%, #EEF2FF 100%);
    pointer-events: none;
}

/* Decorative dot grid */
.lp-hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(79,70,229,0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 70% 70% at 80% 30%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 80% 30%, black 0%, transparent 70%);
    pointer-events: none;
}

.lp-hero-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
    position: relative; z-index: 1;
}

/* Hero badge — animated gradient border */
.lp-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: #3730A3;
    padding: 8px 16px; border-radius: 9999px;
    margin-bottom: 28px;
    background: linear-gradient(#FFFFFF, #FFFFFF) padding-box,
                linear-gradient(135deg, #4F46E5, #0369A1, #4F46E5) border-box;
    border: 1.5px solid transparent;
    box-shadow: 0 2px 12px rgba(79,70,229,0.12);
}
.lp-hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #22C55E; flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
    animation: lp-pulse 2.4s ease-in-out infinite;
}
@keyframes lp-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.08); }
}

.lp-hero-title {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800; color: var(--text-primary);
    letter-spacing: -2.5px; line-height: 1.06;
    margin-bottom: 22px;
}
.lp-hero-title .lp-gradient-text {
    background: linear-gradient(135deg, #0369A1 0%, #4F46E5 50%, #0EA5E9 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-hero-sub {
    font-size: 17.5px; line-height: 1.74;
    color: var(--text-secondary); margin-bottom: 38px; max-width: 480px;
}
.lp-hero-actions {
    display: flex; align-items: center; gap: 12px;
    flex-wrap: wrap; margin-bottom: 22px;
}
.lp-hero-trust {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.lp-hero-trust-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--text-muted); font-weight: 500;
}
.lp-hero-trust-item svg { color: #22C55E; }

/* ══════════════════════════════════════════════════════════
   STACKED CARD DECK
   ══════════════════════════════════════════════════════════ */
.lp-deck-wrapper {
    position: relative;
    /* extra bottom padding so card 2+3 peeks below */
    padding-bottom: 22px;
    /* extra right space so perspective tilt shows depth */
    margin-right: -6px;
}

.lp-deck-card {
    position: absolute; top: 0; left: 0; right: 0;
    transition: transform 0.45s cubic-bezier(0.23,1,0.32,1),
                opacity   0.45s cubic-bezier(0.23,1,0.32,1),
                box-shadow 0.45s ease;
    transform-origin: top center;
    will-change: transform, opacity;
    cursor: default;
}

/* Front card */
.lp-deck-card.pos-0 {
    position: relative; /* takes height from this card */
    transform: translateY(0) scale(1);
    opacity: 1; z-index: 3;
}
/* Second card peeking */
.lp-deck-card.pos-1 {
    transform: translateY(12px) scale(0.97);
    opacity: 0.75; z-index: 2; cursor: pointer;
}
/* Third card peeking */
.lp-deck-card.pos-2 {
    transform: translateY(22px) scale(0.94);
    opacity: 0.45; z-index: 1; cursor: pointer;
}
/* All others hidden */
.lp-deck-card.pos-back {
    transform: translateY(30px) scale(0.91);
    opacity: 0; z-index: 0; pointer-events: none;
}

/* ── Hero Visual — glass card ───────────────────────────── */
.lp-hero-visual {
    position: relative;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 20px; overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(79,70,229,0.08),
        0 20px 56px rgba(3,105,161,0.14),
        0 6px 20px rgba(79,70,229,0.07),
        0 2px 6px rgba(0,0,0,0.04);
}
/* Shine overlay */
.lp-hero-visual::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 45%; pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, transparent 100%);
    border-radius: 20px 20px 0 0; z-index: 1;
}

/* Window chrome */
.lp-hero-visual-header {
    display: flex; align-items: center; gap: 7px;
    padding: 11px 16px; border-bottom: 1px solid rgba(3,105,161,0.07);
    background: rgba(248,250,252,0.98);
    position: relative; z-index: 2;
}
.lp-hw-dot { width: 9px; height: 9px; border-radius: 9999px; }
.lp-hw-dot:nth-child(1) { background: #FC5F57; }
.lp-hw-dot:nth-child(2) { background: #FEBC2E; }
.lp-hw-dot:nth-child(3) { background: #28C840; }
.lp-hw-title {
    font-size: 11px; font-weight: 600; color: var(--text-muted);
    margin-left: 4px; flex: 1; text-align: center;
}
.lp-hw-module-badge {
    font-size: 10px; font-weight: 700; padding: 2px 8px;
    border-radius: 99px; border: 1px solid; flex-shrink: 0;
}

/* Panel body — fixed height so every card is identical */
.lp-hv-panel-body {
    padding: 14px 16px;
    display: flex; flex-direction: column; gap: 10px;
    position: relative; z-index: 2;
    height: 290px; overflow: hidden;
}

/* Deck nav bar — dots only, centered */
.lp-deck-nav {
    display: flex; align-items: center; justify-content: center;
    padding: 10px 16px 13px;
    border-top: 1px solid rgba(3,105,161,0.07);
    background: rgba(248,250,252,0.9);
    position: relative; z-index: 2;
}
.lp-deck-dots {
    display: flex; gap: 5px; align-items: center;
}
.lp-deck-dot {
    width: 6px; height: 6px; border-radius: 9999px;
    background: #CBD5E1; transition: all 0.25s; cursor: pointer;
}
.lp-deck-dot.active {
    background: #4F46E5; width: 20px; border-radius: 3px;
}

/* Panel top row */
.lp-hv-panel-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 2px;
}
.lp-hv-panel-meta { display: flex; align-items: center; gap: 10px; }
.lp-hv-panel-icon {
    width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.lp-hv-panel-name { font-size: 12.5px; font-weight: 700; color: #0F172A; }
.lp-hv-panel-desc { font-size: 11px; color: #94A3B8; margin-top: 1px; }

/* Status badges */
.lp-hv-status-badge {
    font-size: 10px; font-weight: 700; padding: 3px 9px;
    border-radius: 99px; white-space: nowrap;
}
.lp-hv-status-badge.done   { background: #DCFCE7; color: #16A34A; border: 1px solid #86EFAC; }
.lp-hv-status-badge.warn   { background: #FEF3C7; color: #D97706; border: 1px solid #FDE68A; }
.lp-hv-status-badge.online { background: #EDE9FE; color: #7C3AED; border: 1px solid #C4B5FD; }

/* ── Shared keyword bar ── */
.lp-hv-kw-row {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; color: #64748B;
}
.lp-hv-kw-label { white-space: nowrap; font-weight: 600; min-width: 90px; }
.lp-hv-kw-bar {
    flex: 1; height: 5px; background: #E2E8F0;
    border-radius: 99px; overflow: hidden;
}
.lp-hv-kw-fill { height: 100%; border-radius: 99px; transition: width 0.6s ease; }
.lp-hv-kw-pct { font-weight: 700; color: #1E293B; min-width: 32px; text-align: right; }

/* ── Resume panel ── */
.lp-hv-ats-ring {
    position: relative; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.lp-hv-ats-num {
    position: absolute; font-size: 13px; font-weight: 800; color: #16A34A;
}
.lp-hv-gaps-label, .lp-hv-gaps { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.lp-hv-gaps-label { font-size: 11px; font-weight: 600; color: #64748B; white-space: nowrap; }
.lp-hv-chips { display: flex; gap: 5px; flex-wrap: wrap; }
.lp-hv-chip {
    font-size: 10.5px; font-weight: 600; padding: 2px 8px; border-radius: 99px;
}
.lp-hv-chip.miss { background: #FEF2F2; color: #DC2626; border: 1px solid #FECACA; }

/* ── Suggestion rows ── */
.lp-hv-suggestions { display: flex; flex-direction: column; gap: 5px; }
.lp-hv-sugg-row {
    display: flex; align-items: center; gap: 7px;
    font-size: 11px; color: #475569; line-height: 1.4;
}
.lp-hv-sugg-dot {
    width: 7px; height: 7px; border-radius: 9999px; flex-shrink: 0;
}
.lp-hv-sugg-dot.ok   { background: #22C55E; }
.lp-hv-sugg-dot.warn { background: #F59E0B; }
.lp-hv-sugg-text { color: #475569; }

/* ── Cover Letter panel ── */
.lp-hv-letter-meta {
    background: #F8FAFC; border: 1px solid #E2E8F0;
    border-radius: 8px; padding: 10px 12px;
    display: flex; flex-direction: column; gap: 5px;
}
.lp-hv-lm-row { display: flex; gap: 8px; font-size: 11px; }
.lp-hv-lm-key { color: #94A3B8; font-weight: 600; min-width: 60px; }
.lp-hv-lm-val { color: #1E293B; font-weight: 600; }
.lp-hv-letter-preview {
    background: #FAFBFC; border: 1px solid #E2E8F0;
    border-radius: 8px; padding: 10px 12px;
    display: flex; flex-direction: column; gap: 5px;
}
.lp-hv-lp-line {
    height: 6px; background: #E2E8F0; border-radius: 3px;
}
.lp-hv-lp-line.full  { width: 100%; }
.lp-hv-lp-line.w90   { width: 90%; }
.lp-hv-lp-line.w80   { width: 80%; }
.lp-hv-lp-line.w70   { width: 70%; }
.lp-hv-action-row {
    display: flex; gap: 7px; justify-content: flex-end;
}
.lp-hv-action-btn {
    font-size: 10.5px; font-weight: 600; padding: 5px 11px;
    border-radius: 7px; cursor: default;
    background: #F1F5F9; color: #475569; border: 1px solid #E2E8F0;
}
.lp-hv-action-btn.primary {
    background: linear-gradient(135deg,#4F46E5,#6366F1);
    color: #FFFFFF; border-color: transparent;
}

/* ── LinkedIn panel ── */
.lp-hv-li-sections { display: flex; flex-direction: column; gap: 7px; }
.lp-hv-li-row { display: flex; align-items: center; gap: 8px; }
.lp-hv-li-sec { font-size: 11px; font-weight: 600; color: #475569; min-width: 70px; }
.lp-hv-li-score {
    font-size: 11px; font-weight: 700; color: #0369A1; min-width: 24px; text-align: right;
}
.lp-hv-li-score.ok   { color: #16A34A; }
.lp-hv-li-score.warn { color: #D97706; }
.lp-hv-li-score.bad  { color: #DC2626; }

/* ── Company Intel panel ── */
.lp-hv-company-name {
    font-size: 12px; font-weight: 700; color: #0F172A;
    background: #F0F9FF; border: 1px solid #BAE6FD;
    border-radius: 7px; padding: 7px 10px;
}
.lp-hv-ci-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.lp-hv-ci-card {
    background: #F8FAFC; border: 1px solid #E2E8F0;
    border-radius: 8px; padding: 8px 10px;
}
.lp-hv-ci-card-label { font-size: 10px; color: #94A3B8; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.lp-hv-ci-card-val { font-size: 13px; font-weight: 800; color: #1E293B; margin-top: 2px; }
.lp-hv-ci-card-val.good { color: #16A34A; }
.lp-hv-ci-card-val.ok   { color: #0369A1; }

/* ── Interview Prep panel ── */
.lp-hv-q-list { display: flex; flex-direction: column; gap: 5px; }
.lp-hv-q-item {
    display: flex; align-items: flex-start; gap: 8px;
    padding: 8px 10px; border-radius: 8px;
    background: #F8FAFC; border: 1px solid #E2E8F0;
    font-size: 11px; color: #334155; cursor: default;
    transition: all 0.15s;
}
.lp-hv-q-item.active {
    background: #EEF2FF; border-color: rgba(79,70,229,0.25); color: #1E293B;
}
.lp-hv-q-item:hover { background: #EEF2FF; border-color: rgba(79,70,229,0.2); }
.lp-hv-q-num {
    font-size: 10px; font-weight: 800; color: #4F46E5;
    background: #E0E7FF; border-radius: 5px; padding: 1px 6px;
    flex-shrink: 0; margin-top: 1px;
}
.lp-hv-q-hint { font-size: 10.5px; color: #94A3B8; text-align: center; padding: 2px 0 4px; }

/* ── ARIA Chat panel ── */
.lp-hv-chat-msgs {
    display: flex; flex-direction: column; gap: 6px;
    max-height: 130px; overflow-y: auto;
    scrollbar-width: none; padding-right: 2px;
}
.lp-hv-chat-msgs::-webkit-scrollbar { display: none; }
.lp-hv-msg {
    max-width: 88%; font-size: 11px; line-height: 1.5;
    padding: 7px 10px; border-radius: 10px;
}
.lp-hv-msg.user {
    align-self: flex-end;
    background: linear-gradient(135deg,#4F46E5,#6366F1);
    color: #FFFFFF; border-radius: 10px 10px 2px 10px;
}
.lp-hv-msg.aria {
    align-self: flex-start;
    background: #F1F5F9; color: #334155;
    border: 1px solid #E2E8F0; border-radius: 10px 10px 10px 2px;
}
.lp-hv-msg.aria strong { color: #4F46E5; }
.lp-hv-chat-input {
    display: flex; align-items: center; justify-content: space-between;
    background: #F8FAFC; border: 1px solid #E2E8F0;
    border-radius: 9px; padding: 7px 10px; margin-top: 2px;
}
.lp-hv-chat-placeholder { font-size: 11px; color: #CBD5E1; }
.lp-hv-chat-send {
    width: 22px; height: 22px; border-radius: 6px;
    background: linear-gradient(135deg,#4F46E5,#6366F1);
    color: #fff; display: flex; align-items: center; justify-content: center;
    cursor: default;
}

/* ══════════════════════════════════════════════════════════
   STAT STRIP — dark with gradient
   ══════════════════════════════════════════════════════════ */
.lp-stats-strip {
    background: linear-gradient(135deg, #0C4A6E 0%, #0369A1 50%, #1D4ED8 100%);
    position: relative; overflow: hidden;
}
.lp-stats-strip::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px; pointer-events: none;
}
.lp-stats-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: relative; z-index: 1;
}
.lp-stat {
    padding: 36px 40px; border-right: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; gap: 20px;
}
.lp-stat:last-child { border-right: none; }
.lp-stat-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.1);
    border-radius: 14px; border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: #7DD3FC; flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.lp-stat-num {
    font-size: 34px; font-weight: 800; color: #FFFFFF;
    letter-spacing: -1.5px; line-height: 1;
}
.lp-stat-label {
    font-size: 13px; color: rgba(255,255,255,0.55);
    margin-top: 4px; font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   SOCIAL PROOF — clean single-row marquee
   ══════════════════════════════════════════════════════════ */
.lp-proof {
    background: #FFFFFF;
    border-top: 1px solid rgba(79,70,229,0.08);
    border-bottom: 1px solid rgba(79,70,229,0.08);
    padding: 32px 0;
    overflow: hidden;
    position: relative;
}
.lp-proof-header {
    text-align: center;
    margin-bottom: 24px;
}
.lp-proof-label {
    font-size: 11px; font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1.4px;
}

/* Edge fades */
.lp-marquee-wrap {
    position: relative; overflow: hidden;
}
.lp-marquee-wrap::before,
.lp-marquee-wrap::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 100px;
    z-index: 2; pointer-events: none;
}
.lp-marquee-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #FFFFFF 30%, transparent 100%);
}
.lp-marquee-wrap::after {
    right: 0;
    background: linear-gradient(270deg, #FFFFFF 30%, transparent 100%);
}

.lp-marquee-track {
    display: inline-flex; align-items: center; gap: 10px;
    white-space: nowrap; padding: 4px 0;
}

.lp-marquee-left  .lp-marquee-track { animation: lp-scroll-left  42s linear infinite; }
.lp-marquee-right .lp-marquee-track { animation: lp-scroll-right 48s linear infinite; }
.lp-marquee-wrap:hover .lp-marquee-track { animation-play-state: paused; }

@keyframes lp-scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes lp-scroll-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* Pills — clean, readable */
.lp-proof-pill {
    display: inline-flex; align-items: center; gap: 6px;
    flex-shrink: 0; white-space: nowrap;
    font-size: 13px; font-weight: 500;
    color: #374151;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 9999px;
    padding: 7px 16px;
    transition: all 0.18s ease; cursor: default;
}
.lp-proof-pill::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: #A5B4FC;
    flex-shrink: 0;
}
.lp-proof-pill:hover {
    color: #4338CA;
    background: #EEF2FF;
    border-color: #C7D2FE;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79,70,229,0.1);
}
.lp-proof-pill:hover::before { background: #6366F1; }

/* Row 2 */
.lp-proof-pill-alt {
    color: #374151;
    background: #F0F9FF;
    border-color: #BAE6FD;
}
.lp-proof-pill-alt::before { background: #7DD3FC; }
.lp-proof-pill-alt:hover {
    color: #0369A1;
    background: #E0F2FE;
    border-color: #7DD3FC;
    box-shadow: 0 4px 12px rgba(3,105,161,0.1);
}

/* ══════════════════════════════════════════════════════════
   FEATURES — premium cards
   ══════════════════════════════════════════════════════════ */
.lp-features-bg {
    background: linear-gradient(180deg, #F8FAFF 0%, #F3F4F9 100%);
    border-top: 1px solid rgba(79,70,229,0.08);
    border-bottom: 1px solid rgba(79,70,229,0.08);
}
.lp-features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-top: 52px;
}
.lp-feature-card {
    background: #FFFFFF;
    border: 1px solid rgba(3,105,161,0.1);
    border-radius: 18px; padding: 30px 26px;
    transition: all 0.25s ease; cursor: default;
    position: relative; overflow: hidden;
}
.lp-feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, rgba(79,70,229,0.15), transparent);
    opacity: 0; transition: opacity 0.25s;
}
.lp-feature-card:hover {
    border-color: rgba(79,70,229,0.2);
    box-shadow: 0 12px 40px rgba(79,70,229,0.1);
    transform: translateY(-3px);
}
.lp-feature-card:hover::before { opacity: 1; }

.lp-feature-card.featured {
    background: linear-gradient(145deg, #1E1B4B 0%, #312E81 45%, #1E3A5F 100%);
    border-color: transparent;
    box-shadow:
        0 0 0 1px rgba(99,102,241,0.3),
        0 20px 60px rgba(30,27,75,0.35),
        0 4px 16px rgba(79,70,229,0.2);
}
.lp-feature-card.featured::before {
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.6), rgba(14,165,233,0.4), transparent);
    opacity: 1;
}
.lp-feature-card.featured:hover {
    transform: translateY(-5px);
    box-shadow:
        0 0 0 1px rgba(99,102,241,0.4),
        0 28px 70px rgba(30,27,75,0.42),
        0 6px 20px rgba(79,70,229,0.25);
}
.lp-feature-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    display: flex; align-items: center; justify-content: center;
    color: #4F46E5; margin-bottom: 16px;
}
.lp-feature-card.featured .lp-feature-icon {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    color: #A5B4FC;
}
.lp-feature-name {
    font-size: 15px; font-weight: 700; color: var(--text-primary);
    margin-bottom: 8px; letter-spacing: -0.3px;
}
.lp-feature-card.featured .lp-feature-name { color: #FFFFFF; }
.lp-feature-desc {
    font-size: 13.5px; line-height: 1.68; color: var(--text-secondary);
}
.lp-feature-card.featured .lp-feature-desc { color: rgba(255,255,255,0.65); }
.lp-feature-tag {
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 16px; font-size: 10.5px; font-weight: 700;
    letter-spacing: 0.6px; text-transform: uppercase;
    color: #A5B4FC;
    background: rgba(165,180,252,0.12);
    border: 1px solid rgba(165,180,252,0.25);
    padding: 4px 11px; border-radius: 9999px;
}

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════ */
.lp-steps {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 44px; margin-top: 56px; position: relative;
}
.lp-steps::before {
    content: '';
    position: absolute;
    top: 21px; left: calc(16.67% + 21px); right: calc(16.67% + 21px);
    height: 1px;
    background: linear-gradient(90deg, #4F46E5, #0EA5E9, #4F46E5);
    opacity: 0.2;
}
.lp-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.lp-step-top { margin-bottom: 22px; }
.lp-step-num {
    width: 44px; height: 44px; border-radius: 9999px;
    background: linear-gradient(135deg, #4F46E5, #6366F1);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 800; color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(79,70,229,0.38);
    position: relative; z-index: 1;
}
.lp-step-title {
    font-size: 16px; font-weight: 700; color: var(--text-primary);
    margin-bottom: 10px; letter-spacing: -0.3px;
}
.lp-step-desc {
    font-size: 14px; line-height: 1.68; color: var(--text-secondary);
    max-width: 260px; margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════
   PRICING — conversion cards with shimmer
   ══════════════════════════════════════════════════════════ */
.lp-pricing-section { background: #F8FAFF; }
.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 48px;
    align-items: stretch;
}

/* ── Base card ─────────────────────────────────────────── */
.lp-plan {
    background: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    border-radius: 18px;
    padding: 22px 16px 20px;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.lp-plan:hover {
    border-color: #C7D2FE;
    box-shadow: 0 8px 32px rgba(79,70,229,0.08);
    transform: translateY(-2px);
}

/* ── Featured card — elevated, gradient border ─────────── */
.lp-plan.featured {
    border: 2px solid transparent;
    background:
        linear-gradient(#FFFFFF, #FFFFFF) padding-box,
        linear-gradient(160deg, #4F46E5 0%, #0369A1 55%, #6366F1 100%) border-box;
    box-shadow:
        0 0 0 5px rgba(79,70,229,0.07),
        0 24px 60px rgba(79,70,229,0.16);
    overflow: hidden;
    /* no translateY — badge sits inside, so no clipping */
}
.lp-plan.featured:hover {
    box-shadow:
        0 0 0 5px rgba(79,70,229,0.1),
        0 28px 70px rgba(79,70,229,0.22);
    transform: translateY(-3px);
}
/* shimmer sweep */
.lp-plan.featured::before {
    content: '';
    position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79,70,229,0.05), transparent);
    animation: lp-shimmer 3.5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes lp-shimmer {
    0%   { left: -120%; }
    100% { left: 220%; }
}

/* ── Badge — inside the card at the top ────────────────── */
.lp-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    align-self: flex-start;           /* left-aligned inside flex column */
    font-size: 10px; font-weight: 800;
    letter-spacing: 0.8px; text-transform: uppercase;
    background: linear-gradient(135deg, #4F46E5, #6366F1);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(79,70,229,0.35);
    position: relative; z-index: 1;
}
.lp-plan-badge::before {
    content: '';
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(255,255,255,0.7);
    flex-shrink: 0;
    animation: lp-pulse 2s ease-in-out infinite;
}

/* spacer so non-featured cards align their tier label with the featured card */
.lp-plan:not(.featured) .lp-plan-tier {
    margin-top: 32px; /* matches badge height + margin */
}
.lp-plan.featured .lp-plan-tier {
    margin-top: 0;
}

.lp-plan-tier {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-muted); margin-bottom: 10px;
}
.lp-plan-price {
    font-size: 34px; font-weight: 800; color: var(--text-primary);
    letter-spacing: -1.5px; line-height: 1; margin-bottom: 4px;
}
.lp-plan-currency {
    font-size: 16px; font-weight: 700; color: var(--text-secondary);
    letter-spacing: 0; vertical-align: super; line-height: 0;
}
.lp-plan-period {
    font-size: 12px; font-weight: 500; color: var(--text-muted);
}
.lp-plan-tagline {
    font-size: 12.5px; color: var(--text-muted);
    margin-bottom: 16px; line-height: 1.4; margin-top: 2px;
    min-height: 2.1em;
}
.lp-plan-divider { height: 1px; background: #F3F4F6; margin: 18px 0; }
.lp-plan-features {
    list-style: none; padding: 0; margin: 0 0 20px;
    display: flex; flex-direction: column; gap: 9px;
    flex: 1; /* pushes CTA to bottom */
}
.lp-plan-features li {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: 13px; color: var(--text-secondary); line-height: 1.45;
}
.lp-plan-features li .lp-check {
    flex-shrink: 0; margin-top: 1px;
    width: 16px; height: 16px; border-radius: 50%;
    background: #EEF2FF;
    display: flex; align-items: center; justify-content: center;
}
.lp-plan-features li .lp-check svg { color: #4F46E5; }
.lp-plan.featured .lp-plan-features li .lp-check { background: rgba(79,70,229,0.12); }

/* ── CTA buttons ───────────────────────────────────────── */
.lp-plan-cta {
    display: block; width: 100%; text-align: center;
    padding: 12px 8px; border-radius: 10px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    transition: all 0.18s; cursor: pointer; margin-top: auto;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    line-height: 1.3;
}
.lp-plan-cta:hover { transform: translateY(-1px); }

/* Free — subtle ghost */
.lp-plan-cta.free {
    background: transparent; color: #64748B;
    border: 1.5px solid #E2E8F0;
}
.lp-plan-cta.free:hover { background: #F8FAFC; border-color: #CBD5E1; color: #334155; }

/* Basic — cyan tint */
.lp-plan-cta.basic {
    background: #ECFEFF; color: #0891B2;
    border: 1.5px solid #A5F3FC;
}
.lp-plan-cta.basic:hover { background: #CFFAFE; border-color: #67E8F9; }

/* Starter — indigo outline */
.lp-plan-cta.starter {
    background: transparent; color: #4F46E5;
    border: 1.5px solid #C7D2FE;
}
.lp-plan-cta.starter:hover { background: #EEF2FF; border-color: #A5B4FC; }

/* Pro — filled solid (featured) */
.lp-plan-cta.pro {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: #FFFFFF; border: none;
    box-shadow: 0 4px 16px rgba(79,70,229,0.32);
}
.lp-plan-cta.pro:hover {
    background: linear-gradient(135deg, #4338CA 0%, #4F46E5 100%);
    box-shadow: 0 6px 22px rgba(79,70,229,0.42);
}

/* Unlimited — dark filled */
.lp-plan-cta.unlimited {
    background: #0F172A; color: #FFFFFF; border: none;
    box-shadow: 0 4px 12px rgba(15,23,42,0.18);
}
.lp-plan-cta.unlimited:hover {
    background: #1E293B;
    box-shadow: 0 6px 18px rgba(15,23,42,0.26);
}
.lp-plan-note {
    text-align: center; font-size: 11.5px;
    color: var(--text-muted); margin-top: 10px; min-height: 17px;
}

/* Value strip */
.lp-pricing-note {
    margin: 36px auto 0;
    max-width: 560px; text-align: center;
    font-size: 13px; color: var(--text-muted); line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.lp-testi-section {
    background: #FFFFFF;
    border-top: 1px solid #E2E8F0;
}
.lp-testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 48px;
}
.lp-testi {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px; padding: 24px;
    display: flex; flex-direction: column; gap: 16px;
}
.lp-testi-quote {
    font-size: 14px; line-height: 1.78;
    color: var(--text-secondary); flex: 1;
    margin: 0;
}
.lp-testi-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px; border-top: 1px solid #E2E8F0;
}
.lp-testi-avatar {
    width: 36px; height: 36px; border-radius: 9999px;
    background: #E0E7FF;
    color: #4F46E5; font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lp-testi-name { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.lp-testi-role { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

/* Trust badges */
.lp-trust-row {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; flex-wrap: wrap; margin-top: 48px;
    padding-top: 36px; border-top: 1px solid #E2E8F0;
}
.lp-trust-badge {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 500; color: #64748B;
    background: #F8FAFC; border: 1px solid #E2E8F0;
    border-radius: 9999px; padding: 7px 16px;
}
.lp-trust-badge svg { color: #94A3B8; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.lp-faq-bg {
    background: #F8FAFF;
    border-top: 1px solid rgba(79,70,229,0.08);
}
.lp-faq-list {
    max-width: 700px; margin: 56px auto 0;
    display: flex; flex-direction: column; gap: 8px;
}
.lp-faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(3,105,161,0.1);
    border-radius: 14px; overflow: hidden;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.lp-faq-item[open] {
    border-color: rgba(79,70,229,0.25);
    box-shadow: 0 6px 24px rgba(79,70,229,0.08);
}
.lp-faq-q {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 19px 22px;
    font-size: 14.5px; font-weight: 600; color: var(--text-primary);
    cursor: pointer; list-style: none; user-select: none;
}
.lp-faq-q::-webkit-details-marker { display: none; }
.lp-faq-item[open] .lp-faq-q { color: #4338CA; }
.lp-faq-icon {
    width: 26px; height: 26px; border-radius: 50%;
    background: #EEF2FF; border: 1px solid #C7D2FE;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 16px; color: #4F46E5;
    transition: all 0.2s; line-height: 1; font-weight: 400;
}
.lp-faq-item[open] .lp-faq-icon {
    background: linear-gradient(135deg, #4F46E5, #6366F1);
    border-color: transparent; color: #FFFFFF;
}
.lp-faq-a {
    padding: 0 22px 20px;
    font-size: 14px; line-height: 1.78; color: var(--text-secondary);
}

/* ══════════════════════════════════════════════════════════
   CTA BANNER — deep indigo gradient
   ══════════════════════════════════════════════════════════ */
.lp-cta {
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 40%, #1E3A5F 100%);
    padding: 100px 0; text-align: center;
    position: relative; overflow: hidden;
}
.lp-cta::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 30px 30px; pointer-events: none;
}
.lp-cta::after {
    content: '';
    position: absolute;
    top: -200px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.2) 0%, transparent 65%);
    pointer-events: none;
}
.lp-cta-inner {
    max-width: 640px; margin: 0 auto; padding: 0 40px;
    position: relative; z-index: 1;
}
.lp-cta h2 {
    font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
    color: #FFFFFF; letter-spacing: -1.2px; line-height: 1.12; margin-bottom: 16px;
}
.lp-cta p {
    font-size: 17px; color: rgba(255,255,255,0.65);
    margin-bottom: 38px; line-height: 1.65;
}
.lp-cta-actions {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; flex-wrap: wrap; margin-bottom: 20px;
}
.lp-cta-note { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ══════════════════════════════════════════════════════════
   FOOTER — dark slate
   ══════════════════════════════════════════════════════════ */
.lp-footer {
    background: #0F0F1A;
    padding: 56px 0 32px;
    border-top: 1px solid rgba(99,102,241,0.15);
}
.lp-footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.lp-footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 32px; padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px;
}
.lp-footer-logo {
    display: flex; align-items: center; gap: 9px;
    text-decoration: none; font-size: 17px; font-weight: 800;
    color: #FFFFFF; margin-bottom: 12px; letter-spacing: -0.4px;
}
.lp-footer-logo .lp-logo-mark { font-size: 20px; color: #818CF8; }
.lp-footer-brand p {
    font-size: 13px; line-height: 1.68;
    color: rgba(255,255,255,0.38); max-width: 200px;
}
.lp-footer-col h4 {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: rgba(255,255,255,0.28); margin-bottom: 16px;
}
.lp-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lp-footer-col ul li a {
    font-size: 13px; color: rgba(255,255,255,0.48);
    text-decoration: none; transition: color 0.15s;
}
.lp-footer-col ul li a:hover { color: #A5B4FC; }
.lp-footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.22);
}
.lp-footer-bottom a { color: rgba(255,255,255,0.22); text-decoration: none; transition: color 0.15s; }
.lp-footer-bottom a:hover { color: rgba(255,255,255,0.55); }
.lp-footer-legal { display: flex; gap: 24px; }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════ */
@keyframes lp-fadeup {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lp-anim { animation: lp-fadeup 0.55s cubic-bezier(0.23,1,0.32,1) both; }
.lp-anim-d1 { animation-delay: 0.1s; }
.lp-anim-d2 { animation-delay: 0.22s; }
.lp-anim-d3 { animation-delay: 0.34s; }
.lp-anim-d4 { animation-delay: 0.46s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════
   BLOG SECTION
   ══════════════════════════════════════════════════════════ */
.lp-blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.lp-blog-card {
    background: #FFFFFF;
    border: 1px solid #E8EDF5;
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.lp-blog-card:hover {
    box-shadow: 0 12px 32px rgba(3,105,161,0.1);
    transform: translateY(-3px);
}
.lp-blog-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 0.8px;
    text-transform: uppercase; color: #4F46E5;
    background: #EEF2FF; border-radius: 6px;
    padding: 4px 10px; margin-bottom: 14px;
}
.lp-blog-card h3 {
    font-size: 17px; font-weight: 700;
    color: var(--text-primary); letter-spacing: -0.4px;
    line-height: 1.4; margin-bottom: 10px;
}
.lp-blog-card p {
    font-size: 14px; line-height: 1.7;
    color: var(--text-secondary); margin-bottom: 20px;
}
.lp-blog-meta {
    display: flex; align-items: center;
    justify-content: space-between;
    font-size: 13px; color: var(--text-muted);
}
.lp-blog-link {
    color: #4F46E5; font-weight: 600;
    text-decoration: none;
    transition: color 0.15s;
}
.lp-blog-link:hover { color: #3730A3; }

/* ══════════════════════════════════════════════════════════
   HELP SECTION
   ══════════════════════════════════════════════════════════ */
.lp-help-section {
    background: linear-gradient(160deg, #F8FAFF 0%, #EEF2FF 100%);
}
.lp-help-inner {
    display: grid; grid-template-columns: 1fr 1.6fr;
    gap: 72px; align-items: center;
}
.lp-help-cards {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.lp-help-card {
    background: #FFFFFF;
    border: 1px solid #E8EDF5;
    border-radius: 14px;
    padding: 22px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.lp-help-card:hover {
    box-shadow: 0 8px 24px rgba(3,105,161,0.1);
    transform: translateY(-2px);
}
.lp-help-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: #EEF2FF;
    display: flex; align-items: center; justify-content: center;
    color: #4F46E5;
    margin-bottom: 14px;
}
.lp-help-card h4 {
    font-size: 15px; font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.lp-help-card p {
    font-size: 13px; line-height: 1.6;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .lp-pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 20px; }
    .lp-footer-brand { grid-column: span 1; }
    .lp-blog-grid { grid-template-columns: 1fr; }
    .lp-help-inner { grid-template-columns: 1fr; }
    .lp-help-cards { grid-template-columns: repeat(2, 1fr); }
    .lp-plan.featured { transform: none; }
    .lp-plan.featured:hover { transform: translateY(-3px); }
}
@media (max-width: 900px) {
    .lp-nav-inner { padding: 0 24px; }
    .lp-nav-links { display: none; }
    .lp-container { padding: 0 24px; }
    .lp-hero-inner { grid-template-columns: 1fr; padding: 0 24px; gap: 44px; }
    .lp-deck-wrapper { display: none; }
    .lp-hero { padding: 64px 0 60px; }
    .lp-section { padding: 76px 0; }
    .lp-stats-inner { padding: 0 24px; }
    .lp-proof-header { padding: 0 24px; }
    .lp-steps { grid-template-columns: 1fr; gap: 28px; }
    .lp-steps::before { display: none; }
    .lp-step { text-align: left; align-items: flex-start; }
    .lp-step-desc { margin: 0; }
    .lp-testi-grid { grid-template-columns: 1fr; }
    .lp-footer-inner { padding: 0 24px; }
    .lp-footer-top { grid-template-columns: 1fr; gap: 32px; }
    .lp-footer-brand { grid-column: span 1; }
}
@media (max-width: 640px) {
    .lp-hero-title { letter-spacing: -1.5px; }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-pricing-grid { grid-template-columns: 1fr 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .lp-plan.featured { transform: none; }
    .lp-plan.featured:hover { transform: translateY(-2px); }
    .lp-stats-inner { grid-template-columns: 1fr; }
    .lp-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 24px; }
    .lp-stat:last-child { border-bottom: none; }
    .lp-hero-actions { flex-direction: column; align-items: stretch; }
    .lp-hero-actions .lp-btn { text-align: center; justify-content: center; }
    .lp-cta { padding: 76px 0; }
    .lp-cta-actions { flex-direction: column; align-items: stretch; max-width: 300px; margin: 0 auto 20px; }
    .lp-footer-bottom { flex-direction: column; align-items: flex-start; }
    .lp-trust-row { gap: 10px; }
}
@media (max-width: 480px) {
    .lp-btn-ghost { display: none; }
    .lp-hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }
    .lp-help-cards { grid-template-columns: 1fr; }
    .lp-footer-top { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    .lp-anim { animation: none; }
    .lp-deck-card { transition: none; }
    .lp-hero-badge-dot { animation: none; }
    .lp-plan.featured::before { animation: none; }
}
