/* ══════════════════════════════════════════════════════════════
   LocaleFlow Landing Page — CSS
   ══════════════════════════════════════════════════════════════
   Loaded only on the marketing landing page.
   Uses Inter font + its own token set (no dependency on design-system.css).
   ══════════════════════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
    --lf-50:#ecfdf5;  --lf-100:#d1fae5; --lf-200:#a7f3d0; --lf-300:#6ee7b7;
    --lf-400:#34d399; --lf-500:#10b981; --lf-600:#059669; --lf-700:#047857;
    --lf-800:#065f46; --lf-900:#064e3b; --lf-950:#022c22;
    --n-0:#fff; --n-25:#fcfcfd; --n-50:#f8fafb; --n-100:#f1f5f9; --n-200:#e2e8f0;
    --n-300:#cbd5e1; --n-400:#94a3b8; --n-500:#64748b; --n-600:#475569;
    --n-700:#334155; --n-800:#1e293b; --n-900:#0f172a; --n-950:#020617;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    /* surfaces */
    --lp-bg:      #fff;
    --lp-bg-alt:  var(--n-50);
    --lp-text:    var(--n-800);
    --lp-text-h:  var(--n-900);
    --lp-text-sub:var(--n-500);
    --lp-text-muted:var(--n-400);
    --lp-border:  var(--n-200);
    --lp-card-bg: #fff;
    --lp-card-shadow: 0 1px 3px rgba(0,0,0,.04);
    --lp-card-hover-shadow: 0 8px 30px rgba(5,150,105,.08);
}

/* ── DARK MODE ────────────────────────────────────────────── */
html[data-theme="dark"] {
    --lp-bg:      #0c1210;
    --lp-bg-alt:  #111a17;
    --lp-text:    #c4ddd4;
    --lp-text-h:  #e2efe9;
    --lp-text-sub:#7a9a8e;
    --lp-text-muted:#4a6a5e;
    --lp-border:  rgba(255,255,255,.08);
    --lp-card-bg: #141c19;
    --lp-card-shadow: 0 1px 3px rgba(0,0,0,.2);
    --lp-card-hover-shadow: 0 8px 30px rgba(0,0,0,.3);
    color-scheme: dark;
}

/* ── RESET / BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: var(--font-sans);
    color: var(--lp-text);
    background: var(--lp-bg);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-lf {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--lf-600); color: #fff;
    border-radius: 10px; font-weight: 700; padding: 12px 28px;
    border: none; font-size: 14px; font-family: var(--font-sans);
    text-decoration: none; cursor: pointer;
    transition: background .15s, box-shadow .2s, transform .15s;
}
.btn-lf:hover { background: var(--lf-700); color: #fff; box-shadow: 0 4px 14px rgba(5,150,105,.3); transform: translateY(-1px); }
.btn-lf-lg { padding: 16px 40px; font-size: 16px; border-radius: 12px; }

.btn-lf-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid var(--lf-600); color: var(--lf-700);
    border-radius: 10px; font-weight: 600; padding: 11px 28px;
    font-size: 14px; font-family: var(--font-sans);
    background: transparent; text-decoration: none; cursor: pointer;
    transition: all .15s;
}
html[data-theme="dark"] .btn-lf-outline { color: var(--lf-400); border-color: var(--lf-500); }
.btn-lf-outline:hover { background: var(--lf-600); color: #fff; }

.btn-lf-ghost {
    background: none; border: none; color: var(--lp-text-sub);
    font-weight: 600; font-size: 14px; padding: 10px 16px;
    text-decoration: none; cursor: pointer; transition: color .15s;
}
.btn-lf-ghost:hover { color: var(--lf-600); }

.btn-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--lf-700); font-weight: 700;
    padding: 16px 40px; border-radius: 12px; border: none;
    font-size: 16px; font-family: var(--font-sans);
    text-decoration: none; cursor: pointer;
    transition: all .15s;
}
.btn-cta:hover { background: var(--lf-50); color: var(--lf-800); box-shadow: 0 8px 30px rgba(0,0,0,.15); transform: translateY(-1px); }

/* ── NAVIGATION ───────────────────────────────────────────── */
.lp-nav {
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,.06);
    position: sticky; top: 0; z-index: 100;
    transition: box-shadow .2s, background .2s;
}
html[data-theme="dark"] .lp-nav {
    background: rgba(12,18,16,.85);
    border-bottom-color: rgba(255,255,255,.06);
}
.lp-nav--scrolled {
    box-shadow: 0 1px 12px rgba(0,0,0,.08);
}
html[data-theme="dark"] .lp-nav--scrolled {
    box-shadow: 0 1px 12px rgba(0,0,0,.3);
}
.lp-nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.lp-brand {
    font-weight: 900;
    color: var(--lp-text-h);
    font-size: 1.55rem;
    text-decoration: none;
    letter-spacing: -0.6px;
    transition: opacity .15s;
}
.lp-brand:hover { opacity: .7; color: var(--lp-text-h); }
html[data-theme="dark"] .lp-brand { color: #fff; }

.lp-nav-links { display: flex; align-items: center; gap: 4px; }
.lp-nav-right { display: flex; align-items: center; gap: 8px; }

.lp-coming { font-size: 10px; background: var(--n-200); color: var(--n-500); padding: 2px 7px; border-radius: 99px; font-weight: 700; vertical-align: middle; margin-left: 4px; }
html[data-theme="dark"] .lp-coming { background: rgba(255,255,255,.1); color: var(--lp-text-muted); }

/* hamburger */
.lp-hamburger {
    display: none; background: none; border: none; padding: 8px;
    color: var(--lp-text); font-size: 18px; cursor: pointer;
}
/* mobile menu */
.lp-mobile-menu {
    display: none; flex-direction: column; gap: 4px;
    padding: 8px 24px 16px; background: var(--lp-bg);
    border-bottom: 1px solid var(--lp-border);
}
.lp-mobile-menu.show { display: flex; }
.lp-mobile-menu a {
    padding: 10px 0; font-size: 15px; font-weight: 600;
    color: var(--lp-text); text-decoration: none;
}
.lp-mobile-menu a:hover { color: var(--lf-600); }

/* theme toggle */
.lp-theme-btn {
    background: none; border: 1px solid var(--lp-border);
    width: 36px; height: 36px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--lp-text-sub); cursor: pointer; font-size: 14px;
    transition: border-color .15s, color .15s;
}
.lp-theme-btn:hover { border-color: var(--lf-500); color: var(--lf-500); }

@media (max-width: 768px) {
    .lp-nav-links { display: none; }
    .lp-hamburger { display: block; }
}

/* ── SECTION COMMONS ──────────────────────────────────────── */
.lp-section { padding: 96px 0; }
.lp-section--alt { background: var(--lp-bg-alt); }
.lp-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.lp-eyebrow {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--lf-600); margin-bottom: 12px;
}
.lp-heading {
    font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800;
    color: var(--lp-text-h); letter-spacing: -0.02em; line-height: 1.2;
}
.lp-subheading {
    color: var(--lp-text-sub); font-size: 1rem; max-width: 540px;
    margin: 12px auto 0; line-height: 1.65;
}

/* ── ANIMATION ────────────────────────────────────────────── */
.lp-animate {
    opacity: 0; transform: translateY(24px);
    transition: opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1);
}
.lp-animate.lp-visible { opacity: 1; transform: translateY(0); }

/* ── HERO ─────────────────────────────────────────────────── */
.lp-hero {
    padding: 100px 0 80px;
    background: linear-gradient(160deg, var(--lf-50) 0%, var(--lp-bg) 50%, var(--n-50) 100%);
    position: relative; overflow: hidden;
}
html[data-theme="dark"] .lp-hero {
    background: linear-gradient(160deg, rgba(4,120,87,.08) 0%, var(--lp-bg) 50%, var(--lp-bg-alt) 100%);
}
.lp-hero::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,.08) 0%, transparent 70%);
    pointer-events: none;
}
.lp-hero-badge {
    background: var(--lf-100); color: var(--lf-700);
    font-size: 13px; font-weight: 700; padding: 6px 16px;
    border-radius: 99px; display: inline-flex; align-items: center; gap: 6px;
    margin-bottom: 24px;
}
html[data-theme="dark"] .lp-hero-badge { background: rgba(16,185,129,.12); color: var(--lf-400); }

.lp-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900;
    line-height: 1.08; letter-spacing: -0.03em; color: var(--lp-text-h);
    max-width: 560px;
}
.lp-hero h1 .lp-grad {
    background: linear-gradient(135deg, var(--lf-600), var(--lf-400));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-hero-sub {
    color: var(--lp-text-sub); max-width: 480px; font-size: 1.05rem; line-height: 1.7; margin-top: 16px;
}
.lp-hero-checks {
    display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px;
}
.lp-hero-checks span {
    font-size: 13px; color: var(--lp-text-sub); font-weight: 500;
    display: inline-flex; align-items: center; gap: 6px;
}
.lp-hero-checks i { color: var(--lf-500); font-size: 11px; }

/* code block */
.lp-code-block {
    background: var(--n-900); color: var(--n-300);
    border-radius: 14px; padding: 28px; position: relative; overflow: hidden;
    font-family: var(--font-mono); font-size: 13px; line-height: 1.8;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.lp-code-block::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 38px;
    background: var(--n-800); border-radius: 14px 14px 0 0;
}
.lp-code-dots { position: relative; z-index: 1; display: flex; gap: 6px; margin-bottom: 18px; }
.lp-code-dots span { width: 10px; height: 10px; border-radius: 50%; }
.lp-d1 { background: #ef4444; } .lp-d2 { background: #f59e0b; } .lp-d3 { background: #22c55e; }
.lp-syn-tag { color: #7dd3fc; } .lp-syn-attr { color: #fcd34d; }
.lp-syn-val { color: #86efac; } .lp-syn-cm { color: #475569; }
.lp-syn-fn  { color: #c4b5fd; } .lp-syn-str { color: #86efac; }
.lp-syn-kw  { color: #f472b6; }

.lp-copy-btn {
    position: absolute; top: 8px; right: 12px; z-index: 2;
    background: var(--n-700); color: var(--n-400);
    border: none; border-radius: 5px; padding: 3px 12px;
    font-size: 11px; font-family: var(--font-sans); cursor: pointer;
}
.lp-copy-btn:hover { background: var(--n-600); color: var(--n-200); }

/* ── LOGOS BAR ────────────────────────────────────────────── */
.lp-logos {
    padding: 48px 0; border-bottom: 1px solid var(--lp-border);
}
.lp-logos-label {
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--lp-text-muted); margin-bottom: 20px;
}
.lp-logos-row {
    display: flex; align-items: center; justify-content: center;
    gap: 48px; flex-wrap: wrap;
}
.lp-logo-slot {
    width: 120px; height: 40px; border-radius: 8px;
    background: var(--lp-bg-alt); border: 1px dashed var(--lp-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: var(--lp-text-muted); font-weight: 600;
}

/* ── FEATURES ─────────────────────────────────────────────── */
.lp-feat-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 992px) { .lp-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lp-feat-grid { grid-template-columns: 1fr; } }

.lp-feat-card {
    background: var(--lp-card-bg); border: 1px solid var(--lp-border);
    border-radius: 14px; padding: 28px 24px; height: 100%;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.lp-feat-card:hover {
    border-color: var(--lf-200); transform: translateY(-2px);
    box-shadow: var(--lp-card-hover-shadow);
}
html[data-theme="dark"] .lp-feat-card:hover { border-color: rgba(16,185,129,.25); }

.lp-feat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 16px;
}
.lp-feat-card h3 { font-size: 15px; font-weight: 700; color: var(--lp-text-h); margin: 0 0 8px; }
.lp-feat-card p { font-size: 14px; color: var(--lp-text-sub); line-height: 1.65; margin: 0; }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.lp-steps-row {
    display: flex; gap: 32px; justify-content: center; margin-top: 48px;
}
@media (max-width: 768px) { .lp-steps-row { flex-direction: column; gap: 0; } }

.lp-step {
    flex: 1; max-width: 320px; text-align: center; position: relative;
}
.lp-step-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--lf-600); color: #fff;
    font-weight: 800; font-size: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 20px; position: relative; z-index: 1;
}
.lp-step h3 { font-size: 16px; font-weight: 700; color: var(--lp-text-h); margin: 0 0 8px; }
.lp-step p { font-size: 14px; color: var(--lp-text-sub); line-height: 1.65; margin: 0; }

/* connector line between steps */
.lp-step:not(:last-child)::after {
    content: ''; position: absolute; top: 26px;
    left: calc(50% + 36px); width: calc(100% - 72px + 32px);
    height: 2px; background: var(--lf-200);
}
html[data-theme="dark"] .lp-step:not(:last-child)::after { background: rgba(16,185,129,.15); }
@media (max-width: 768px) {
    .lp-step:not(:last-child)::after { display: none; }
    .lp-step { max-width: none; padding-bottom: 40px; }
}

/* ── DEVELOPER SECTION ────────────────────────────────────── */
.lp-dev-grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start;
}
@media (max-width: 768px) { .lp-dev-grid { grid-template-columns: 1fr; } }

.lp-code-section { position: relative; }
.lp-code-tabs {
    display: flex; gap: 2px; margin-bottom: -1px; position: relative; z-index: 1;
}
.lp-tab-btn {
    padding: 10px 20px; font-size: 13px; font-weight: 600;
    font-family: var(--font-sans);
    background: var(--lp-bg-alt); color: var(--lp-text-sub);
    border: 1px solid var(--lp-border); border-bottom: none;
    border-radius: 10px 10px 0 0; cursor: pointer;
    transition: background .15s, color .15s;
}
.lp-tab-btn.active {
    background: var(--n-900); color: var(--n-300);
    border-color: var(--n-900);
}
.lp-tab-btn:hover:not(.active) { color: var(--lf-600); }

.lp-tab-pane { display: none; }
.lp-tab-pane.active { display: block; }
.lp-tab-pane .lp-code-block { border-radius: 0 14px 14px 14px; }
.lp-tab-pane .lp-code-block::before { border-radius: 0; }

.lp-dev-bullets { list-style: none; padding: 0; margin: 0; }
.lp-dev-bullets li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 0; font-size: 15px; color: var(--lp-text);
    line-height: 1.55;
}
.lp-dev-bullets i {
    color: var(--lf-500); font-size: 13px; margin-top: 4px; flex-shrink: 0;
}

/* ── PRICING ──────────────────────────────────────────────── */
.lp-price-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 992px) { .lp-price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lp-price-grid { grid-template-columns: 1fr; } }

.lp-price-card {
    background: var(--lp-card-bg); border: 1.5px solid var(--lp-border);
    border-radius: 16px; padding: 32px 28px; display: flex;
    flex-direction: column; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.lp-price-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
html[data-theme="dark"] .lp-price-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.3); }

.lp-price-card.lp-featured {
    border-color: var(--lf-500); position: relative;
    box-shadow: 0 8px 32px rgba(5,150,105,.12);
}
.lp-price-card.lp-featured::before {
    content: 'Most Popular'; position: absolute; top: -13px; left: 50%;
    transform: translateX(-50%); background: var(--lf-600); color: #fff;
    font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 99px;
}
.lp-price-name { font-size: 16px; font-weight: 700; color: var(--lp-text); margin-bottom: 8px; }
.lp-price-amount { font-size: 2.5rem; font-weight: 900; color: var(--lp-text-h); letter-spacing: -0.03em; }
.lp-price-period { font-size: 14px; color: var(--lp-text-muted); font-weight: 500; }

.lp-price-list { list-style: none; padding: 0; margin: 24px 0; flex: 1; }
.lp-price-list li {
    font-size: 13.5px; color: var(--lp-text); padding: 7px 0;
    display: flex; align-items: center; gap: 10px;
}
.lp-price-list li i { color: var(--lf-500); font-size: 11px; flex-shrink: 0; }

.lp-price-incl {
    text-align: center; font-size: 14px; color: var(--lp-text-sub); margin-top: 32px;
    max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.lp-faq-list { max-width: 720px; margin: 0 auto; }
.lp-faq-item {
    border: 1px solid var(--lp-border); border-radius: 12px;
    margin-bottom: 12px; overflow: hidden;
    transition: border-color .2s;
}
.lp-faq-item:hover { border-color: rgba(16,185,129,.2); }
.lp-faq-q {
    padding: 18px 24px; display: flex; justify-content: space-between;
    align-items: center; cursor: pointer; font-weight: 600;
    font-size: 15px; color: var(--lp-text-h); background: var(--lp-card-bg);
    border: none; width: 100%; text-align: left; font-family: var(--font-sans);
}
.lp-faq-q i {
    color: var(--lp-text-muted); font-size: 12px;
    transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.lp-faq-item.open .lp-faq-q i { transform: rotate(180deg); }
.lp-faq-a {
    max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.16,1,.3,1);
}
.lp-faq-item.open .lp-faq-a { max-height: 300px; }
.lp-faq-a-inner {
    padding: 0 24px 20px; font-size: 14px; color: var(--lp-text-sub); line-height: 1.7;
}

/* ── CTA SECTION ──────────────────────────────────────────── */
.lp-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--lf-700) 0%, var(--lf-900) 100%);
    text-align: center;
}
.lp-cta h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 8px; }
.lp-cta p { color: rgba(255,255,255,.6); font-size: 1rem; margin: 0 0 28px; }
.lp-cta-contact { font-size: 14px; color: rgba(255,255,255,.45); margin-top: 20px; }
.lp-cta-contact a { color: rgba(255,255,255,.65); text-decoration: underline; }

/* ── FOOTER ───────────────────────────────────────────────── */
.lp-footer {
    background: var(--n-900); padding: 56px 0 32px; color: var(--n-400);
}
html[data-theme="dark"] .lp-footer { background: #080e0c; }
.lp-footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 768px) { .lp-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .lp-footer-grid { grid-template-columns: 1fr; } }

.lp-footer-brand {
    font-weight: 800; font-size: 1.15rem; color: #fff;
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.lp-footer-brand i { color: var(--lf-500); }
.lp-footer-desc { font-size: 13px; color: var(--n-500); line-height: 1.7; max-width: 280px; }

.lp-footer-col h4 {
    font-size: 13px; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 0.04em;
    margin: 0 0 16px;
}
.lp-footer-col a {
    display: block; color: var(--n-400); text-decoration: none;
    font-size: 13px; padding: 4px 0; transition: color .15s;
}
.lp-footer-col a:hover { color: var(--lf-400); }

.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px; margin-top: 48px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--n-600);
}
.lp-footer-social { display: flex; gap: 16px; }
.lp-footer-social a {
    color: var(--n-500); font-size: 16px; text-decoration: none; transition: color .15s;
}
.lp-footer-social a:hover { color: var(--lf-400); }

/* ── STATS STRIP ──────────────────────────────────────────── */
.lp-stats-strip {
    padding: 40px 0;
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    background: var(--lp-bg-alt);
}
.lp-stats-grid {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0;
}
.lp-stat-item {
    flex: 1 1 180px; text-align: center;
    padding: 20px 24px;
    border-right: 1px solid var(--lp-border);
}
.lp-stat-item:last-child { border-right: none; }
.lp-stat-num {
    font-size: 2rem; font-weight: 900; color: var(--lf-600);
    letter-spacing: -0.03em; line-height: 1;
    margin-bottom: 6px;
}
.lp-stat-label {
    font-size: 12px; font-weight: 600; color: var(--lp-text-sub);
    text-transform: uppercase; letter-spacing: 0.04em;
}
html[data-theme="dark"] .lp-stat-num { color: var(--lf-400); }
@media (max-width: 768px) {
    .lp-stat-item { border-right: none; border-bottom: 1px solid var(--lp-border); flex-basis: 45%; }
    .lp-stat-item:last-child { border-bottom: none; }
}

/* ── COMPARISON TABLE ─────────────────────────────────────── */
.lp-compare-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--lp-border);
    box-shadow: 0 4px 24px rgba(0,0,0,.04);
}
html[data-theme="dark"] .lp-compare-wrap {
    box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.lp-compare-table {
    width: 100%; border-collapse: collapse;
    font-size: 14px; min-width: 640px;
}
.lp-compare-table thead tr {
    background: var(--lp-bg-alt);
    border-bottom: 2px solid var(--lp-border);
}
.lp-compare-table th {
    padding: 18px 20px; font-weight: 700;
    color: var(--lp-text-h); text-align: center;
    font-size: 14px;
}
.lp-compare-table th.lp-compare-feature {
    text-align: left; width: 32%;
}
.lp-compare-table th.lp-compare-us {
    background: rgba(16,185,129,.06);
    border-left: 2px solid var(--lf-500);
    border-right: 2px solid var(--lf-500);
}
html[data-theme="dark"] .lp-compare-table th.lp-compare-us {
    background: rgba(16,185,129,.1);
}
.lp-compare-us-badge {
    display: inline-block;
    background: var(--lf-600); color: #fff;
    font-size: 13px; font-weight: 800;
    padding: 4px 14px; border-radius: 99px;
}
.lp-compare-table tbody tr {
    border-bottom: 1px solid var(--lp-border);
    transition: background .12s;
}
.lp-compare-table tbody tr:last-child { border-bottom: none; }
.lp-compare-table tbody tr:hover { background: var(--lp-bg-alt); }
.lp-compare-table td {
    padding: 14px 20px; text-align: center;
    color: var(--lp-text);
}
.lp-compare-table td:first-child {
    text-align: left; font-weight: 500;
    color: var(--lp-text-h);
}
.lp-compare-table td.lp-compare-us {
    background: rgba(16,185,129,.04);
    border-left: 2px solid var(--lf-500);
    border-right: 2px solid var(--lf-500);
    font-weight: 600;
}
.lp-compare-val { font-size: 13px; color: var(--lp-text-sub); }
.lp-compare-table td.lp-compare-us.lp-compare-val { color: var(--lp-text-h); }
.lp-green-val { color: var(--lf-600) !important; font-weight: 800 !important; }
html[data-theme="dark"] .lp-green-val { color: var(--lf-400) !important; }
.lp-yes { color: var(--lf-500); font-size: 16px; }
.lp-no  { color: #ef4444; font-size: 16px; }
.lp-compare-note {
    text-align: center; font-size: 12px;
    color: var(--lp-text-muted); margin-top: 16px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.lp-testimonials-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
@media (max-width: 900px) { .lp-testimonials-grid { grid-template-columns: 1fr; } }
@media (min-width: 600px) and (max-width: 900px) { .lp-testimonials-grid { grid-template-columns: 1fr 1fr; } }

.lp-testimonial-card {
    background: var(--lp-card-bg);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    padding: 28px;
    display: flex; flex-direction: column; gap: 16px;
    box-shadow: var(--lp-card-shadow);
    transition: box-shadow .2s, transform .2s;
}
.lp-testimonial-card:hover {
    box-shadow: var(--lp-card-hover-shadow);
    transform: translateY(-2px);
}
.lp-testimonial-stars { color: #f59e0b; font-size: 13px; display: flex; gap: 3px; }
.lp-testimonial-text {
    font-size: 14px; line-height: 1.7;
    color: var(--lp-text); flex: 1;
    font-style: italic;
}
.lp-testimonial-author {
    display: flex; align-items: center; gap: 12px;
}
.lp-testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--lf-500), var(--lf-700));
    color: #fff; font-weight: 800; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.lp-testimonial-name {
    font-weight: 700; font-size: 14px; color: var(--lp-text-h);
}
.lp-testimonial-role {
    font-size: 12px; color: var(--lp-text-muted);
}
