/* ============================================================
   ChannelPilot — Premium Light Landing Page
   ============================================================ */

:root {
    --white:        #ffffff;
    --bg:           #f8f9fc;
    --bg-2:         #f1f3f9;
    --surface:      #ffffff;
    --surface-2:    #f8f9fc;
    --border:       #e4e7ef;
    --border-2:     #d1d5e8;
    --text:         #0f172a;
    --text-2:       #475569;
    --text-3:       #94a3b8;
    --indigo:       #6366f1;
    --indigo-d:     #4f46e5;
    --indigo-l:     #818cf8;
    --violet:       #8b5cf6;
    --violet-l:     #a78bfa;
    --cyan:         #06b6d4;
    --green:        #10b981;
    --amber:        #f59e0b;
    --grad:         linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --grad-r:       linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --grad-text:    linear-gradient(135deg, #6366f1 0%, #8b5cf6 60%, #06b6d4 100%);
    --glow-i:       rgba(99, 102, 241, 0.18);
    --glow-v:       rgba(139, 92, 246, 0.18);
    --shadow-sm:    0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow:       0 4px 16px rgba(15, 23, 42, 0.08), 0 1px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg:    0 12px 40px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-xl:    0 24px 64px rgba(15, 23, 42, 0.12), 0 8px 24px rgba(15, 23, 42, 0.06);
    --r:            10px;
    --r-lg:         16px;
    --r-xl:         24px;
    --r-2xl:        32px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body.landing {
    background: var(--white);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Layout ──────────────────────────────────────────────── */
.l-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}

@media (max-width: 640px) {
    .l-container { padding: 0 16px; }
}

.l-section {
    padding: 72px 0;
    position: relative;
}

.l-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.l-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--indigo);
    margin-bottom: 14px;
}

.l-section-label::before,
.l-section-label::after {
    content: '';
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--indigo-l);
    opacity: 0.5;
}

.l-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 16px;
}

.l-section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-2);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.l-grad-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ── Navigation ──────────────────────────────────────────── */
.l-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    background: rgba(255, 255, 255, 0.88);
}

.l-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}

.l-nav-logo {
    font-size: 1.125rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

.l-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.l-nav-links a {
    display: block;
    padding: 6px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}

.l-nav-links a:hover {
    color: var(--text);
    background: var(--bg);
}

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

.l-nav-signin {
    padding: 7px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    border-radius: var(--r);
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}

.l-nav-signin:hover {
    color: var(--text);
    background: var(--bg);
}

.l-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--grad);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--r);
    text-decoration: none;
    transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s;
    white-space: nowrap;
    box-shadow: 0 2px 12px var(--glow-i);
}

.l-nav-cta:hover {
    opacity: 0.9;
    box-shadow: 0 4px 20px var(--glow-i);
    transform: translateY(-1px);
    color: #fff;
}

/* ── Buttons ─────────────────────────────────────────────── */
.l-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    background: var(--grad);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--r-lg);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    box-shadow: 0 4px 20px var(--glow-i);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.l-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--glow-i);
    opacity: 0.92;
    color: #fff;
}

.l-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    border: 1.5px solid var(--border-2);
    color: var(--text-2);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--r-lg);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.l-btn-secondary:hover {
    border-color: var(--indigo);
    color: var(--indigo);
    background: rgba(99, 102, 241, 0.04);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

/* ── Hero ────────────────────────────────────────────────── */
.l-hero {
    position: relative;
    padding: 96px 0 80px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbff 0%, #f8f9fc 100%);
}

.l-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.l-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.l-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px 5px 10px;
    background: rgba(99, 102, 241, 0.07);
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--indigo);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.l-hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--indigo);
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.5);
    flex-shrink: 0;
    animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(99, 102, 241, 0.5); }
    50% { opacity: 0.5; box-shadow: 0 0 4px rgba(99, 102, 241, 0.2); }
}

.l-hero-title {
    font-size: clamp(2.75rem, 6.5vw, 5.25rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.05em;
    color: var(--text);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.l-hero-title-accent {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.l-hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.1875rem);
    color: var(--text-2);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.78;
    position: relative;
    z-index: 1;
}

.l-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}

.l-hero-trust {
    font-size: 0.84375rem;
    color: var(--text-3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 72px;
    position: relative;
    z-index: 1;
}

.l-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.l-hero-trust-item strong {
    color: var(--text);
    font-weight: 600;
}

.l-trust-sep {
    width: 1px;
    height: 14px;
    background: var(--border-2);
}

/* ── Hero Mockup ──────────────────────────────────────────── */
.l-hero-visual {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.l-mockup {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(99, 102, 241, 0.08),
        var(--shadow-xl),
        0 0 60px rgba(99, 102, 241, 0.06);
    text-align: left;
}

.l-mockup-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.l-mockup-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.l-mockup-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.l-mockup-dots .dot-r { background: #ff5f57; }
.l-mockup-dots .dot-y { background: #febc2e; }
.l-mockup-dots .dot-g { background: #28c840; }

.l-mockup-wtitle {
    flex: 1;
    font-size: 0.78125rem;
    color: var(--text-3);
    text-align: center;
    font-weight: 500;
}

.l-mockup-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 600;
}

.l-mockup-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
    animation: pulse-dot 2s ease-in-out infinite;
}

.l-mockup-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.l-mockup-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.l-mockup-stat {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 10px 12px;
    text-align: center;
}

.l-mockup-stat.accent .l-mockup-stat-val { color: var(--green); }

.l-mockup-stat-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 3px;
}

.l-mockup-stat-lbl {
    font-size: 0.6875rem;
    color: var(--text-3);
}

.l-mockup-divider {
    height: 1px;
    background: var(--border);
}

.l-mockup-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-3);
}

.l-mockup-worker {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.l-mockup-worker:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 2px 12px var(--glow-i);
}

.l-mockup-worker-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.l-mockup-worker-icon.cyan {
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.12);
}

.l-mockup-worker-info { flex: 1; min-width: 0; }

.l-mockup-worker-name {
    font-size: 0.84375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.l-mockup-worker-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--text-3);
}

.l-status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.l-status-dot.green { background: var(--green); box-shadow: 0 0 5px rgba(16, 185, 129, 0.5); }
.l-status-dot.cyan  { background: var(--cyan);  box-shadow: 0 0 5px rgba(6, 182, 212, 0.5); }

.l-mockup-worker-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    color: var(--indigo);
    flex-shrink: 0;
}

.l-mockup-worker-badge.cyan {
    background: rgba(6, 182, 212, 0.08);
    border-color: rgba(6, 182, 212, 0.15);
    color: var(--cyan);
}

.l-mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 48px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 8px 12px;
}

.l-chart-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: var(--border-2);
    transition: background 0.2s;
}

.l-chart-bar.active {
    background: linear-gradient(to top, #6366f1, #8b5cf6);
}

/* Floating chips */
.l-hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.78125rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.l-hero-float-1 {
    top: 40px;
    left: -60px;
    animation: float-1 4s ease-in-out infinite;
}

.l-hero-float-2 {
    top: 100px;
    right: -60px;
    animation: float-2 4s ease-in-out infinite 1.3s;
}

.l-hero-float-3 {
    bottom: 60px;
    left: -40px;
    animation: float-1 4s ease-in-out infinite 2.5s;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ── Logos Strip ──────────────────────────────────────────── */
.l-logos-strip {
    padding: 32px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.l-logos-label {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-3);
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.l-logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.l-logo-chip {
    padding: 6px 18px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-3);
    background: var(--bg);
    transition: all 0.15s;
}

.l-logo-chip:hover {
    color: var(--indigo);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(99, 102, 241, 0.04);
}

/* ── Stats Strip ─────────────────────────────────────────── */
.l-stats-strip {
    padding: 60px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.l-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.l-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.l-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
    flex-shrink: 0;
}

.l-stat-value {
    display: block;
    font-size: 2.75rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.l-stat-label {
    font-size: 0.875rem;
    color: var(--text-3);
    font-weight: 500;
}

/* ── Features Bento ──────────────────────────────────────── */
.l-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.l-bcard {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
}

.l-bcard:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.08);
    transform: translateY(-3px);
}

.l-bcard.wide { grid-column: span 2; }

.l-bcard.ai {
    background: linear-gradient(140deg, #fafbff, #f5f3ff);
}

.l-bcard-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--indigo);
    margin-bottom: 12px;
}

.l-bcard-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.35;
}

.l-bcard-desc {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 20px;
}

.l-bcard-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.l-bcard-icon.green  { background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.15); }
.l-bcard-icon.blue   { background: rgba(99, 102, 241, 0.08); border: 1px solid rgba(99, 102, 241, 0.15); }
.l-bcard-icon.amber  { background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.15); }
.l-bcard-icon.violet { background: rgba(139, 92, 246, 0.08); border: 1px solid rgba(139, 92, 246, 0.15); }

.l-bcard-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    margin-top: auto;
}

.l-bcard-tag.violet {
    background: rgba(139, 92, 246, 0.08);
    color: var(--violet);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.l-bcard-tag.cyan {
    background: rgba(6, 182, 212, 0.08);
    color: var(--cyan);
    border: 1px solid rgba(6, 182, 212, 0.15);
}

.l-bcard-tag.green {
    background: rgba(16, 185, 129, 0.08);
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.l-bcard-tag.blue {
    background: rgba(99, 102, 241, 0.08);
    color: var(--indigo);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.l-bcard-tag.amber {
    background: rgba(245, 158, 11, 0.08);
    color: var(--amber);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

/* Schedule preview */
.l-bcard-schedule {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.l-bcard-srow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78125rem;
}

.l-srow-time {
    color: var(--text-3);
    width: 38px;
    flex-shrink: 0;
    font-weight: 500;
}

.l-srow-bar {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-2);
    overflow: hidden;
}

.l-srow-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--grad);
}

.l-srow-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    white-space: nowrap;
    width: 84px;
    text-align: right;
}

.l-srow-tag.done    { color: var(--green); }
.l-srow-tag.pending { color: var(--text-3); }

/* AI Chat Demo */
.l-bcard-ai-demo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
    padding: 14px;
    background: var(--bg);
    border-radius: var(--r);
    border: 1px solid var(--border);
}

.l-ai-bubble {
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.8125rem;
    line-height: 1.5;
    max-width: 85%;
}

.l-ai-bubble.user {
    background: var(--grad);
    color: white;
    align-self: flex-end;
    border-radius: 10px 10px 2px 10px;
}

.l-ai-bubble.ai {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-2);
    align-self: flex-start;
    border-radius: 10px 10px 10px 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.l-ai-typing {
    display: flex;
    gap: 3px;
    align-items: center;
}

.l-ai-typing span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--indigo);
    opacity: 0.4;
    animation: typing 1.2s ease-in-out infinite;
}

.l-ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.l-ai-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-3px); }
}

/* ── How It Works ────────────────────────────────────────── */
.l-steps-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.l-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.l-step {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.l-step:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow);
}

.l-step-num {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    flex-shrink: 0;
    width: 52px;
}

.l-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.l-step-desc {
    font-size: 0.875rem;
    color: var(--text-2);
    line-height: 1.7;
}

/* ── Writing Styles ──────────────────────────────────────── */
.l-styles-section {
    background: var(--white);
}

.l-styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.l-style-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: default;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.l-style-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.07);
    transform: translateY(-2px);
}

.l-style-icon {
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 4px;
}

.l-style-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
}

.l-style-desc {
    font-size: 0.8125rem;
    color: var(--text-2);
    line-height: 1.6;
}

.l-style-hidden { display: none; }
.l-style-hidden.l-visible { display: flex; }

.l-styles-toggle-wrap {
    text-align: center;
    margin-top: 28px;
}

/* ── Testimonials ────────────────────────────────────────── */
.l-testi-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.l-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.l-tcard {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.l-tcard:hover {
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.l-tcard.featured {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.08), var(--shadow);
}

.l-tcard.featured:hover {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.12), var(--shadow-lg);
    transform: translateY(-4px);
}

.l-tcard-stars {
    color: #f59e0b;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.l-tcard-quote {
    font-size: 0.9375rem;
    color: var(--text-2);
    line-height: 1.72;
    margin-bottom: 24px;
}

.l-tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

.l-tcard-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.l-tcard-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.l-tcard-role {
    font-size: 0.8rem;
    color: var(--text-3);
    margin-top: 2px;
}

/* ── Pricing ─────────────────────────────────────────────── */
.l-pricing-section {
    background: var(--white);
}

.l-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.l-toggle-lbl {
    font-size: 0.9rem;
    color: var(--text-3);
    cursor: pointer;
    transition: color 0.2s;
    font-weight: 500;
}

.l-toggle-lbl.active { color: var(--text); }

.l-toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.l-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.l-toggle-track {
    position: absolute;
    inset: 0;
    background: var(--border-2);
    border-radius: 100px;
    transition: background 0.25s;
}

.l-toggle-switch input:checked + .l-toggle-track {
    background: var(--grad);
}

.l-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.l-toggle-switch input:checked ~ .l-toggle-thumb {
    transform: translateX(20px);
}

.l-annual-save {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--green);
    border-radius: 100px;
    letter-spacing: 0.02em;
}

.l-plans {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    align-items: start;
}

.l-plan {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    position: relative;
}

.l-plan:hover {
    border-color: var(--border-2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.l-plan.featured {
    border-color: var(--indigo);
    border-width: 2px;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.1), var(--shadow-lg);
    padding: 30px 24px;
}

.l-plan.featured:hover {
    border-color: var(--indigo-d);
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.15), 0 20px 60px rgba(99, 102, 241, 0.12);
    transform: translateY(-4px);
}

.l-plan.dark {
    background: linear-gradient(160deg, #1e1b4b, #0f172a);
    border-color: rgba(255,255,255,0.08);
}

.l-plan.dark:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 16px 48px rgba(245, 158, 11, 0.1), 0 4px 12px rgba(0,0,0,0.3);
}

.l-plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px var(--glow-i);
}

.l-plan-tier {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-3);
    margin-bottom: 10px;
}

.l-plan-tier.indigo { color: var(--indigo); }
.l-plan-tier.violet { color: var(--violet); }
.l-plan-tier.amber  { color: var(--amber); }

.l-plan-price-row {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 6px;
    line-height: 1;
}

.l-plan-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.l-plan-currency.dark { color: #e2e8f0; }

.l-plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--text);
    line-height: 1;
}

.l-plan-price.dark { color: #f8fafc; }

.l-plan-period {
    font-size: 0.875rem;
    color: var(--text-3);
    font-weight: 400;
    margin-bottom: 6px;
    margin-left: 2px;
}

.l-plan-period.dark { color: #64748b; }

.l-plan-desc {
    font-size: 0.8125rem;
    color: var(--text-3);
    margin-bottom: 6px;
    line-height: 1.5;
}

.l-plan-desc.dark { color: #64748b; }

.l-plan-billing {
    font-size: 0.75rem;
    color: var(--indigo);
    min-height: 18px;
    margin-bottom: 18px;
    transition: all 0.2s;
    font-weight: 500;
}

.l-plan-billing.dark { color: var(--amber); }

.l-plan-features {
    list-style: none;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.l-plan-features li {
    font-size: 0.8125rem;
    color: var(--text-2);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.l-plan-features li::before {
    content: '✓';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.6rem;
    color: var(--indigo);
    font-weight: 800;
    margin-top: 1px;
}

.l-plan-features.dark li { color: #94a3b8; }

.l-plan-features.dark li::before {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
    color: var(--amber);
}

.l-feature-dim { opacity: 0.55; }

.l-plan-btn {
    display: block;
    width: 100%;
    padding: 11px;
    border-radius: var(--r);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.l-plan-btn.outline {
    background: transparent;
    border: 1.5px solid var(--border-2);
    color: var(--text-2);
}

.l-plan-btn.outline:hover {
    background: var(--bg);
    border-color: var(--text-2);
    color: var(--text);
}

.l-plan-btn.indigo-outline {
    background: rgba(99, 102, 241, 0.06);
    border: 1.5px solid rgba(99, 102, 241, 0.25);
    color: var(--indigo);
}

.l-plan-btn.indigo-outline:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--indigo);
}

.l-plan-btn.filled {
    background: var(--grad);
    color: white;
    box-shadow: 0 4px 16px var(--glow-i);
}

.l-plan-btn.filled:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px var(--glow-i);
    color: white;
}

.l-plan-btn.violet-outline {
    background: rgba(139, 92, 246, 0.06);
    border: 1.5px solid rgba(139, 92, 246, 0.25);
    color: var(--violet);
}

.l-plan-btn.violet-outline:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--violet);
}

.l-plan-btn.amber {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #1e1b4b;
    font-weight: 700;
}

.l-plan-btn.amber:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.l-pricing-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-3);
    margin-top: 32px;
}

.l-pricing-note a {
    color: var(--indigo);
    text-decoration: none;
    font-weight: 500;
}

.l-pricing-note a:hover { text-decoration: underline; }

/* ── FAQ ─────────────────────────────────────────────────── */
.l-faq {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.l-faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.l-faq-item:hover {
    border-color: var(--border-2);
}

.l-faq-item.open {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 2px 16px rgba(99, 102, 241, 0.06);
}

.l-faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    gap: 16px;
    font-family: inherit;
    transition: color 0.15s;
}

.l-faq-btn:hover { color: var(--indigo); }

.l-faq-item.open .l-faq-btn { color: var(--indigo); }

.l-faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.2s, border-color 0.2s, color 0.2s;
    font-size: 0.875rem;
    color: var(--text-3);
    font-weight: 400;
    line-height: 1;
}

.l-faq-item.open .l-faq-icon {
    transform: rotate(45deg);
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.25);
    color: var(--indigo);
}

.l-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.l-faq-item.open .l-faq-body {
    max-height: 300px;
}

.l-faq-answer {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.78;
}

/* ── Final CTA ───────────────────────────────────────────── */
.l-cta-section {
    padding: 80px 0 100px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.l-cta-inner {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.l-cta-inner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.l-cta-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--text);
    position: relative;
}

.l-cta-subtitle {
    font-size: 1.0625rem;
    color: var(--text-2);
    max-width: 460px;
    margin: 0 auto 36px;
    line-height: 1.72;
    position: relative;
}

.l-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
}

.l-cta-note {
    margin-top: 18px;
    font-size: 0.8125rem;
    color: var(--text-3);
    position: relative;
}

/* ── Footer ──────────────────────────────────────────────── */
.l-footer {
    border-top: 1px solid var(--border);
    background: var(--white);
    padding: 48px 0 32px;
}

.l-footer-top {
    display: flex;
    gap: 64px;
    margin-bottom: 40px;
}

.l-footer-brand {
    flex-shrink: 0;
}

.l-footer-logo {
    font-size: 1.125rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 8px;
}

.l-footer-tagline {
    font-size: 0.875rem;
    color: var(--text-3);
    max-width: 200px;
    line-height: 1.5;
}

.l-footer-cols {
    display: flex;
    gap: 64px;
    flex: 1;
}

.l-footer-col { min-width: 120px; }

.l-footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 14px;
}

.l-footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.l-footer-col a {
    font-size: 0.875rem;
    color: var(--text-3);
    text-decoration: none;
    transition: color 0.15s;
}

.l-footer-col a:hover { color: var(--text-2); }

.l-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.l-footer-copy {
    font-size: 0.8125rem;
    color: var(--text-3);
}

.l-footer-links {
    display: flex;
    gap: 20px;
}

.l-footer-links a {
    font-size: 0.8125rem;
    color: var(--text-3);
    text-decoration: none;
    transition: color 0.15s;
}

.l-footer-links a:hover { color: var(--text-2); }

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    .l-plans { grid-template-columns: repeat(3, 1fr); }
    .l-plan.dark { grid-column: span 3; }
}

@media (max-width: 1024px) {
    .l-bento { grid-template-columns: repeat(2, 1fr); }
    .l-bcard.wide { grid-column: span 2; }
    .l-stats-grid { gap: 0; }
}

@media (max-width: 900px) {
    .l-testi-grid      { grid-template-columns: 1fr; }
    .l-pricing-grid    { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .l-styles-grid     { grid-template-columns: repeat(2, 1fr); }
    .l-steps-grid      { grid-template-columns: 1fr; }
    .l-mockup-stats    { grid-template-columns: repeat(2, 1fr); }
    .l-footer-top      { flex-direction: column; gap: 32px; }
    .l-footer-cols     { gap: 32px; }
}

@media (max-width: 768px) {
    .l-plans { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .l-plan.dark { grid-column: span 1; }
    .l-cta-inner { padding: 52px 24px; border-radius: 20px; }
}

/* ── Mobile nav hamburger ───────────────────────────────── */
.l-nav-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 10px;
    color: #334155;
    transition: background 0.15s;
    flex-shrink: 0;
}
.l-nav-hamburger:hover { background: #f1f5f9; }
.l-nav-hamburger svg { display: block; }

@media (max-width: 1023px) {
    .l-nav-links     { display: none; }
    .l-nav-signin    { display: none; }
    .l-nav-cta       { display: none; }
    .l-nav-hamburger { display: flex; }
}

.l-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
}
.l-mobile-menu.open { display: block; }
.l-mobile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.5);
    backdrop-filter: blur(4px);
}
.l-mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: #fff;
    padding: 20px 0;
    box-shadow: -8px 0 40px rgba(0,0,0,.12);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.l-mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 16px;
    border-bottom: 1px solid #e2e8f0;
}
.l-mobile-panel-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f5f9;
    border-radius: 8px;
    cursor: pointer;
    color: #64748b;
    transition: background 0.15s;
}
.l-mobile-panel-close:hover { background: #e2e8f0; }
.l-mobile-nav-links {
    list-style: none;
    padding: 12px 12px;
    flex: 1;
}
.l-mobile-nav-links li a {
    display: block;
    padding: 11px 14px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.15s, color 0.15s;
}
.l-mobile-nav-links li a:hover { background: #f1f5f9; color: #0f172a; }
.l-mobile-actions {
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #e2e8f0;
}
.l-mobile-signin {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: background 0.15s;
}
.l-mobile-signin:hover { background: #f8fafc; }
.l-mobile-cta {
    display: block;
    text-align: center;
    padding: 11px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    box-shadow: 0 2px 12px rgba(99,102,241,.35);
    transition: opacity 0.2s;
}
.l-mobile-cta:hover { opacity: 0.9; color: #fff; }

@media (max-width: 640px) {
    .l-bento             { grid-template-columns: 1fr; }
    .l-bcard.wide        { grid-column: span 1; }
    .l-styles-grid       { grid-template-columns: 1fr; }
    .l-stats-grid        { flex-direction: column; gap: 32px; }
    .l-stat-divider      { width: 40px; height: 1px; }
    .l-hero              { padding: 52px 0 40px; }
    .l-section           { padding: 52px 0; }
    .l-hero-trust        { gap: 10px; }
    .l-trust-sep         { display: none; }
    .l-hero-float        { display: none; }
    .l-mockup-stats      { grid-template-columns: repeat(2, 1fr); }
    .l-footer-cols       { flex-direction: column; gap: 24px; }
}

/* ── Language Picker ─────────────────────────────────────────── */
.l-lang-picker {
    position: relative;
}
.l-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: background .15s, border-color .15s;
    white-space: nowrap;
}
.l-lang-btn:hover {
    background: #e8edf5;
    border-color: #c7d2fe;
    color: #4f46e5;
}
.l-lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(15,23,42,.12);
    padding: 6px;
    z-index: 1000;
    min-width: 120px;
}
.l-lang-picker.open .l-lang-menu { display: block; }
.l-lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: background .12s, color .12s;
    white-space: nowrap;
}
.l-lang-item:hover {
    background: #f1f5f9;
    color: #0f172a;
}
.l-lang-item.active {
    background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(139,92,246,.1));
    color: #4f46e5;
    font-weight: 700;
}
/* mobile lang picker — shown inside mobile panel */
.l-mobile-lang {
    padding: 16px 20px 8px;
    border-top: 1px solid #f1f5f9;
}
.l-mobile-lang-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px;
}
.l-mobile-lang-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.l-mobile-lang-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: background .12s;
}
.l-mobile-lang-item.active {
    background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(139,92,246,.12));
    border-color: #c7d2fe;
    color: #4f46e5;
    font-weight: 700;
}
