/* SMM Panel — Landing Page (standalone) */
:root {
    --lp-blue: #2563eb;
    --lp-blue-dark: #1d4ed8;
    --lp-navy: #0b1220;
    --lp-navy-mid: #111827;
    --lp-slate: #64748b;
    --lp-text: #0f172a;
    --lp-white: #ffffff;
    --lp-border: rgba(255,255,255,.08);
    --lp-glass: rgba(255,255,255,.06);
    --lp-radius: 16px;
    --lp-font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.lp-body {
    font-family: var(--lp-font);
    color: var(--lp-text);
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.lp-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Buttons */
.lp-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: .65rem 1.35rem; border-radius: 10px; font-weight: 600; font-size: .9rem;
    border: none; cursor: pointer; transition: .2s ease; font-family: inherit;
}
.lp-btn-fill { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; box-shadow: 0 4px 20px rgba(37,99,235,.4); }
.lp-btn-fill:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.5); color: #fff; }
.lp-btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.lp-btn-ghost:hover { background: rgba(255,255,255,.18); color: #fff; }
.lp-btn-white { background: #fff; color: var(--lp-blue-dark); }
.lp-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.lp-btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35); }
.lp-btn-outline-white:hover { background: rgba(255,255,255,.1); color: #fff; }
.lp-btn-block { width: 100%; }
.lp-btn-lg { padding: .9rem 2rem; font-size: 1rem; }

/* Header */
.lp-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    padding: .75rem 0; transition: .3s ease;
    background: rgba(11,18,32,.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--lp-border);
}
.lp-header-inner {
    display: flex; align-items: center; gap: 1rem;
    min-height: 52px;
}
.lp-logo {
    display: flex; align-items: center; gap: .6rem;
    font-weight: 800; font-size: 1.15rem; color: #fff; flex-shrink: 0;
}
.lp-logo-light { color: #fff; }
.lp-logo-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    display: flex; align-items: center; justify-content: center; color: #fff;
}
.lp-nav {
    display: flex; gap: 1.5rem; margin-left: auto; margin-right: .5rem;
    flex-shrink: 1; min-width: 0;
}
.lp-nav a { color: rgba(255,255,255,.75); font-weight: 500; font-size: .9rem; transition: .2s; white-space: nowrap; }
.lp-nav a:hover { color: #fff; }
.lp-header-right {
    display: flex; align-items: center; gap: .5rem; flex-shrink: 0;
}
.lp-header-btns { display: flex; gap: .5rem; align-items: center; }
.lp-header-lang { display: flex; align-items: center; }
.pn-lang-switch {
    display: inline-flex; gap: .2rem; align-items: center;
    padding: .2rem; border-radius: 999px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
}
.pn-lang-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 2.5rem; padding: .38rem .7rem; border-radius: 999px;
    font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-decoration: none;
    border: none; color: rgba(255,255,255,.75); background: transparent;
    transition: .15s ease;
}
.pn-lang-btn.active { background: #fff; color: var(--lp-navy, #0b1220); }
.pn-lang-btn:hover:not(.active) { color: #fff; background: rgba(255,255,255,.12); }
.lp-menu-btn {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; padding: 0;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px; cursor: pointer; flex-shrink: 0;
}
.lp-menu-btn span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; margin: 0 auto; }

.lp-header.scrolled {
    background: rgba(11,18,32,.96);
    padding: .5rem 0;
}

@media (max-width: 900px) {
    .lp-nav { display: none; }
    .lp-header-btns { display: none; }
    .lp-menu-btn { display: flex; }
    .lp-header-right { margin-left: auto; gap: .4rem; }
    body.lp-nav-open .lp-nav {
        display: flex; flex-direction: column; position: fixed;
        top: 68px; left: 0; right: 0; background: var(--lp-navy);
        padding: 1.25rem 1.5rem; gap: .85rem;
        border-bottom: 1px solid var(--lp-border);
        box-shadow: 0 12px 40px rgba(0,0,0,.35);
    }
    body.lp-nav-open .lp-header-btns {
        display: flex; flex-direction: column; position: fixed;
        top: 240px; left: 1.5rem; right: 1.5rem; gap: .5rem;
    }
    body.lp-nav-open .lp-header-btns .lp-btn { width: 100%; justify-content: center; }
}

/* Auth pages lang switcher */
.lp-auth-lang-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.lp-auth-form-wrap .pn-lang-switch { justify-content: center; margin-bottom: 1rem; background: #f1f5f9; border-color: #e2e8f0; }
.lp-auth-form-wrap .pn-lang-btn { color: #64748b; }
.lp-auth-form-wrap .pn-lang-btn.active { background: var(--lp-blue); color: #fff; }
.lp-auth-lang-mobile { display: none; }
@media (max-width: 960px) {
    .lp-auth-lang-mobile { display: flex; justify-content: center; margin-bottom: .75rem; }
}

/* Hero */
.lp-hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 6rem 0 4rem; background: var(--lp-navy); overflow: hidden;
}
.lp-hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(37,99,235,.35), transparent),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(99,102,241,.2), transparent),
        linear-gradient(180deg, #0b1220 0%, #111827 100%);
}
.lp-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 32px 32px; opacity: .5;
}
.lp-hero-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 960px) {
    .lp-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .lp-hero { min-height: auto; padding-top: 5rem; }
}

.lp-pill {
    display: inline-block; padding: .4rem 1rem; margin-bottom: 1.25rem;
    background: rgba(59,130,246,.15); border: 1px solid rgba(59,130,246,.3);
    border-radius: 999px; color: #93c5fd; font-size: .8rem; font-weight: 600;
}
.lp-hero-text h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1;
    color: #fff; margin-bottom: 1.25rem;
}
.lp-hero-text h1 span {
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-lead { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.7; max-width: 480px; margin-bottom: 2rem; }

.lp-hero-metrics { display: flex; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.lp-hero-metrics div { display: flex; flex-direction: column; }
.lp-hero-metrics strong { font-size: 1.5rem; font-weight: 800; color: #fff; }
.lp-hero-metrics span { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }

.lp-platform-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.lp-platform-dot {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--c); border: 2px solid rgba(255,255,255,.15);
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* Hero panel / login */
.lp-hero-panel { position: relative; }
.lp-panel-card {
    background: rgba(255,255,255,.97); border-radius: 20px; padding: 2rem;
    box-shadow: 0 24px 64px rgba(0,0,0,.4); position: relative; z-index: 2;
}
.lp-panel-tabs { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid #e2e8f0; padding-bottom: .75rem; }
.lp-panel-tabs span, .lp-panel-tabs a { font-weight: 600; font-size: .9rem; color: #94a3b8; }
.lp-panel-tabs span.active { color: var(--lp-blue); border-bottom: 2px solid var(--lp-blue); padding-bottom: .75rem; margin-bottom: -.75rem; }
.lp-panel-tabs a:hover { color: var(--lp-blue); }
.lp-panel-form label { display: block; font-size: .8rem; font-weight: 600; color: #475569; margin-bottom: .35rem; margin-top: .85rem; }
.lp-panel-form input {
    width: 100%; padding: .75rem 1rem; border: 1.5px solid #e2e8f0; border-radius: 10px;
    font-size: .9rem; font-family: inherit; transition: .2s;
}
.lp-panel-form input:focus { outline: none; border-color: var(--lp-blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.lp-panel-form button { margin-top: 1.25rem; }
.lp-panel-note { text-align: center; margin-top: 1rem; font-size: .85rem; color: #64748b; }
.lp-panel-note a { color: var(--lp-blue); font-weight: 600; }

.lp-panel-preview {
    position: absolute; top: 20px; right: -30px; width: 280px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px; overflow: hidden; backdrop-filter: blur(8px);
    transform: rotate(4deg); z-index: 1; opacity: .7;
}
@media (max-width: 960px) { .lp-panel-preview { display: none; } }
.lp-preview-bar { display: flex; gap: 5px; padding: .6rem .75rem; background: rgba(0,0,0,.2); }
.lp-preview-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); }
.lp-preview-body { display: flex; height: 140px; }
.lp-preview-sidebar { width: 50px; background: rgba(0,0,0,.15); }
.lp-preview-main { flex: 1; padding: .75rem; display: flex; flex-direction: column; gap: .5rem; }
.lp-preview-stat { height: 24px; background: rgba(255,255,255,.1); border-radius: 6px; }
.lp-preview-chart { flex: 1; background: linear-gradient(180deg, rgba(59,130,246,.3), transparent); border-radius: 6px; }

/* Counter strip */
.lp-counter { background: #fff; padding: 0; margin-top: -3rem; position: relative; z-index: 10; }
.lp-counter-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
    background: #fff; border-radius: 20px; padding: 1.5rem 2rem;
    box-shadow: 0 20px 60px rgba(15,23,42,.1); border: 1px solid #e2e8f0;
}
@media (max-width: 768px) { .lp-counter-grid { grid-template-columns: 1fr 1fr; padding: 1.25rem; } }
.lp-counter-item { display: flex; align-items: center; gap: 1rem; }
.lp-counter-icon {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    background: #eff6ff; color: var(--lp-blue); display: flex; align-items: center; justify-content: center;
}
.lp-counter-item strong { display: block; font-size: 1.25rem; font-weight: 800; color: var(--lp-text); }
.lp-counter-item span { font-size: .8rem; color: var(--lp-slate); }

/* Sections */
.lp-section { padding: 5.5rem 0; }
.lp-section-alt { background: #f8fafc; }
.lp-section-head { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.lp-section-head h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); font-weight: 800; margin-bottom: .75rem; }
.lp-section-head p { color: var(--lp-slate); font-size: 1.05rem; }
.lp-section-head.light h2 { color: #fff; }
.lp-section-head.light p { color: rgba(255,255,255,.6); }
.lp-label {
    display: inline-block; padding: .35rem .9rem; margin-bottom: .75rem;
    background: #eff6ff; color: var(--lp-blue); border-radius: 999px;
    font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.lp-section-head.light .lp-label { background: rgba(255,255,255,.1); color: #93c5fd; }

/* Bento grid */
.lp-bento {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
@media (max-width: 900px) { .lp-bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lp-bento { grid-template-columns: 1fr; } }
.lp-bento-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: var(--lp-radius);
    padding: 1.75rem; transition: .25s ease;
}
.lp-bento-card:hover { border-color: #bfdbfe; box-shadow: 0 12px 40px rgba(37,99,235,.08); transform: translateY(-3px); }
.lp-bento-large { grid-column: span 2; }
.lp-bento-wide { grid-column: span 2; }
@media (max-width: 900px) { .lp-bento-large, .lp-bento-wide { grid-column: span 1; } }
.lp-bento-icon {
    width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.lp-bento-icon.blue { background: #eff6ff; color: #2563eb; }
.lp-bento-icon.sky { background: #e0f2fe; color: #0284c7; }
.lp-bento-icon.indigo { background: #eef2ff; color: #4f46e5; }
.lp-bento-icon.green { background: #ecfdf5; color: #059669; }
.lp-bento-icon.purple { background: #f5f3ff; color: #7c3aed; }
.lp-bento-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.lp-bento-card p { font-size: .9rem; color: var(--lp-slate); line-height: 1.6; }

/* Dark section / steps */
.lp-section-dark {
    background: linear-gradient(160deg, #0f172a, #1e3a8a); color: #fff;
}
.lp-steps {
    display: flex; align-items: flex-start; justify-content: center; gap: 0; flex-wrap: wrap;
}
.lp-step { flex: 1; min-width: 180px; max-width: 260px; text-align: center; padding: 1rem; }
.lp-step-num {
    width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; font-weight: 800;
}
.lp-step h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.lp-step p { font-size: .875rem; color: rgba(255,255,255,.6); }
.lp-step-line {
    width: 60px; height: 2px; background: rgba(255,255,255,.2);
    margin-top: 2rem; flex-shrink: 0;
}
@media (max-width: 768px) { .lp-step-line { display: none; } }
.lp-section-cta { text-align: center; margin-top: 2.5rem; }

/* Services */
.lp-services {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
@media (max-width: 900px) { .lp-services { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lp-services { grid-template-columns: 1fr; } }
.lp-service-card {
    display: block; background: #fff; border: 1px solid #e2e8f0; border-radius: var(--lp-radius);
    padding: 1.75rem; position: relative; overflow: hidden; transition: .25s;
}
.lp-service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #3b82f6, #6366f1); transform: scaleX(0); transition: .25s;
}
.lp-service-card:hover { border-color: #bfdbfe; box-shadow: 0 12px 40px rgba(37,99,235,.1); transform: translateY(-4px); }
.lp-service-card:hover::before { transform: scaleX(1); }
.lp-service-num {
    font-size: .7rem; font-weight: 800; color: #bfdbfe; letter-spacing: .1em;
}
.lp-service-card h3 { font-size: 1.15rem; font-weight: 700; margin: .5rem 0; }
.lp-service-card p { font-size: .875rem; color: var(--lp-slate); line-height: 1.55; }
.lp-service-arrow {
    display: inline-block; margin-top: 1rem; font-size: 1.25rem; color: var(--lp-blue);
    transition: .2s;
}
.lp-service-card:hover .lp-service-arrow { transform: translateX(4px); }

/* API section */
.lp-section-api { background: #f8fafc; }
.lp-api-wrap {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 900px) { .lp-api-wrap { grid-template-columns: 1fr; } }
.lp-api-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: .75rem; }
.lp-api-text p { color: var(--lp-slate); margin-bottom: 1.25rem; line-height: 1.65; }
.lp-api-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; list-style: none; }
.lp-api-list li {
    padding: .35rem .85rem; background: #eff6ff; color: var(--lp-blue-dark);
    border-radius: 999px; font-size: .8rem; font-weight: 600; font-family: ui-monospace, monospace;
}
.lp-api-code {
    background: #0f172a; border-radius: 16px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(15,23,42,.25);
}
.lp-code-header {
    display: flex; align-items: center; gap: 6px; padding: .75rem 1rem;
    background: #1e293b; border-bottom: 1px solid rgba(255,255,255,.06);
}
.lp-code-header span { width: 10px; height: 10px; border-radius: 50%; }
.lp-code-header span:nth-child(1) { background: #ef4444; }
.lp-code-header span:nth-child(2) { background: #eab308; }
.lp-code-header span:nth-child(3) { background: #22c55e; }
.lp-code-header em { margin-left: auto; font-size: .75rem; color: #64748b; font-style: normal; }
.lp-api-code pre { padding: 1.25rem; overflow-x: auto; }
.lp-api-code code { font-family: ui-monospace, monospace; font-size: .8rem; color: #e2e8f0; line-height: 1.7; }

/* FAQ */
.lp-faq-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
@media (max-width: 768px) { .lp-faq-wrap { grid-template-columns: 1fr; } }
.lp-faq { display: flex; flex-direction: column; gap: .75rem; }
.lp-faq-item {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden;
}
.lp-faq-item summary {
    padding: 1.1rem 1.25rem; font-weight: 600; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.lp-faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--lp-blue); font-weight: 400; }
.lp-faq-item[open] summary::after { content: '−'; }
.lp-faq-item p { padding: 0 1.25rem 1.1rem; color: var(--lp-slate); font-size: .9rem; line-height: 1.65; }

/* CTA */
.lp-cta {
    background: linear-gradient(135deg, #1d4ed8, #4f46e5);
    padding: 5rem 0; text-align: center; color: #fff;
}
.lp-cta-inner h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: .75rem; }
.lp-cta-inner p { opacity: .85; margin-bottom: 2rem; font-size: 1.05rem; }
.lp-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
.lp-footer { background: var(--lp-navy); color: rgba(255,255,255,.6); padding: 4rem 0 0; }
.lp-footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem;
}
@media (max-width: 768px) { .lp-footer-grid { grid-template-columns: 1fr 1fr; } }
.lp-footer-brand p { margin-top: 1rem; font-size: .875rem; line-height: 1.7; max-width: 280px; }
.lp-footer h4 { color: #fff; font-size: .9rem; margin-bottom: 1rem; }
.lp-footer ul { list-style: none; }
.lp-footer li { margin-bottom: .5rem; }
.lp-footer a { font-size: .875rem; transition: .2s; }
.lp-footer a:hover { color: #fff; }
.lp-footer-copy {
    border-top: 1px solid var(--lp-border); padding: 1.25rem 0;
    font-size: .8rem; text-align: center;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ─── Auth pages (login / register) ─── */
.lp-auth-body { background: var(--lp-navy); }
.lp-auth-page {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh;
}
@media (max-width: 960px) {
    .lp-auth-page { grid-template-columns: 1fr; }
}

.lp-auth-brand {
    position: relative; display: flex; align-items: center;
    padding: 3rem; overflow: hidden;
}
.lp-auth-brand-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 30% 50%, rgba(37,99,235,.4), transparent),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(99,102,241,.25), transparent),
        linear-gradient(160deg, #0b1220, #111827);
}
.lp-auth-brand-bg::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 28px 28px;
}
.lp-auth-brand-inner { position: relative; z-index: 1; max-width: 440px; }
.lp-auth-brand h1 {
    font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15;
    color: #fff; margin: 2.5rem 0 1rem;
}
.lp-auth-brand h1 span {
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-auth-lead { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; }

.lp-auth-perks { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.lp-auth-perk { display: flex; align-items: center; gap: 1rem; }
.lp-auth-perk-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: rgba(59,130,246,.15); border: 1px solid rgba(59,130,246,.25);
    color: #93c5fd; display: flex; align-items: center; justify-content: center;
}
.lp-auth-perk strong { display: block; color: #fff; font-size: .9rem; }
.lp-auth-perk span { font-size: .8rem; color: rgba(255,255,255,.5); }

.lp-auth-stats-row {
    display: flex; gap: 2rem; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
}
.lp-auth-stats-row strong { display: block; font-size: 1.25rem; font-weight: 800; color: #fff; }
.lp-auth-stats-row span { font-size: .7rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em; }

.lp-auth-form-wrap {
    display: flex; align-items: center; justify-content: center;
    padding: 2rem; background: #f8fafc;
}
@media (max-width: 960px) {
    .lp-auth-brand { padding: 2rem; min-height: auto; }
    .lp-auth-brand h1 { margin-top: 1.5rem; }
    .lp-auth-perks { display: none; }
    .lp-auth-stats-row { display: none; }
}
.lp-auth-card {
    width: 100%; max-width: 440px;
    box-shadow: 0 24px 64px rgba(15,23,42,.12) !important;
}
.lp-auth-card-head { margin-bottom: 1.25rem; }
.lp-auth-card-head h2 { font-size: 1.5rem; font-weight: 800; color: var(--lp-text); margin-bottom: .25rem; }
.lp-auth-card-head p { font-size: .875rem; color: var(--lp-slate); }

.lp-alert {
    padding: .875rem 1rem; border-radius: 10px; margin-bottom: 1rem;
    font-size: .875rem; font-weight: 500;
}
.lp-alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }

.lp-auth-back { text-align: center; margin-top: .75rem; font-size: .8rem; }
.lp-auth-back a { color: var(--lp-slate); }
.lp-auth-back a:hover { color: var(--lp-blue); }

.lp-panel-form .lp-form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
@media (max-width: 480px) { .lp-panel-form .lp-form-row { grid-template-columns: 1fr; } }

/* Public blog */
.lp-blog-page { background: #f8fafc; }
.lp-blog-main { padding: 6rem 0 4rem; min-height: 60vh; }
.lp-blog-header { text-align: center; max-width: 560px; margin: 0 auto 2.5rem; }
.lp-blog-header h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: .75rem; color: var(--lp-text); }
.lp-blog-header p { color: var(--lp-slate); font-size: 1.05rem; }
.lp-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.lp-blog-card {
    display: block; background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
    padding: 1.5rem; transition: .2s ease; color: inherit;
    box-shadow: 0 4px 20px rgba(15,23,42,.04);
}
.lp-blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(15,23,42,.1); border-color: #bfdbfe; }
.lp-blog-card time { display: block; font-size: .75rem; color: var(--lp-slate); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .04em; }
.lp-blog-card h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: .65rem; color: var(--lp-text); line-height: 1.35; }
.lp-blog-card p { font-size: .9rem; color: var(--lp-slate); line-height: 1.6; margin-bottom: 1rem; }
.lp-blog-read { font-size: .85rem; font-weight: 600; color: var(--lp-blue); }
.lp-blog-empty { text-align: center; padding: 3rem 1rem; color: var(--lp-slate); }
.lp-blog-empty h1 { font-size: 1.5rem; margin-bottom: .75rem; color: var(--lp-text); }
.lp-blog-article { max-width: 720px; margin: 0 auto; background: #fff; border-radius: 20px; padding: 2rem; border: 1px solid #e2e8f0; box-shadow: 0 8px 32px rgba(15,23,42,.06); }
.lp-blog-back { display: inline-block; font-size: .875rem; font-weight: 600; color: var(--lp-blue); margin-bottom: 1.25rem; }
.lp-blog-back:hover { text-decoration: underline; }
.lp-blog-article-head time { display: block; font-size: .8rem; color: var(--lp-slate); margin-bottom: .75rem; }
.lp-blog-article-head h1 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; line-height: 1.25; color: var(--lp-text); margin-bottom: 1.5rem; }
.lp-blog-content { font-size: 1rem; line-height: 1.8; color: #334155; white-space: pre-wrap; word-break: break-word; }
html[dir="rtl"] .lp-blog-card,
html[dir="rtl"] .lp-blog-article { text-align: right; }
html[dir="rtl"] .lp-blog-read { display: inline-block; transform: scaleX(-1); }

html[dir="rtl"] body.lp-body { text-align: right; }
html[dir="rtl"] .lp-nav { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .lp-header-right { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .lp-hero-text { text-align: right; }
html[dir="rtl"] .lp-lead { margin-left: auto; margin-right: 0; }
html[dir="rtl"] .lp-hero-metrics,
html[dir="rtl"] .lp-platform-row { justify-content: flex-start; }
html[dir="rtl"] .lp-panel-preview { right: auto; left: -30px; transform: rotate(-4deg); }
html[dir="rtl"] .lp-counter-item { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .lp-service-card { text-align: right; }
html[dir="rtl"] .lp-service-arrow { transform: scaleX(-1); display: inline-block; }
html[dir="rtl"] .lp-footer-grid,
html[dir="rtl"] .lp-api-wrap { direction: rtl; }
html[dir="rtl"] .lp-panel-form label,
html[dir="rtl"] .lp-panel-note { text-align: right; }
html[dir="rtl"] .lp-section-head { text-align: center; }
@media (max-width: 900px) {
    html[dir="rtl"] .lp-header-right { margin-right: auto; margin-left: 0; }
}
