/* ============================================================
   SaaS product landing — self-contained (no framework CSS).
   Promotes two products: the CRM back-office + the AI assistant.
   Prefixed .ln-* to avoid clashes. Light page, dark hero/CTA bands.
   ============================================================ */

:root {
    --ink: #0b1020;
    --ink-2: #59637a;
    --ink-3: #8a93a6;
    --bg: #ffffff;
    --bg-soft: #f5f7fc;
    --bg-soft-2: #eef2fb;
    --line: #e6eaf3;
    --line-2: #d8deec;
    --brand: #4f46e5;
    --brand-2: #7c3aed;
    --brand-ink: #3730a3;
    --ai: #06b6d4;
    --ai-2: #0891b2;
    --gold: #f4b740;
    --ok: #16a34a;
    --dark: #0a0d1a;
    --dark-2: #10142a;
    --radius: 16px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(16, 24, 64, .06), 0 2px 8px rgba(16, 24, 64, .05);
    --shadow: 0 10px 30px rgba(16, 24, 64, .10);
    --shadow-lg: 0 30px 70px rgba(16, 24, 64, .18);
    --maxw: 1180px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --display: 'Sora', var(--font);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.ln-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.ln-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .8rem; font-weight: 650; letter-spacing: .04em; text-transform: uppercase;
    color: var(--brand); background: rgba(79, 70, 229, .09);
    padding: 6px 13px; border-radius: 999px;
}
.ln-eyebrow.ai { color: var(--ai-2); background: rgba(6, 182, 212, .11); }
h1, h2, h3 { font-family: var(--display); font-weight: 700; letter-spacing: -.02em; line-height: 1.12; margin: 0; }
.ln-h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.ln-lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--ink-2); }
.ln-section { padding: clamp(64px, 8vw, 110px) 0; }
.ln-center { text-align: center; }
.ln-section-head { max-width: 680px; margin: 0 auto 52px; }
.ln-section-head.ln-center { text-align: center; }
.ln-section-head p { margin: 16px 0 0; }

/* ---------- Buttons ---------- */
.ln-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-weight: 640; font-size: .98rem; font-family: var(--font);
    padding: 13px 22px; border-radius: 12px; border: 1px solid transparent;
    cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    white-space: nowrap;
}
.ln-btn:active { transform: translateY(1px); }
.ln-btn-primary {
    color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 8px 22px rgba(79, 70, 229, .35);
}
.ln-btn-primary:hover { box-shadow: 0 12px 30px rgba(79, 70, 229, .48); transform: translateY(-2px); }
.ln-btn-ai { background: linear-gradient(135deg, var(--ai), #3b82f6); box-shadow: 0 8px 22px rgba(6, 182, 212, .32); color:#fff; }
.ln-btn-ai:hover { box-shadow: 0 12px 30px rgba(6, 182, 212, .45); transform: translateY(-2px); }
.ln-btn-ghost { color: var(--ink); background: #fff; border-color: var(--line-2); }
.ln-btn-ghost:hover { border-color: var(--ink); }
.ln-btn-light { color: var(--ink); background: #fff; }
.ln-btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.ln-btn-lg { padding: 16px 28px; font-size: 1.03rem; }
.ln-btn-outline-light { color:#fff; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.28); }
.ln-btn-outline-light:hover { background: rgba(255,255,255,.14); }

/* ---------- Nav ---------- */
.ln-nav {
    position: sticky; top: 0; z-index: 60;
    background: rgba(255, 255, 255, .82); backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.ln-nav.scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(16, 24, 64, .05); }
.ln-nav-inner { display: flex; align-items: center; gap: 20px; height: 68px; }
.ln-brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 750; font-size: 1.14rem; letter-spacing: -.02em; }
.ln-brand-mark {
    width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 6px 16px rgba(79, 70, 229, .4);
}
.ln-brand-mark svg { width: 19px; height: 19px; }
.ln-nav-links { display: flex; align-items: center; gap: 28px; margin-left: 14px; }
.ln-nav-links a { font-size: .94rem; font-weight: 550; color: var(--ink-2); transition: color .15s; }
.ln-nav-links a:hover { color: var(--ink); }
.ln-nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.ln-nav-cta .ln-signin { font-size: .94rem; font-weight: 600; color: var(--ink); }
.ln-burger { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--ink); cursor: pointer; }

/* ---------- Hero ---------- */
.ln-hero { position: relative; background: var(--dark); color: #fff; overflow: hidden; padding: clamp(70px, 9vw, 120px) 0 clamp(90px, 11vw, 150px); }
.ln-hero::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(60% 55% at 12% 8%, rgba(124, 58, 237, .38), transparent 60%),
        radial-gradient(50% 50% at 92% 18%, rgba(6, 182, 212, .30), transparent 60%),
        radial-gradient(80% 60% at 60% 110%, rgba(79, 70, 229, .30), transparent 60%);
}
.ln-hero::after {
    content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 46px 46px; mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 85%);
}
.ln-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.ln-hero .ln-eyebrow { color: #c9c4ff; background: rgba(124, 58, 237, .22); }
.ln-hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); margin: 20px 0 0; }
.ln-hero h1 .ln-grad { background: linear-gradient(120deg, #a78bfa, #22d3ee); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ln-hero-sub { margin: 22px 0 0; font-size: clamp(1.05rem, 1.5vw, 1.24rem); color: #b7bdd4; max-width: 560px; }
.ln-hero-cta { margin: 34px 0 0; display: flex; flex-wrap: wrap; gap: 14px; }
.ln-hero-trust { margin: 34px 0 0; display: flex; flex-wrap: wrap; gap: 26px; }
.ln-hero-trust div { }
.ln-hero-trust b { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 700; }
.ln-hero-trust span { font-size: .84rem; color: #9aa2bd; }

/* browser/dashboard mock */
.ln-mock { border-radius: 14px; background: #0d1122; border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow-lg); overflow: hidden; }
.ln-mock-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #141a30; border-bottom: 1px solid rgba(255,255,255,.07); }
.ln-mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #3a4568; }
.ln-dot-r { background: #ff5f57; } .ln-dot-y { background: #febc2e; } .ln-dot-g { background: #28c840; }
.ln-mock-url { margin-left: 10px; flex: 1; font-size: .74rem; color: #7e88a8; background: #0d1122; border-radius: 6px; padding: 5px 10px; }
.ln-mock-body { padding: 16px; display: grid; grid-template-columns: 148px 1fr; gap: 14px; }
.ln-mock-side { display: flex; flex-direction: column; gap: 8px; }
.ln-mock-side .row { height: 10px; border-radius: 5px; background: rgba(255,255,255,.08); }
.ln-mock-side .row.on { background: linear-gradient(90deg, var(--brand), var(--brand-2)); width: 85%; }
.ln-mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.ln-mock-kpi { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; padding: 11px; }
.ln-mock-kpi b { display:block; font-family: var(--display); color:#fff; font-size: 1.15rem; }
.ln-mock-kpi span { font-size: .66rem; color:#8891ad; }
.ln-mock-chart { height: 92px; border-radius: 10px; background: linear-gradient(180deg, rgba(79,70,229,.28), rgba(79,70,229,0)); border: 1px solid rgba(255,255,255,.07); position: relative; overflow: hidden; }
.ln-mock-chart::after { content:""; position:absolute; left:0; right:0; bottom:0; height: 60%;
    background: repeating-linear-gradient(90deg, rgba(34,211,238,.5) 0 3px, transparent 3px 26px); mask: linear-gradient(180deg, transparent, #000); opacity:.7; }
.ln-mock-rows { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.ln-mock-rows .r { height: 12px; border-radius: 6px; background: rgba(255,255,255,.06); }
.ln-mock-rows .r:nth-child(2) { width: 82%; } .ln-mock-rows .r:nth-child(3) { width: 66%; }

/* ---------- Logo / stat strip ---------- */
.ln-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.ln-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 30px 0; text-align: center; }
.ln-strip b { display: block; font-family: var(--display); font-size: 1.7rem; color: var(--brand-ink); }
.ln-strip span { font-size: .86rem; color: var(--ink-2); }

/* ---------- Product split ---------- */
.ln-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ln-split.rev .ln-split-media { order: -1; }
.ln-badge-prod { display:inline-flex; align-items:center; gap:8px; font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; padding:5px 12px; border-radius:999px; }
.ln-badge-prod.crm { color: var(--brand); background: rgba(79,70,229,.1); }
.ln-badge-prod.ai { color: var(--ai-2); background: rgba(6,182,212,.11); }
.ln-split h2 { margin: 16px 0 0; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.ln-split > div > p { color: var(--ink-2); margin: 16px 0 0; font-size: 1.06rem; }
.ln-flist { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.ln-flist li { display: flex; gap: 12px; align-items: flex-start; }
.ln-flist .ic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; font-size: .95rem; }
.crm .ic, .ln-flist.crm .ic { color: var(--brand); background: rgba(79,70,229,.1); }
.ai .ic, .ln-flist.ai .ic { color: var(--ai-2); background: rgba(6,182,212,.12); }
.ln-flist b { font-weight: 640; }
.ln-flist p { margin: 2px 0 0; font-size: .9rem; color: var(--ink-2); }
.ln-split-cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

/* AI chat mock */
.ln-chat { background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.ln-chat-head { display: flex; align-items: center; gap: 11px; padding: 15px 18px; border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(6,182,212,.06), transparent); }
.ln-chat-avatar { flex: none; width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--ai), #3b82f6); color: #fff; display: grid; place-items: center; }
.ln-chat-head b { font-family: var(--display); color: var(--ink); }
.ln-chat-head span { font-size: .78rem; color: var(--ok); display:flex; align-items:center; gap:5px; }
.ln-chat-head span::before { content:""; width:7px; height:7px; border-radius:50%; background: var(--ok); }
.ln-chat-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; background: var(--bg-soft); }
.ln-msg { max-width: 82%; padding: 11px 15px; border-radius: 14px; font-size: .92rem; }
.ln-msg.q { align-self: flex-end; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; border-bottom-right-radius: 4px; }
.ln-msg.a { align-self: flex-start; background: #fff; color: var(--ink); border: 1px solid var(--line); border-bottom-left-radius: 4px; box-shadow: var(--shadow-sm); }
.ln-msg.a .src { margin-top: 8px; font-size: .74rem; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
.ln-msg.a table { width: 100%; margin-top: 8px; border-collapse: collapse; font-size: .8rem; }
.ln-msg.a td { padding: 4px 6px; border-top: 1px solid var(--line); }
.ln-msg.a td:last-child { text-align: right; font-weight: 650; }
.ln-chat-input { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-top: 1px solid var(--line); background:#fff; }
.ln-chat-input .box { flex: 1; color: var(--ink-3); font-size: .9rem; }
.ln-chat-input .send { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--ai), #3b82f6); color: #fff; display: grid; place-items: center; }

/* ---------- Steps ---------- */
.ln-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.ln-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: relative; box-shadow: var(--shadow-sm); }
.ln-step .n { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--ai), #3b82f6); color: #fff; font-family: var(--display); font-weight: 700; display: grid; place-items: center; margin-bottom: 14px; }
.ln-step h3 { font-size: 1.14rem; }
.ln-step p { margin: 9px 0 0; color: var(--ink-2); font-size: .94rem; }

/* ---------- Feature cards ---------- */
.ln-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ln-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .18s, box-shadow .2s, border-color .2s; }
.ln-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.ln-card .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 1.25rem; margin-bottom: 16px; color: var(--brand); background: rgba(79,70,229,.09); }
.ln-cards.ai .ic { color: var(--ai-2); background: rgba(6,182,212,.1); }
.ln-card h3 { font-size: 1.12rem; }
.ln-card p { margin: 9px 0 0; color: var(--ink-2); font-size: .93rem; }

/* ---------- Pricing ---------- */
.ln-price-wrap { background: var(--bg-soft); }
.ln-tabs { display: inline-flex; padding: 5px; background: #fff; border: 1px solid var(--line); border-radius: 999px; margin: 0 auto 18px; }
.ln-tab { border: 0; background: none; font-family: var(--font); font-weight: 640; font-size: .92rem; color: var(--ink-2); padding: 9px 20px; border-radius: 999px; cursor: pointer; transition: .18s; }
.ln-tab.active { color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 6px 16px rgba(79,70,229,.32); }
.ln-tab.active.ai { background: linear-gradient(135deg, var(--ai), #3b82f6); box-shadow: 0 6px 16px rgba(6,182,212,.3); }
.ln-toggle { display: flex; align-items: center; justify-content: center; gap: 13px; margin: 8px 0 44px; font-weight: 600; font-size: .94rem; color: var(--ink-2); }
.ln-toggle .save { font-size: .74rem; font-weight: 700; color: var(--ok); background: rgba(22,163,74,.1); padding: 3px 9px; border-radius: 999px; }
.ln-switch { width: 52px; height: 30px; border-radius: 999px; background: var(--line-2); position: relative; cursor: pointer; transition: background .2s; border: 0; flex: 0 0 auto; }
.ln-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s; }
.ln-switch.on { background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.ln-switch.on::after { transform: translateX(22px); }
.ln-grid-price { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.ln-plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; display: flex; flex-direction: column; position: relative; }
.ln-plan.pop { border-color: transparent; box-shadow: 0 24px 60px rgba(79,70,229,.22); background: linear-gradient(180deg, #fff, #fbfaff); outline: 2px solid var(--brand); }
.ln-plan-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); padding: 5px 14px; border-radius: 999px; }
.ln-plan.life { background: linear-gradient(180deg, #fffdf5, #fff); outline: 2px solid var(--gold); border-color: transparent; }
.ln-plan.life .ln-plan-tag { background: linear-gradient(135deg, #f4b740, #e0932a); color: #3a2a06; }
.ln-plan h3 { font-size: 1.24rem; }
.ln-plan .desc { color: var(--ink-2); font-size: .9rem; margin: 6px 0 18px; min-height: 40px; }
.ln-plan .price { display: flex; align-items: baseline; gap: 4px; }
.ln-plan .price .cur { font-size: 1.2rem; font-weight: 700; }
.ln-plan .price .amt { font-family: var(--display); font-size: 2.7rem; font-weight: 750; letter-spacing: -.03em; }
.ln-plan .price .per { color: var(--ink-2); font-size: .9rem; font-weight: 550; }
.ln-plan .sub { font-size: .82rem; color: var(--ink-3); margin-top: 6px; min-height: 20px; }
.ln-plan ul { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 11px; flex: 1; }
.ln-plan ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; }
.ln-plan ul li i { color: var(--ok); margin-top: 3px; flex: 0 0 auto; }
.ln-plan ul li.off { color: var(--ink-3); } .ln-plan ul li.off i { color: var(--ink-3); }
.ln-price-note { text-align: center; color: var(--ink-3); font-size: .86rem; margin-top: 26px; }
.ln-pane { display: none; } .ln-pane.active { display: block; }

/* Justified body copy for the prose blocks. Left-aligned on small screens so
   narrow columns don't get big word gaps. Headings + centered short leads keep
   their own alignment. */
@media (min-width: 640px) {
  .ln-hero-sub,
  .ln-split p,
  .ln-flist p,
  .ln-card p,
  .ln-step p,
  .ln-q p {
    text-align: justify;
    text-justify: inter-word;
  }
}

/* ---------- FAQ ---------- */
.ln-faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.ln-q { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 20px; }
.ln-q summary { list-style: none; cursor: pointer; font-weight: 640; padding: 16px 0; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.ln-q summary::-webkit-details-marker { display: none; }
.ln-q summary::after { content: "+"; font-size: 1.4rem; color: var(--brand); transition: transform .2s; }
.ln-q[open] summary::after { transform: rotate(45deg); }
.ln-q p { margin: 0 0 18px; color: var(--ink-2); font-size: .95rem; }

/* ---------- CTA band ---------- */
.ln-ctaband { background: var(--dark); color: #fff; position: relative; overflow: hidden; border-radius: 26px; padding: clamp(44px, 6vw, 72px); text-align: center; }
.ln-ctaband::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 120% at 20% 0%, rgba(124,58,237,.4), transparent 60%), radial-gradient(50% 120% at 90% 100%, rgba(6,182,212,.35), transparent 60%); }
.ln-ctaband > * { position: relative; z-index: 2; }
.ln-ctaband h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
.ln-ctaband p { color: #c3c9df; max-width: 560px; margin: 16px auto 0; }
.ln-ctaband .ln-hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
.ln-footer { background: var(--dark-2); color: #aeb6d0; padding: 64px 0 30px; }
.ln-foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.ln-footer .ln-brand { color: #fff; }
.ln-footer p { font-size: .92rem; margin: 16px 0 0; max-width: 300px; }
.ln-foot-col h4 { font-family: var(--font); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: #7a83a3; margin: 0 0 16px; }
.ln-foot-col a { display: block; font-size: .92rem; margin-bottom: 11px; color: #aeb6d0; transition: color .15s; }
.ln-foot-col a:hover { color: #fff; }
.ln-foot-bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: .85rem; color: #7a83a3; flex-wrap: wrap; }

/* ---------- Flash ---------- */
.ln-flash { max-width: 720px; margin: 20px auto -20px; padding: 14px 18px; border-radius: 12px; font-size: .95rem; }
.ln-flash.ok { background: rgba(22,163,74,.1); color: #15803d; border: 1px solid rgba(22,163,74,.25); }
.ln-flash.err { background: rgba(220,38,38,.08); color: #b91c1c; border: 1px solid rgba(220,38,38,.22); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .ln-hero-inner, .ln-split { grid-template-columns: 1fr; gap: 40px; }
    .ln-split.rev .ln-split-media { order: 0; }
    .ln-cards, .ln-steps, .ln-grid-price { grid-template-columns: 1fr 1fr; }
    .ln-strip-inner { grid-template-columns: 1fr 1fr; gap: 26px; }
    .ln-foot-grid { grid-template-columns: 1fr 1fr; }
    .ln-nav-links { display: none; }
    .ln-burger { display: block; margin-left: auto; }
    .ln-nav-cta { margin-left: 0; }
    .ln-nav-cta .ln-signin { display: none; }
    .ln-mobile-open .ln-nav-links { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; background: #fff; padding: 18px 22px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); gap: 16px; }
}
@media (max-width: 620px) {
    .ln-cards, .ln-steps, .ln-grid-price, .ln-strip-inner, .ln-foot-grid { grid-template-columns: 1fr; }
    .ln-hero-trust { gap: 20px; }
    .ln-mock-body { grid-template-columns: 1fr; }
    .ln-mock-side { flex-direction: row; flex-wrap: wrap; }
    .ln-foot-bottom { flex-direction: column; text-align: center; }
    .ln-btn { width: 100%; }
    .ln-hero-cta, .ln-split-cta { width: 100%; }
}
