/* KARMIK Landing Page — Modern */
:root {
    --lp-primary: #1e40af;
    --lp-primary-d: #1e3a8a;
    --lp-accent: #f59e0b;
    --lp-dark: #0f172a;
    --lp-muted: #64748b;
    --lp-bg: #f8fafc;
    --lp-border: #e2e8f0;
}

.lp-body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #1e293b;
    background: #fff;
    margin: 0;
    scroll-behavior: smooth;
}

/* ── Nav ── */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--lp-border);
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.05);
}

.lp-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--lp-dark);
}

.lp-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 12px;
}

.lp-brand strong { display: block; font-size: 0.92rem; line-height: 1.15; font-weight: 800; }
.lp-brand small { color: var(--lp-muted); font-size: 0.62rem; line-height: 1.2; display: block; }

.lp-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.lp-menu a {
    text-decoration: none;
    color: #475569;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 11px;
    border-radius: 8px;
    transition: 0.2s;
}

.lp-menu a:hover { color: var(--lp-primary); background: #eff6ff; }

.lp-nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

.lp-btn.lp-nav-login-icon { display: none; padding: 8px 11px; min-width: 38px; }

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 11px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.25s;
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-primary) 0%, #3b82f6 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(30, 64, 175, 0.28);
}

.lp-btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(30, 64, 175, 0.35); }

.lp-btn-outline {
    background: #fff;
    color: var(--lp-primary);
    border: 1.5px solid #bfdbfe;
}

.lp-btn-outline:hover { background: #eff6ff; color: var(--lp-primary-d); }

.lp-btn-ghost-light {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.lp-btn-ghost-light:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }

.lp-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--lp-dark);
}

/* ── Hero ── */
.lp-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #1e40af 100%);
    color: #fff;
    padding: 88px 24px 72px;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.lp-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    bottom: -150px;
    left: -80px;
}

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

.lp-hero h1 {
    font-size: clamp(1.85rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin: 0 0 18px;
    font-weight: 800;
}

.lp-hero p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #dbeafe;
    margin-bottom: 28px;
}

.lp-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.lp-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lp-hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.lp-hero-card img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

/* ── Sections ── */
.lp-section { padding: 80px 24px; }
.lp-section.alt { background: var(--lp-bg); }
.lp-section.dark {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
}

.lp-container { max-width: 1200px; margin: 0 auto; }

.lp-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lp-primary);
    background: #eff6ff;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.lp-section.dark .lp-eyebrow {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

.lp-section-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px;
}

.lp-section-head h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    margin: 0 0 16px;
    color: var(--lp-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.lp-section.dark .lp-section-head h2 { color: #fff; }

.lp-section-head p {
    color: var(--lp-muted);
    font-size: 1.06rem;
    line-height: 1.75;
    margin: 0 0 12px;
}

.lp-section-head p:last-child { margin-bottom: 0; }

.lp-section.dark .lp-section-head p { color: #94a3b8; }

.lp-prose {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--lp-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ── Grids & Cards ── */
.lp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.lp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.lp-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    height: 100%;
    transition: 0.3s;
}

.lp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(30, 64, 175, 0.1);
    border-color: #bfdbfe;
}

.lp-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: var(--lp-primary);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.lp-card h3 { margin: 0 0 12px; font-size: 1.12rem; font-weight: 700; }
.lp-card p { margin: 0; color: var(--lp-muted); line-height: 1.7; font-size: 0.96rem; }

.lp-card-accent {
    border-left: 4px solid var(--lp-primary);
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}

/* ── Problem cards ── */
.lp-problem-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #fecaca;
    background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
}

.lp-problem-card h4 { color: #b91c1c; margin: 0 0 10px; font-size: 1rem; }
.lp-problem-card p { margin: 0; color: #64748b; font-size: 0.94rem; line-height: 1.65; }

.lp-solution-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #bbf7d0;
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
}

.lp-solution-card h4 { color: #15803d; margin: 0 0 10px; font-size: 1rem; }
.lp-solution-card p { margin: 0; color: #64748b; font-size: 0.94rem; line-height: 1.65; }

/* ── Stats strip ── */
.lp-stats-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.lp-stat-item {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid var(--lp-border);
}

.lp-stat-item:last-child { border-right: none; }

.lp-stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--lp-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.lp-stat-item span {
    font-size: 0.88rem;
    color: var(--lp-muted);
    font-weight: 600;
}

/* ── Showcase ── */
.lp-showcase-item {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
    transition: 0.3s;
}

.lp-showcase-item:hover { transform: translateY(-3px); box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1); }

.lp-showcase-item img { width: 100%; display: block; background: #f1f5f9; }

.lp-showcase-item .body { padding: 22px 24px 26px; }

.lp-showcase-item h3 { margin: 0 0 10px; font-size: 1.1rem; font-weight: 700; }

.lp-showcase-item p { margin: 0; color: var(--lp-muted); font-size: 0.94rem; line-height: 1.7; }

/* ── Steps ── */
.lp-steps { counter-reset: step; }

.lp-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px dashed var(--lp-border);
}

.lp-step:last-child { border-bottom: none; }

.lp-step::before {
    counter-increment: step;
    content: counter(step);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--lp-primary), #3b82f6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
}

.lp-step h4 { margin: 0 0 8px; font-size: 1.05rem; }
.lp-step p { margin: 0; color: var(--lp-muted); line-height: 1.7; font-size: 0.95rem; }

/* ── List checks ── */
.lp-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-check-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: #475569;
    line-height: 1.65;
    font-size: 0.96rem;
    border-bottom: 1px solid #f1f5f9;
}

.lp-check-list li:last-child { border-bottom: none; }

.lp-check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 12px;
    color: #16a34a;
    font-size: 0.85rem;
}

.lp-workflow-wrap {
    max-width: 780px;
    margin: 0 auto;
}

/* ── FAQ ── */
.lp-faq-item {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 14px;
}

.lp-faq-item h4 { margin: 0 0 10px; font-size: 1.02rem; color: var(--lp-dark); }
.lp-faq-item p { margin: 0; color: var(--lp-muted); line-height: 1.7; font-size: 0.95rem; }

/* ── CTA Banner ── */
.lp-cta-banner {
    background: linear-gradient(135deg, var(--lp-primary) 0%, #3b82f6 50%, #6366f1 100%);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.3);
}

.lp-cta-banner h2 { margin: 0 0 14px; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; }
.lp-cta-banner p { margin: 0 0 24px; color: #dbeafe; font-size: 1.05rem; line-height: 1.7; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ── Contact ── */
.lp-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.lp-contact-box {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.lp-contact-box div { margin-bottom: 14px; color: #334155; line-height: 1.65; }
.lp-contact-box i { color: var(--lp-primary); width: 22px; }

/* ── Footer ── */
.lp-footer {
    background: #0b1220;
    color: #94a3b8;
    padding: 48px 24px 32px;
}

.lp-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.lp-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 32px;
    border-bottom: 1px solid #1e293b;
    margin-bottom: 24px;
}

.lp-footer-brand { max-width: 360px; }
.lp-footer-brand strong { color: #fff; font-size: 1.2rem; }
.lp-footer-brand p { margin: 12px 0 0; font-size: 0.9rem; line-height: 1.7; }

.lp-footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.lp-footer-links a { color: #93c5fd; text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.lp-footer-links a:hover { color: #fff; }

.lp-footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .lp-hero-inner,
    .lp-grid-3,
    .lp-grid-2,
    .lp-grid-4,
    .lp-contact,
    .lp-stats-strip { grid-template-columns: 1fr; }

    .lp-stat-item { border-right: none; border-bottom: 1px solid var(--lp-border); }
    .lp-stat-item:last-child { border-bottom: none; }

    .lp-nav-inner {
        position: relative;
        flex-wrap: wrap;
        padding: 7px 10px;
        gap: 6px;
    }

    .lp-brand { order: 1; gap: 7px; min-width: 0; flex: 1; }
    .lp-nav-actions { order: 2; margin-left: 0; }
    .lp-toggle { order: 3; }
    .lp-menu { order: 4; }

    .lp-brand img {
        width: 34px;
        height: 34px;
        flex-shrink: 0;
    }

    .lp-brand strong { font-size: 0.78rem; }
    .lp-brand small { font-size: 0.55rem; }

    .lp-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        padding: 0;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .lp-nav-actions {
        margin-left: 0;
        gap: 6px;
    }

    .lp-nav-login-text,
    .lp-nav-signup-btn { display: none !important; }

    .lp-btn.lp-nav-login-icon {
        display: inline-flex !important;
        padding: 7px 10px;
        font-size: 0.95rem;
        border-radius: 9px;
    }

    .lp-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--lp-border);
        padding: 8px 12px 12px;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        max-height: 70vh;
        overflow-y: auto;
    }

    .lp-menu a {
        font-size: 0.84rem;
        padding: 9px 10px;
    }

    .lp-menu.open { display: flex; }

    .lp-hero { padding: 64px 16px 56px; }
    .lp-hero h1 { font-size: 1.65rem; }
    .lp-hero p { font-size: 0.95rem; }
}
