/* ═══════════════════════════════════════════════════
   FlowOp Landing v4 — Light Premium / Enterprise
   ═══════════════════════════════════════════════════ */

body.landing-page,
body.app-guest.landing-page {
    background: #ffffff !important;
    color: #0f172a;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.landing-page .app-footer { display: none; }

.ofx-landing {
    --blue:      #1d4ed8;
    --blue-light:#3b82f6;
    --blue-pale: #eff6ff;
    --navy:      #0f172a;
    --slate:     #334155;
    --muted:     #64748b;
    --border:    #e2e8f0;
    --border2:   #cbd5e1;
    --bg-soft:   #f8fafc;
    --bg-card:   #ffffff;
    --success:   #059669;
    --warning:   #d97706;
    --danger:    #dc2626;
    --radius:    10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
    --shadow:    0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
    --shadow-lg: 0 20px 60px rgba(15,23,42,0.12), 0 8px 24px rgba(15,23,42,0.06);
    --shadow-xl: 0 40px 100px rgba(15,23,42,0.15);
    --max:       1180px;
    --px:        clamp(20px, 5vw, 64px);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, 'Inter', sans-serif;
}

.ofx-landing * { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.l-nav {
    position: sticky; top: 0; z-index: 500;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 var(--px);
    height: 64px;
}
.l-brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 1.05rem;
    color: var(--navy); letter-spacing: -0.02em;
    flex-shrink: 0;
}
.l-logo {
    width: 36px; height: 36px; border-radius: 9px;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    display: grid; place-items: center;
    font-weight: 900; font-size: 0.78rem; color: #fff;
    box-shadow: 0 2px 8px rgba(29,78,216,0.35);
    flex-shrink: 0;
}
.l-menu {
    display: flex; gap: 2px; align-items: center; list-style: none;
}
.l-menu a {
    padding: 7px 14px; border-radius: 7px;
    font-size: 0.85rem; font-weight: 500; color: var(--slate);
    transition: color 0.15s, background 0.15s;
}
.l-menu a:hover { color: var(--navy); background: var(--bg-soft); }
.l-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

/* ── FLASH MESSAGES ── */
.flash, .alert {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: min(100%, 960px);
    margin: 18px auto 0;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid;
    font-size: 0.92rem;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.flash.success, .alert.success {
    background: #ecfdf5;
    border-color: rgba(16, 185, 129, 0.25);
    color: #047857;
}
.flash.error, .alert.error {
    background: #fef2f2;
    border-color: rgba(239, 68, 68, 0.25);
    color: #b91c1c;
}
.flash.info, .alert.info {
    background: #eff6ff;
    border-color: rgba(59, 130, 246, 0.25);
    color: #1d4ed8;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px; border-radius: 8px;
    font-size: 0.85rem; font-weight: 600;
    transition: all 0.18s; cursor: pointer;
    border: 1px solid transparent; font-family: inherit;
    white-space: nowrap; text-decoration: none;
}
.btn-primary {
    background: var(--blue); color: #fff;
    border-color: var(--blue);
    box-shadow: 0 2px 8px rgba(29,78,216,0.3);
}
.btn-primary:hover {
    background: #1e40af; border-color: #1e40af;
    box-shadow: 0 4px 16px rgba(29,78,216,0.4);
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent; color: var(--slate);
    border-color: var(--border2);
}
.btn-ghost:hover { background: var(--bg-soft); color: var(--navy); border-color: var(--border2); }
.btn-lg { padding: 13px 28px; font-size: 0.95rem; border-radius: 10px; }
.btn-xl { padding: 15px 36px; font-size: 1rem; border-radius: 10px; }
.l-ham { display: none; }

/* ── BADGE ── */
.l-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px; border-radius: 20px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.05em; text-transform: uppercase;
    background: var(--blue-pale);
    border: 1px solid rgba(29,78,216,0.15);
    color: var(--blue); margin-bottom: 20px;
}
.l-badge::before { content: '●'; font-size: 0.45rem; color: var(--blue); }

/* ── HERO ── */
.l-hero {
    padding: 72px var(--px) 0;
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 64px; align-items: center;
    min-height: calc(100vh - 64px);
    padding-bottom: 0;
}
.hero-left { padding-bottom: 72px; }

.hero-left h1 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800; line-height: 1.12;
    letter-spacing: -0.04em; color: var(--navy);
    margin-bottom: 20px;
}
.hero-left h1 .accent {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.05rem; color: var(--muted);
    line-height: 1.75; max-width: 460px; margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    padding-top: 24px; border-top: 1px solid var(--border);
}
.trust-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.8rem; color: var(--muted); font-weight: 500;
}
.trust-check {
    width: 18px; height: 18px; border-radius: 50%;
    background: #d1fae5; border: 1px solid #a7f3d0;
    display: grid; place-items: center;
    font-size: 0.55rem; color: var(--success);
    flex-shrink: 0; font-weight: 900;
}

/* ── DASHBOARD MOCKUP ── */
.hero-right {
    position: relative;
    padding-bottom: 0;
    align-self: flex-end;
}
.mockup-browser {
    background: #fff;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    border: 1px solid var(--border);
    border-bottom: none;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
}
.mockup-bar {
    background: #f1f5f9;
    border-bottom: 1px solid var(--border);
    padding: 10px 14px;
    display: flex; align-items: center; gap: 10px;
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span {
    width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #fc8181; }
.mockup-dots span:nth-child(2) { background: #fbbf24; }
.mockup-dots span:nth-child(3) { background: #6ee7b7; }
.mockup-url {
    flex: 1; background: #fff; border: 1px solid var(--border);
    border-radius: 5px; padding: 4px 10px;
    font-size: 0.7rem; color: var(--muted);
    font-family: monospace;
}
.mockup-body {
    display: grid; grid-template-columns: 180px 1fr;
    height: 420px; overflow: hidden;
}
.mockup-sidebar {
    background: #0f172a;
    padding: 16px 12px;
    display: flex; flex-direction: column; gap: 4px;
}
.mock-brand {
    display: flex; align-items: center; gap: 8px;
    padding: 8px; margin-bottom: 12px;
}
.mock-brand-icon {
    width: 26px; height: 26px; border-radius: 6px;
    background: #1d4ed8;
    display: grid; place-items: center;
    font-size: 0.6rem; font-weight: 900; color: #fff;
}
.mock-brand-name { font-size: 0.78rem; font-weight: 700; color: #fff; }
.mock-section {
    font-size: 0.55rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: #475569;
    padding: 8px 8px 4px;
}
.mock-link {
    display: flex; align-items: center; gap: 7px;
    padding: 7px 8px; border-radius: 6px;
    font-size: 0.68rem; color: #94a3b8;
}
.mock-link.active { background: rgba(59,130,246,0.15); color: #93c5fd; }
.mock-link-dot {
    width: 14px; height: 14px; border-radius: 3px;
    background: currentColor; opacity: 0.3; flex-shrink: 0;
}
.mockup-main { background: #f8fafc; overflow: hidden; }
.mock-topbar {
    background: #fff; border-bottom: 1px solid #e2e8f0;
    padding: 10px 16px;
    display: flex; align-items: center; justify-content: space-between;
}
.mock-page-title { font-size: 0.78rem; font-weight: 700; color: #0f172a; }
.mock-avatar {
    width: 24px; height: 24px; border-radius: 50%;
    background: #dbeafe; display: grid; place-items: center;
    font-size: 0.55rem; font-weight: 700; color: #1d4ed8;
}
.mock-content { padding: 14px 16px; }
.mock-metrics {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 8px; margin-bottom: 12px;
}
.mock-metric {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 8px; padding: 10px;
}
.mock-metric-val {
    font-size: 1.1rem; font-weight: 800; color: #0f172a;
    line-height: 1; margin-bottom: 3px;
}
.mock-metric-val.blue { color: #1d4ed8; }
.mock-metric-val.green { color: #059669; }
.mock-metric-val.orange { color: #d97706; }
.mock-metric-label { font-size: 0.55rem; color: #94a3b8; font-weight: 500; }
.mock-card {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 8px; overflow: hidden; margin-bottom: 8px;
}
.mock-card-head {
    padding: 8px 12px; border-bottom: 1px solid #f1f5f9;
    font-size: 0.65rem; font-weight: 700; color: #0f172a;
    display: flex; justify-content: space-between; align-items: center;
}
.mock-btn-tiny {
    background: #1d4ed8; color: #fff;
    padding: 2px 8px; border-radius: 4px;
    font-size: 0.55rem; font-weight: 700;
}
.mock-table { width: 100%; }
.mock-th {
    display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr;
    padding: 5px 12px; background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}
.mock-th span { font-size: 0.52rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; }
.mock-tr {
    display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr;
    padding: 6px 12px; border-bottom: 1px solid #f8fafc;
    align-items: center;
}
.mock-tr:last-child { border-bottom: none; }
.mock-td { font-size: 0.6rem; color: #334155; }
.mock-tag {
    display: inline-block; padding: 2px 6px;
    border-radius: 4px; font-size: 0.52rem; font-weight: 700;
}
.mock-tag.green { background: #d1fae5; color: #065f46; }
.mock-tag.blue { background: #dbeafe; color: #1e40af; }
.mock-tag.orange { background: #fef3c7; color: #92400e; }

/* floating glow */
.mockup-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: radial-gradient(ellipse, rgba(29,78,216,0.08) 0%, transparent 70%);
    pointer-events: none; z-index: -1;
}

/* ── TICKER ── */
.l-ticker {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden; padding: 12px 0; white-space: nowrap;
}
.l-ticker-track {
    display: inline-flex; gap: 0;
    animation: lticker 35s linear infinite;
}
@keyframes lticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.l-ticker-item {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); padding: 0 20px;
    display: inline-flex; align-items: center; gap: 20px;
}
.l-ticker-item::after { content: '·'; color: var(--blue-light); font-size: 1.2rem; line-height: 0; }

/* ── SECTIONS ── */
.l-section { padding: 100px var(--px); max-width: var(--max); margin: 0 auto; }
.l-section-full { padding: 100px var(--px); }
.l-section-bg { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.l-heading { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.l-heading h2 {
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -0.04em; line-height: 1.15; margin-bottom: 14px;
}
.l-heading p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; }

/* ── FEATURES GRID ── */
.feat-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.feat-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 24px;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    position: relative; overflow: hidden;
}
.feat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: rgba(29,78,216,0.2);
}
.feat-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #1d4ed8, #7c3aed);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
}
.feat-card:hover::after { transform: scaleX(1); }
.feat-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--blue-pale); border: 1px solid rgba(29,78,216,0.12);
    display: grid; place-items: center;
    font-size: 1.3rem; margin-bottom: 16px;
}
.feat-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feat-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ── STATS BAR ── */
.stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--border);
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; margin-top: 0;
}
.stat-item {
    background: #fff; padding: 36px 28px; text-align: center;
    transition: background 0.2s;
}
.stat-item:hover { background: var(--bg-soft); }
.stat-num {
    font-size: 2.4rem; font-weight: 900;
    color: var(--navy); line-height: 1;
    letter-spacing: -0.04em; margin-bottom: 6px;
}
.stat-num span { color: var(--blue); }
.stat-label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* ── PHOTO + TEXT SPLIT ── */
.split-section {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
    padding: 100px var(--px);
    max-width: var(--max); margin: 0 auto;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-text h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 800; color: var(--navy);
    letter-spacing: -0.04em; line-height: 1.15; margin-bottom: 16px;
}
.split-text p { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.88rem; color: var(--slate); line-height: 1.5;
}
.check-list li::before {
    content: '✓';
    width: 20px; height: 20px; border-radius: 50%;
    background: #d1fae5; border: 1px solid #a7f3d0;
    display: grid; place-items: center;
    font-size: 0.6rem; color: var(--success);
    flex-shrink: 0; font-weight: 900; margin-top: 1px;
}

/* ── PDF PREVIEW ── */
.doc-showcase {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
    padding: 100px var(--px);
    max-width: var(--max); margin: 0 auto;
}
.doc-preview-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    overflow: hidden;
}
.doc-preview-topbar {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
}
.doc-preview-logo {
    width: 34px; height: 34px; border-radius: 7px;
    background: rgba(255,255,255,0.2);
    display: grid; place-items: center;
    font-size: 0.68rem; font-weight: 900; color: #fff;
}
.doc-preview-title { font-size: 0.85rem; font-weight: 700; color: #fff; }
.doc-preview-sub { font-size: 0.65rem; color: rgba(255,255,255,0.7); margin-top: 2px; }
.doc-preview-date { margin-left: auto; font-size: 0.68rem; color: rgba(255,255,255,0.7); }
.doc-preview-body { padding: 18px; }
.doc-preview-meta {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; margin-bottom: 16px;
    padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.doc-meta-field label { font-size: 0.6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 2px; }
.doc-meta-field span { font-size: 0.78rem; font-weight: 600; color: var(--navy); }
.doc-preview-table { width: 100%; border-collapse: collapse; margin-bottom: 14px; }
.doc-preview-table th {
    background: #0f172a; color: #fff;
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; padding: 8px 10px; text-align: left;
}
.doc-preview-table td { padding: 8px 10px; font-size: 0.72rem; color: var(--slate); border-bottom: 1px solid var(--border); }
.doc-preview-table tr:last-child td { border-bottom: none; }
.doc-preview-table tr:nth-child(even) td { background: var(--bg-soft); }
.doc-preview-sigs {
    display: flex; justify-content: space-between;
    padding-top: 12px; border-top: 1px solid var(--border);
    font-size: 0.62rem; color: var(--muted); font-style: italic;
}
.doc-preview-footer {
    background: var(--bg-soft); border-top: 1px solid var(--border);
    padding: 8px 18px; display: flex; justify-content: space-between;
    font-size: 0.62rem; color: var(--muted);
}
.doc-accent-bar { height: 4px; background: linear-gradient(90deg, #1d4ed8, #7c3aed); }

/* ── BENEFITS ── */
.benefits-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.benefit-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: #fff;
    transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.benefit-num {
    font-size: 2rem; font-weight: 900; color: var(--blue);
    opacity: 0.15; line-height: 1; margin-bottom: 12px;
    letter-spacing: -0.05em;
}
.benefit-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.benefit-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ── INDUSTRIES ── */
.ind-grid {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.ind-pill {
    padding: 9px 20px; border-radius: 20px;
    font-size: 0.82rem; font-weight: 600;
    background: #fff; border: 1px solid var(--border2);
    color: var(--slate); transition: all 0.2s;
    cursor: default;
}
.ind-pill:hover {
    background: var(--blue-pale);
    border-color: rgba(29,78,216,0.25);
    color: var(--blue);
}

/* ── ROLES ── */
.roles-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.role-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px 20px;
    transition: all 0.2s;
}
.role-card:hover { border-color: rgba(29,78,216,0.25); box-shadow: var(--shadow); }
.role-badge {
    display: inline-block; padding: 4px 10px;
    border-radius: 20px; font-size: 0.68rem; font-weight: 700;
    margin-bottom: 12px; letter-spacing: 0.04em;
}
.role-badge.super { background: #ede9fe; color: #5b21b6; }
.role-badge.admin { background: #dbeafe; color: #1e40af; }
.role-badge.agent { background: #d1fae5; color: #065f46; }
.role-badge.tehnic { background: #fef3c7; color: #92400e; }
.role-card h3 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.role-card ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.role-card ul li { font-size: 0.78rem; color: var(--muted); padding-left: 12px; position: relative; }
.role-card ul li::before { content: '·'; position: absolute; left: 0; color: var(--blue); font-weight: 900; }

/* ── TRIAL CTA ── */
.l-cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 100px var(--px);
}
.l-cta-inner {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 64px; align-items: start;
}
.l-cta-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800; color: #fff;
    letter-spacing: -0.04em; line-height: 1.15; margin-bottom: 16px;
}
.l-cta-text p { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 28px; }
.l-cta-perks { display: flex; flex-direction: column; gap: 10px; }
.l-perk {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; color: rgba(255,255,255,0.8);
}
.l-perk-check {
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(16,185,129,0.2); border: 1px solid rgba(16,185,129,0.4);
    display: grid; place-items: center;
    font-size: 0.58rem; color: #6ee7b7; flex-shrink: 0; font-weight: 900;
}

.l-form {
    background: #fff; border-radius: var(--radius-xl);
    padding: 36px; box-shadow: 0 32px 80px rgba(0,0,0,0.3);
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.l-form .flash, .l-form .alert {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    margin: 0 0 6px;
}
.l-form .wide { grid-column: 1/-1; }
.l-form-title {
    font-size: 1rem; font-weight: 800; color: var(--navy);
    margin-bottom: 4px; grid-column: 1/-1;
    padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.l-form label {
    display: grid; gap: 6px;
    font-size: 0.75rem; font-weight: 600; color: var(--slate);
    letter-spacing: 0.02em;
}
.l-form input, .l-form textarea, .l-form select {
    background: var(--bg-soft); border: 1px solid var(--border2);
    border-radius: 8px; color: var(--navy); padding: 10px 13px;
    font-size: 0.85rem; font-family: inherit;
    outline: none; transition: border-color 0.15s, box-shadow 0.15s; width: 100%;
}
.l-form input:focus, .l-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(29,78,216,0.1);
    background: #fff;
}
.l-form textarea { min-height: 88px; resize: vertical; }
.l-form-actions { grid-column: 1/-1; display: flex; justify-content: space-between; align-items: center; }
.l-form-note { font-size: 0.72rem; color: var(--muted); }

/* ── FOOTER ── */
.l-footer {
    background: var(--navy); padding: 48px var(--px) 32px;
}
.l-footer-top {
    max-width: var(--max); margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 48px; padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 28px;
}
.l-footer-brand { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-top: 10px; max-width: 280px; }
.l-footer-col h4 {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
    margin-bottom: 14px;
}
.l-footer-col a {
    display: block; font-size: 0.85rem; color: rgba(255,255,255,0.65);
    margin-bottom: 8px; transition: color 0.15s;
}
.l-footer-col a:hover { color: #fff; }
.l-footer-bottom {
    max-width: var(--max); margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px;
}
.l-footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ── MOBILE MENU ── */
.l-mobile-menu {
    display: none; position: fixed; inset: 64px 0 0;
    background: #fff; z-index: 400;
    flex-direction: column; padding: 20px var(--px);
    gap: 4px; border-top: 1px solid var(--border);
}
.l-mobile-menu.open { display: flex; }
.l-mobile-menu a {
    padding: 13px 16px; border-radius: 8px;
    font-size: 0.95rem; font-weight: 600; color: var(--navy);
    border-bottom: 1px solid var(--border);
}
.l-mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .roles-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .l-menu, .l-actions { display: none; }
    .l-ham { display: flex; }
    .l-hero { grid-template-columns: 1fr; min-height: auto; padding: 80px var(--px) 48px; gap: 40px; }
    .hero-right { display: none; }
    .split-section { grid-template-columns: 1fr; gap: 36px; }
    .split-section.reverse { direction: ltr; }
    .doc-showcase { grid-template-columns: 1fr; }
    .l-cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .l-footer-top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
    .flash, .alert {
        width: auto;
        margin: 14px var(--px) 0;
        font-size: 0.88rem;
    }
    .l-form .flash, .l-form .alert {
        width: 100%;
        margin: 0 0 8px;
    }
    .feat-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .roles-grid { grid-template-columns: 1fr 1fr; }
    .l-form { grid-template-columns: 1fr; padding: 22px; }
    .mockup-body { grid-template-columns: 1fr; }
    .mockup-sidebar { display: none; }
    .mock-metrics { grid-template-columns: repeat(2,1fr); }
}
