/* ══════════════════════════════════════════════════════════════════════════
   Landing page styles
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.lp-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f0c29 0%, #1a1a6e 35%, #1565c0 65%, #0d7377 100%);
    overflow: hidden;
    padding: 80px 24px 60px;
}
.lp-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.lp-globe {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: min(560px, 90vw);
    opacity: 0.5;
}
.lp-float {
    position: absolute;
    animation: lp-float 6s ease-in-out infinite;
    user-select: none;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
@keyframes lp-float {
    0%, 100% { transform: translateY(0px) rotate(-3deg); }
    50%       { transform: translateY(-18px) rotate(3deg); }
}
.lp-hero-content {
    position: relative;
    max-width: 700px;
    color: #fff;
    text-align: center;
}
.lp-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.lp-headline {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.lp-headline-accent {
    background: linear-gradient(90deg, #06D6A0, #4cc9f0, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-subheadline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.lp-cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.lp-btn-primary {
    background: linear-gradient(135deg, #06D6A0, #4361EE);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(6,214,160,0.4);
    display: inline-block;
}
.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(6,214,160,0.5);
    color: #fff;
    text-decoration: none;
}
.lp-btn-ghost {
    color: rgba(255,255,255,0.9);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.35);
    transition: background 0.2s, border-color 0.2s;
    display: inline-block;
}
.lp-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    text-decoration: none;
}
.lp-no-card {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* ── Stats bar ────────────────────────────────────────────────────────────── */
.lp-stats {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 28px 24px;
}
.lp-stats-inner {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lp-stat-num {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4361EE, #06D6A0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.lp-stat-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
    flex-shrink: 0;
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
.lp-section {
    padding: 96px 24px;
    background: #fff;
}
.lp-section-alt {
    background: #f8fafc;
}
.lp-container {
    max-width: 1100px;
    margin: 0 auto;
}
.lp-section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: #111827;
    letter-spacing: -0.02em;
}
.lp-section-sub {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 56px;
}

/* ── Feature cards ────────────────────────────────────────────────────────── */
.lp-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.lp-feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.lp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.lp-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.lp-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}
.lp-feature-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}
.lp-pro-tag {
    display: inline-block;
    background: linear-gradient(135deg, #7B2FBE, #4361EE);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 100px;
    vertical-align: middle;
    letter-spacing: 0.04em;
}

/* ── How it works ─────────────────────────────────────────────────────────── */
.lp-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.lp-step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
}
.lp-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4361EE, #06D6A0);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.lp-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #111827; }
.lp-step p  { font-size: 0.88rem; color: #6b7280; line-height: 1.6; }
.lp-step-arrow { font-size: 1.8rem; color: #d1d5db; flex-shrink: 0; align-self: flex-start; margin-top: 16px; }

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.lp-pricing {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.lp-plan {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    padding: 36px 32px;
    min-width: 280px;
    max-width: 340px;
    flex: 1;
    position: relative;
}
.lp-plan-pro { border-color: #4361EE; box-shadow: 0 8px 40px rgba(67,97,238,0.15); }
.lp-plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4361EE, #7B2FBE);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.04em;
}
.lp-plan-name { font-size: 1.1rem; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.lp-plan-price { font-size: 2.5rem; font-weight: 800; color: #111827; margin-bottom: 28px; }
.lp-plan-price span { font-size: 1rem; font-weight: 400; color: #6b7280; }
.lp-plan-features { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 10px; }
.lp-plan-features li { font-size: 0.9rem; color: #374151; }
.lp-plan-locked { color: #d1d5db !important; }
.lp-btn-plan-free {
    display: block; text-align: center; padding: 13px; border-radius: 50px;
    border: 1.5px solid #4361EE; color: #4361EE; font-weight: 700; text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.lp-btn-plan-free:hover { background: #4361EE; color: #fff; text-decoration: none; }
.lp-btn-plan-pro {
    display: block; text-align: center; padding: 13px; border-radius: 50px;
    background: linear-gradient(135deg, #4361EE, #7B2FBE); color: #fff; font-weight: 700;
    text-decoration: none; transition: opacity 0.2s, transform 0.2s;
}
.lp-btn-plan-pro:hover { opacity: 0.9; transform: translateY(-1px); text-decoration: none; color: #fff; }

/* ── Final CTA ────────────────────────────────────────────────────────────── */
.lp-cta-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #0f0c29 0%, #1a1a6e 50%, #0d7377 100%);
    color: #fff;
    text-align: center;
}
.lp-cta-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.lp-cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 40px; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.lp-footer { background: #0f172a; padding: 32px 24px; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.lp-footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.lp-footer-brand { display: flex; flex-direction: column; gap: 4px; }
.lp-footer-logo { color: #fff; font-weight: 700; font-size: 1rem; }
.lp-footer-links { display: flex; gap: 24px; }
.lp-footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.lp-footer-links a:hover { color: #fff; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .lp-globe      { display: none; }
    .lp-step-arrow { display: none; }
    .lp-steps      { flex-direction: column; align-items: center; }
    .lp-footer-inner { flex-direction: column; text-align: center; }
    .lp-footer-links { justify-content: center; }
    .lp-stat-divider { display: none; }
}
