/* ═══════════════════════════════════════════════════════════
   NOTIX LANDING — sales page design system
   Display: Unbounded · Body: Golos Text
   Palette: deep blue #0A1F44 · signal yellow #fbc708
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;800;900&family=Golos+Text:wght@400;500;600;700;800&display=swap');

:root {
    --ink: #0A1F44;
    --ink-2: #132D5E;
    --ink-3: #1B3A75;
    --gold: #fbc708;
    --gold-2: #fcd535;
    --paper: #fdfdfd;
    --mist: #F4F6FB;
    --slate: #4a628a;
    --line: #E3E8F2;
    --fd: 'Unbounded', sans-serif;
    --fb: 'Golos Text', -apple-system, sans-serif;
}

.landing { font-family: var(--fb); color: var(--ink); overflow-x: hidden; }
.landing h1, .landing h2, .landing h3, .landing .disp { font-family: var(--fd); }

/* Белый непрозрачный header на лендинге */
.promo-page:has(.landing) .nav {
    background: #fff;
    backdrop-filter: none;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 8px rgba(10,31,68,.06);
}

/* ─── Scroll reveal ─── */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.rv.rv-on { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; } .rv-d3 { transition-delay: .24s; } .rv-d4 { transition-delay: .32s; }

/* ═══ HERO: резкая диагональ через центр, клетка с точными цветами ═══ */
.lx-hero {
    position: relative;
    background: linear-gradient(50deg, #fff 50%, var(--ink) 50%);
    color: var(--ink);
    padding: 0;
    overflow: hidden;
}
/* Белая клетка — только на синей стороне */
.lx-hero::before {
    content: '';
    position: absolute; top: 0; bottom: 0; left: 0; right: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
    background-size: 52px 52px;
    -webkit-mask-image: linear-gradient(50deg, transparent 50%, #000 50%);
    mask-image: linear-gradient(50deg, transparent 50%, #000 50%);
    pointer-events: none;
}
/* Синяя клетка — только на белой стороне */
.lx-hero::after {
    content: '';
    position: absolute; top: 0; bottom: 0; left: 0; right: 0;
    background-image:
        linear-gradient(rgba(15,76,129,.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,76,129,.14) 1px, transparent 1px);
    background-size: 52px 52px;
    -webkit-mask-image: linear-gradient(50deg, #000 50%, transparent 50%);
    mask-image: linear-gradient(50deg, #000 50%, transparent 50%);
    pointer-events: none;
}
.lx-hero-grid {
    position: relative; z-index: 2;
    max-width: 1180px; margin: 0 auto;
    padding: 128px 24px 84px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center;
    min-height: 94vh;
}
.lx-kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink);
    border: 1.5px solid rgba(10,31,68,.18);
    padding: 7px 14px; border-radius: 100px;
    margin-bottom: 26px;
    background: var(--gold);
    box-shadow: 0 6px 18px rgba(251,199,8,.35);
}
.lx-kicker::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); animation: lx-pulse-gold 1.8s infinite; }
@keyframes lx-pulse-gold { 0%,100% { box-shadow: 0 0 0 0 rgba(10,31,68,.45); } 50% { box-shadow: 0 0 0 7px rgba(10,31,68,0); } }

.lx-hero h1 {
    font-size: clamp(27px, 3.4vw, 52px);
    font-weight: 800; line-height: 1.16;
    letter-spacing: -.01em;
    margin-bottom: 22px;
    color: var(--ink);
}
.lx-hero h1 em {
    font-style: normal;
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: .14em;
    text-underline-offset: .1em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
.lx-hero--split h1 {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.lx-hero-lead {
    font-size: 17px; line-height: 1.65; color: var(--slate);
    max-width: 520px; margin-bottom: 32px;
}
.lx-hero-lead strong { color: var(--ink); }
.lx-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.lx-btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--fb); font-size: 15px; font-weight: 700;
    padding: 15px 28px; border-radius: 12px;
    text-decoration: none; border: none; cursor: pointer;
    transition: transform .18s, box-shadow .18s, background .18s;
}
.lx-btn:active { transform: scale(.97); }
.lx-btn-gold {
    background: var(--gold); color: var(--ink);
    box-shadow: 0 8px 28px rgba(251,199,8,.35);
}
.lx-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(251,199,8,.5); background: var(--gold-2); }
.lx-btn-line {
    background: transparent; color: var(--ink);
    border: 1.5px solid rgba(10,31,68,.3);
}
.lx-btn-line:hover { border-color: var(--ink); background: rgba(10,31,68,.05); transform: translateY(-2px); }
.lx-hero-trust { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--slate); }
.lx-hero-trust span::before { content: '✓'; color: var(--ink); font-weight: 800; margin-right: 6px; }

/* Live feed */
.lx-feed { position: relative; }
.lx-feed-head {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--ink-2);
    border: 1px solid rgba(255,255,255,.1);
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    padding: 13px 18px;
}
.lx-feed-head b { font-family: var(--fd); font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.lx-feed-live { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; color: #4ADE80; }
.lx-feed-live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; animation: lx-pulse 1.4s infinite; }
.lx-feed-body {
    background: rgba(19,45,94,.55);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 0 0 16px 16px;
    padding: 14px;
    min-height: 340px;
    display: flex; flex-direction: column; gap: 10px;
    backdrop-filter: blur(6px);
}
.lx-notif {
    display: flex; align-items: flex-start; gap: 12px;
    background: #fff; color: var(--ink);
    border-radius: 12px; padding: 13px 15px;
    box-shadow: 0 6px 20px rgba(4,12,30,.35);
    animation: lx-slide-in .55s cubic-bezier(.22,1,.36,1) both;
    border-left: 4px solid var(--gold);
    transition: transform .2s;
}
.lx-notif:hover { transform: translateX(4px); }
.lx-notif:nth-child(2) { animation-delay: .35s; border-left-color: #3B82F6; }
.lx-notif:nth-child(3) { animation-delay: .7s; border-left-color: #10B981; }
.lx-notif:nth-child(4) { animation-delay: 1.05s; border-left-color: #F59E0B; }
.lx-notif:nth-child(5) { animation-delay: 1.4s; border-left-color: #8B5CF6; }
@keyframes lx-slide-in { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: none; } }
.lx-notif-ico { font-size: 20px; line-height: 1.2; }
.lx-notif-txt { flex: 1; min-width: 0; }
.lx-notif-txt b { display: block; font-size: 13px; font-weight: 700; }
.lx-notif-txt span { display: block; font-size: 12px; color: var(--slate); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lx-notif-time { font-size: 10px; color: #94A3B8; white-space: nowrap; padding-top: 2px; }
.lx-feed-more { text-align: center; font-size: 11px; color: #8FA2C4; padding-top: 4px; }

/* Hero phone + orbiting notifications */
.lx-hero-phone-wrap { position: relative; display: flex; justify-content: center; }
.lx-phone {
    width: 272px; border-radius: 38px;
    background: #0D1B33; border: 3px solid rgba(255,255,255,.14);
    padding: 10px; position: relative; z-index: 3;
    box-shadow: 0 40px 90px rgba(2,8,24,.6), 0 0 0 1px rgba(251,199,8,.15);
    animation: lx-float 5s ease-in-out infinite;
}
@keyframes lx-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.lx-phone-notch { width: 90px; height: 20px; background: #0D1B33; border-radius: 0 0 14px 14px; margin: -10px auto 8px; position: relative; z-index: 4; border: 2px solid rgba(255,255,255,.1); border-top: none; }
.lx-phone-screen { background: #F6F8FC; border-radius: 26px; overflow: hidden; display: flex; flex-direction: column; }
.lx-phone-top { background: var(--ink); color: #fff; padding: 15px 14px 12px; }
.lx-phone-top b { font-family: var(--fd); font-size: 13px; font-weight: 700; display: block; }
.lx-phone-top span { font-size: 10px; color: var(--gold); font-weight: 700; }
.lx-pt-row { display: flex; align-items: center; justify-content: space-between; }
.lx-pt-count { background: var(--gold); color: var(--ink); font-size: 9px; font-weight: 800; padding: 3px 9px; border-radius: 100px; letter-spacing: .02em; }
.lx-phone-tabs { display: flex; gap: 5px; margin-top: 11px; }
.lx-phone-tabs s { text-decoration: none; font-size: 9px; font-weight: 700; padding: 4px 10px; border-radius: 100px; color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); transition: background .2s; }
.lx-phone-tabs s.on { background: var(--gold); color: var(--ink); }
.lx-phone-list { padding: 11px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.lx-mob .lx-phone-list { min-height: 396px; }
.lx-phone-item {
    display: flex; gap: 9px; align-items: flex-start;
    background: #fff; border-radius: 12px; padding: 10px 11px;
    border: 1px solid var(--line); border-left: 3px solid var(--line);
    box-shadow: 0 2px 8px rgba(10,31,68,.06);
    animation: lx-slide-in .5s cubic-bezier(.22,1,.36,1) both;
    transition: transform .18s, box-shadow .18s;
}
.lx-phone-item:hover { transform: translateX(3px); box-shadow: 0 6px 16px rgba(10,31,68,.12); }
.lx-phone-item:nth-child(2) { animation-delay: .4s; } .lx-phone-item:nth-child(3) { animation-delay: .8s; } .lx-phone-item:nth-child(4) { animation-delay: 1.2s; } .lx-phone-item:nth-child(5) { animation-delay: 1.6s; }
.lx-phone-item i { font-style: normal; font-size: 16px; }
.lx-phone-item b { display: block; font-size: 11px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.lx-phone-item span { display: block; font-size: 10px; color: var(--slate); margin-top: 2px; line-height: 1.4; }
.lx-phone-item em { font-style: normal; margin-left: auto; font-size: 8px; color: #94A3B8; white-space: nowrap; padding-top: 2px; }
.lx-pi-ic { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.lx-pi-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #3B82F6; margin-left: 5px; vertical-align: 1px; animation: lx-dot-pulse 1.6s infinite; }
@keyframes lx-dot-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(59,130,246,.45); } 50% { box-shadow: 0 0 0 4px rgba(59,130,246,0); } }
.lx-phone-tags { display: flex; gap: 4px; margin-top: 5px; }
.lx-phone-tags s { text-decoration: none; font-size: 8px; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.lx-phone-nav { display: flex; justify-content: space-around; align-items: center; padding: 9px 12px 12px; border-top: 1px solid var(--line); background: #fff; font-size: 15px; }
.lx-phone-nav span { opacity: .35; filter: grayscale(1); transition: transform .2s, opacity .2s; cursor: default; }
.lx-phone-nav span.on { opacity: 1; filter: none; transform: scale(1.18); }
.lx-orbit {
    position: absolute; z-index: 2;
    background: #fff; color: var(--ink);
    border-radius: 12px; padding: 10px 14px;
    display: flex; gap: 9px; align-items: center;
    box-shadow: 0 12px 34px rgba(2,8,24,.45);
    border-left: 4px solid var(--gold);
    font-size: 12px; font-weight: 700;
    animation: lx-orbit-in .6s cubic-bezier(.22,1,.36,1) both, lx-float 6s ease-in-out infinite;
    white-space: nowrap;
}
.lx-orbit small { display: block; font-size: 10px; font-weight: 500; color: var(--slate); }
.lx-orbit-1 { top: 4%; left: -8%; border-left-color: #10B981; animation-delay: .3s, 0s; }
.lx-orbit-2 { top: 30%; right: -14%; border-left-color: #3B82F6; animation-delay: .6s, 1s; }
.lx-orbit-3 { bottom: 26%; left: -14%; border-left-color: #F59E0B; animation-delay: .9s, 2s; }
.lx-orbit-4 { bottom: 2%; right: -6%; border-left-color: #8B5CF6; animation-delay: 1.2s, 3s; }
@keyframes lx-orbit-in { from { opacity: 0; transform: scale(.7); } to { opacity: 1; transform: scale(1); } }

/* ═══ MOBILE COMMAND CENTER ═══ */
.lx-mob { position: relative; overflow: hidden; }
.lx-mob::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(700px 500px at 50% 0%, rgba(251,199,8,.08), transparent 65%);
}
.lx-mob-grid { position: relative; display: grid; grid-template-columns: 1fr 340px 1fr; gap: 40px; align-items: center; margin-top: 56px; }
.lx-mob-col { display: flex; flex-direction: column; gap: 22px; }
.lx-mob-feat {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px; padding: 20px 22px;
    transition: transform .25s, border-color .25s, background .25s;
    position: relative;
}
.lx-mob-feat:hover { transform: translateY(-3px); border-color: rgba(251,199,8,.5); background: rgba(251,199,8,.06); }
.lx-mob-feat::after {
    content: ''; position: absolute; top: 50%; width: 40px; height: 2px;
    background: linear-gradient(90deg, rgba(251,199,8,.6), transparent);
}
.lx-mob-col.left .lx-mob-feat::after { right: -40px; }
.lx-mob-col.right .lx-mob-feat::after { left: -40px; transform: rotate(180deg); }
.lx-mob-feat b { display: flex; align-items: center; gap: 10px; font-family: var(--fd); font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.lx-mob-feat b i { font-style: normal; font-size: 18px; }
.lx-mob-feat p { font-size: 13px; line-height: 1.6; color: #9FB0CE; }
.lx-mob-center { display: flex; justify-content: center; }
.lx-mob-cta { display: flex; gap: 16px; align-items: center; justify-content: center; margin-top: 52px; flex-wrap: wrap; position: relative; }
.lx-mob-note { font-size: 13px; color: #8FA2C4; }

/* ═══ MARQUEE ═══ */
.lx-marquee {
    background: var(--gold);
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    overflow: hidden; padding: 15px 0;
    transform: rotate(-.6deg) scale(1.01);
}
.lx-marquee-track {
    display: flex; gap: 0; width: max-content;
    animation: lx-scroll 26s linear infinite;
}
.lx-marquee:hover .lx-marquee-track { animation-play-state: paused; }
@keyframes lx-scroll { to { transform: translateX(-50%); } }
.lx-marquee-item {
    font-family: var(--fd); font-size: 14px; font-weight: 700;
    color: var(--ink); white-space: nowrap; padding: 0 22px;
    display: flex; align-items: center; gap: 22px;
}
.lx-marquee-item::after { content: '✦'; font-size: 11px; }

/* ═══ SECTIONS ═══ */
.lx-sec { padding: 96px 24px; }
.lx-wrap { max-width: 1180px; margin: 0 auto; }
.lx-sec-tag {
    display: inline-block;
    font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
    color: var(--ink); background: var(--gold);
    padding: 6px 13px; border-radius: 4px;
    margin-bottom: 18px; transform: skewX(-4deg);
}
.lx-sec h2 {
    font-size: clamp(24px, 3vw, 38px); font-weight: 800;
    line-height: 1.2; margin-bottom: 16px; letter-spacing: -.01em;
}
.lx-sec-sub { font-size: 16px; line-height: 1.65; color: var(--slate); max-width: 640px; }
.lx-sec-dark { background: var(--ink); color: #fff; }
.lx-sec-dark .lx-sec-sub { color: #B9C6DE; }
.lx-sec-mist { background: var(--mist); }

/* ═══ STATEMENT (что такое Notix) ═══ */
.lx-statement {
    font-family: var(--fd);
    font-size: clamp(20px, 2.6vw, 34px);
    font-weight: 700; line-height: 1.45;
    max-width: 960px;
}
.lx-statement .hl { background: var(--gold); color: var(--ink); padding: 2px 12px; border-radius: 6px; display: inline-block; transform: rotate(-.5deg); }
.lx-statement .dim { color: #8FA2C4; }
.lx-statement-grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; margin-top: 48px; }
.lx-mini-stats { display: flex; gap: 32px; }
.lx-mini-stat b { display: block; font-family: var(--fd); font-size: 28px; font-weight: 800; color: var(--gold); }
.lx-mini-stat span { font-size: 12px; color: #8FA2C4; }

/* ═══ BENEFITS (numbered editorial rows) ═══ */
.lx-benefit {
    display: grid; grid-template-columns: 90px 1fr 1fr;
    gap: 32px; align-items: start;
    padding: 36px 0;
    border-top: 2px solid var(--line);
    transition: background .25s;
}
.lx-benefit:last-child { border-bottom: 2px solid var(--line); }
.lx-benefit:hover { background: linear-gradient(90deg, rgba(251,199,8,.06), transparent 70%); }
.lx-benefit-num {
    font-family: var(--fd); font-size: 44px; font-weight: 900;
    color: transparent; -webkit-text-stroke: 1.5px var(--gold);
    line-height: 1;
}
.lx-benefit h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.lx-benefit p { font-size: 15px; line-height: 1.65; color: var(--slate); }
.lx-benefit p b { color: var(--ink); }
.lx-benefit-proof {
    font-size: 13px; color: var(--slate);
    border-left: 3px solid var(--gold);
    padding: 10px 16px; background: var(--mist); border-radius: 0 10px 10px 0;
    align-self: center;
}
.lx-benefit-proof b { color: var(--ink); }

/* ═══ CHAT SECTION ═══ */
.lx-chat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lx-chat-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; }
.lx-chat-list li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 15px; line-height: 1.55; color: #DCE4F2;
}
.lx-chat-list li::before { content: '→'; color: var(--gold); font-weight: 800; flex-shrink: 0; }
.lx-chat-mock {
    background: #fff; border-radius: 18px;
    box-shadow: 0 24px 70px rgba(4,12,30,.5);
    overflow: hidden; max-width: 380px; margin-left: auto;
    border: 1px solid var(--line);
    transform: rotate(1.2deg);
    transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.lx-chat-mock:hover { transform: rotate(0) scale(1.02); }
.lx-chat-mock-head {
    background: var(--ink); color: #fff;
    padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.lx-chat-mock-ava {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gold); color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--fd); font-weight: 800; font-size: 14px;
}
.lx-chat-mock-head b { display: block; font-size: 13px; }
.lx-chat-mock-head span { display: block; font-size: 11px; color: #4ADE80; }
.lx-chat-mock-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; min-height: 210px; background: #F8FAFD; }
.lx-chat-bub {
    max-width: 82%; padding: 10px 14px; border-radius: 14px;
    font-size: 13px; line-height: 1.45;
    animation: lx-bub-in .4s cubic-bezier(.22,1,.36,1) both;
}
.lx-chat-bub.vis { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; animation-delay: .2s; }
.lx-chat-bub.op { background: var(--ink); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; animation-delay: .8s; }
.lx-chat-bub.typing { background: #fff; border: 1px solid var(--line); align-self: flex-start; animation-delay: 1.4s; display: flex; gap: 4px; padding: 12px 16px; }
.lx-chat-bub.typing i { width: 6px; height: 6px; border-radius: 50%; background: #94A3B8; animation: lx-type 1.2s infinite; }
.lx-chat-bub.typing i:nth-child(2) { animation-delay: .2s; } .lx-chat-bub.typing i:nth-child(3) { animation-delay: .4s; }
@keyframes lx-type { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }
@keyframes lx-bub-in { from { opacity: 0; transform: translateY(10px) scale(.95); } to { opacity: 1; transform: none; } }
.lx-chat-mock-input {
    display: flex; gap: 10px; padding: 12px 16px;
    border-top: 1px solid var(--line); background: #fff; align-items: center;
}
.lx-chat-mock-input span { flex: 1; font-size: 13px; color: #94A3B8; }
.lx-chat-mock-input b {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--gold); color: var(--ink);
    display: flex; align-items: center; justify-content: center; font-size: 15px;
}

/* ═══ DUAL (AI + errors) ═══ */
.lx-dual { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; margin-top: 48px; }
.lx-panel {
    border-radius: 18px; padding: 36px;
    border: 1px solid var(--line);
    position: relative; overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.lx-panel:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(10,31,68,.1); }
.lx-panel-ai { background: var(--ink); color: #fff; border: none; }
.lx-panel-ai::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(251,199,8,.25), transparent 70%);
}
.lx-panel-err { background: #fff; }
.lx-panel h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; position: relative; }
.lx-panel p { font-size: 14.5px; line-height: 1.65; position: relative; }
.lx-panel-ai p { color: #B9C6DE; }
.lx-panel-err p { color: var(--slate); }
.lx-panel-tag {
    display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .12em;
    text-transform: uppercase; padding: 5px 10px; border-radius: 4px; margin-bottom: 16px; position: relative;
}
.lx-panel-ai .lx-panel-tag { background: var(--gold); color: var(--ink); }
.lx-panel-err .lx-panel-tag { background: #FEE2E2; color: #B91C1C; }
.lx-err-line {
    display: flex; align-items: center; gap: 10px;
    font-family: 'SF Mono', 'Consolas', monospace; font-size: 11.5px;
    background: #FEF2F2; border: 1px solid #FECACA; border-radius: 8px;
    padding: 9px 13px; margin-top: 10px; color: #991B1B; position: relative;
}
.lx-err-line::before { content: '●'; color: #EF4444; font-size: 8px; }

/* ═══ INTEGRATION / FORMS ═══ */
.lx-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 44px; }
.lx-form-card {
    background: #fff; border: 2px solid var(--ink);
    border-radius: 18px; padding: 32px;
    box-shadow: 8px 8px 0 var(--gold);
    transition: transform .2s, box-shadow .2s;
}
.lx-form-card:hover { transform: translate(-2px, -2px); box-shadow: 12px 12px 0 var(--gold); }
.lx-form-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.lx-form-card > p { font-size: 14px; color: var(--slate); line-height: 1.6; margin-bottom: 22px; }
.lx-field { margin-bottom: 14px; }
.lx-field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--slate); margin-bottom: 6px; }
.lx-field input, .lx-field textarea {
    width: 100%; padding: 13px 15px;
    border: 1.5px solid var(--line); border-radius: 10px;
    font-family: var(--fb); font-size: 14px; color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
    background: var(--paper);
}
.lx-field input:focus, .lx-field textarea:focus {
    outline: none; border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(251,199,8,.35);
}
.lx-field textarea { resize: vertical; min-height: 90px; }
.lx-submit {
    width: 100%; padding: 15px;
    background: var(--ink); color: #fff;
    font-family: var(--fb); font-size: 15px; font-weight: 700;
    border: none; border-radius: 10px; cursor: pointer;
    transition: background .2s, transform .15s;
}
.lx-submit:hover { background: var(--ink-3); }
.lx-submit:active { transform: scale(.98); }
.lx-form-ok {
    display: none; text-align: center; padding: 32px 12px;
}
.lx-form-ok.show { display: block; animation: lx-bub-in .4s both; }
.lx-form-ok b { display: block; font-family: var(--fd); font-size: 16px; margin: 12px 0 6px; }
.lx-form-ok span { font-size: 13px; color: var(--slate); }
.lx-free-points { display: flex; flex-direction: column; gap: 16px; }
.lx-free-point { display: flex; gap: 14px; align-items: flex-start; }
.lx-free-point i {
    flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
    background: var(--gold); color: var(--ink); font-style: normal;
    display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 800;
}
.lx-free-point b { display: block; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.lx-free-point span { font-size: 13.5px; color: var(--slate); line-height: 1.55; }

/* ═══ ON-PREMISE ═══ */
.lx-onprem {
    background: linear-gradient(120deg, var(--ink-2), var(--ink));
    border: 1px solid rgba(251,199,8,.3);
    border-radius: 22px; padding: 52px;
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
    position: relative; overflow: hidden;
}
.lx-onprem::before {
    content: '🔒'; position: absolute; right: -20px; bottom: -30px;
    font-size: 180px; opacity: .06; transform: rotate(-12deg);
}
.lx-onprem h3 { font-size: clamp(20px, 2.4vw, 28px); font-weight: 800; color: #fff; margin-bottom: 14px; }
.lx-onprem p { font-size: 15px; line-height: 1.7; color: #B9C6DE; margin-bottom: 20px; }
.lx-onprem-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.lx-onprem-tags span {
    font-size: 12px; font-weight: 700; color: var(--gold);
    border: 1px solid rgba(251,199,8,.4); border-radius: 100px; padding: 6px 14px;
}
.lx-onprem .lx-form-card { box-shadow: 8px 8px 0 rgba(251,199,8,.5); }
.lx-onprem .lx-form-card h3 { color: var(--gold); }

/* ═══ WEBSITE BANNER ═══ */
.lx-webbanner {
    background: var(--gold);
    border-radius: 22px; padding: 44px 52px;
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
    margin-top: 72px; position: relative; overflow: hidden;
    border: 3px solid var(--ink);
}
.lx-webbanner::after { content: '🌐'; position: absolute; right: 32px; top: -18px; font-size: 110px; opacity: .18; transform: rotate(10deg); }
.lx-webbanner h3 { font-size: clamp(18px, 2.2vw, 26px); font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.lx-webbanner p { font-size: 14.5px; color: #4a3d05; line-height: 1.6; max-width: 560px; }
.lx-webbanner .lx-btn { background: var(--ink); color: #fff; flex-shrink: 0; position: relative; z-index: 2; }
.lx-webbanner .lx-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(10,31,68,.35); }

/* ═══ КАК НАЧАТЬ ═══ */
.lx-howstart { background: var(--mist); scroll-margin-top: 70px; }
.lx-howstart-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.lx-howstart-shot { position: relative; }
.lx-howstart-badge {
    position: absolute; right: -14px; bottom: -18px;
    background: var(--ink); color: var(--gold);
    font-family: var(--fd); font-size: 12px; font-weight: 700;
    padding: 12px 18px; border-radius: 12px;
    box-shadow: 0 12px 32px rgba(10,31,68,.28);
    transform: rotate(2deg);
}
.lx-howstart h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; line-height: 1.15; margin-bottom: 28px; }
.lx-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.lx-step { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1.5px dashed var(--line); position: relative; }
.lx-step:last-child { border-bottom: none; }
.lx-step i {
    font-style: normal; flex-shrink: 0;
    width: 40px; height: 40px; border-radius: 12px;
    background: var(--gold); color: var(--ink);
    font-family: var(--fd); font-weight: 800; font-size: 17px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(251,199,8,.4);
}
.lx-step b { display: block; font-family: var(--fd); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.lx-step span { font-size: 14px; line-height: 1.6; color: var(--slate); }
.lx-howstart-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ═══ Browser frame (скрины в блоках) ═══ */
.lx-browser {
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    box-shadow: 0 24px 64px rgba(10,31,68,.14);
    overflow: hidden; transition: transform .3s, box-shadow .3s;
}
.lx-browser:hover { transform: translateY(-5px) rotate(-.4deg); box-shadow: 0 32px 80px rgba(10,31,68,.2); }
.lx-browser-bar {
    display: flex; align-items: center; gap: 6px;
    background: var(--ink); padding: 10px 14px;
}
.lx-browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.25); }
.lx-browser-bar i:first-child { background: #ff5f57; }
.lx-browser-bar i:nth-child(2) { background: var(--gold); }
.lx-browser-bar span {
    margin-left: 10px; font-size: 11px; color: #8FA2C4;
    background: rgba(255,255,255,.08); border-radius: 6px; padding: 3px 12px;
    flex: 1; text-align: center; font-family: 'SF Mono', monospace;
}
.lx-browser img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; object-position: top left; }

/* ═══ ЗАЧЕМ ЭТО ═══ */
.lx-why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.lx-why-card {
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px; padding: 36px 34px;
    transition: transform .25s, border-color .25s, background .25s;
}
.lx-why-card:hover { transform: translateY(-5px); border-color: rgba(251,199,8,.55); background: rgba(251,199,8,.06); }
.lx-why-ico { font-size: 38px; margin-bottom: 18px; }
.lx-why-card h3 { font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.lx-why-card p { font-size: 14.5px; line-height: 1.7; color: #B9C6DE; margin-bottom: 18px; }
.lx-why-card p b { color: var(--gold); }
.lx-why-link {
    font-family: var(--fd); font-size: 13px; font-weight: 700;
    color: var(--gold); text-decoration: none;
    border-bottom: 2px solid rgba(251,199,8,.35); padding-bottom: 3px;
    transition: border-color .2s;
}
.lx-why-link:hover { border-color: var(--gold); }
.lx-why .lx-mini-stats { margin-top: 48px; justify-content: center; }

/* ═══ SHOWCASE-блоки (виджеты / сайты) ═══ */
.lx-showcase-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.lx-showcase-grid.flip .lx-showcase-shot { order: 2; }
.lx-showcase h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; line-height: 1.15; margin: 14px 0 18px; }
.lx-check-list { list-style: none; margin: 24px 0 32px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.lx-check-list li { position: relative; padding-left: 34px; font-size: 15px; line-height: 1.55; color: var(--slate); }
.lx-check-list li b { color: var(--ink); }
.lx-check-list li::before {
    content: '✓'; position: absolute; left: 0; top: 0;
    width: 22px; height: 22px; border-radius: 7px;
    background: var(--gold); color: var(--ink);
    font-size: 13px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.lx-feat-link { color: var(--gold); font-weight: 600; text-decoration: none; white-space: nowrap; }
.lx-feat-link:hover { text-decoration: underline; }

/* ═══ ADAPTIVE ═══ */
@media (max-width: 980px) {
    /* Диагональ на мобильных: белый верх, синяя зона телефона с диагональным срезом */
    .lx-hero::before, .lx-hero::after { display: none; }
    .lx-hero { background: #fff; }
    .lx-hero-grid { grid-template-columns: 1fr; gap: 44px; padding-top: 110px; padding-bottom: 0; min-height: 0; }
    .lx-hero-phone-wrap {
        background: var(--ink);
        border-radius: 0;
        margin: 0 -24px;
        padding: 132px 24px 52px;
        clip-path: polygon(0 0, 100% 110px, 100% 100%, 0 100%);
        overflow: hidden;
        position: relative;
    }
    .lx-hero-phone-wrap.rv { opacity: 1; transform: none; }
    .lx-hero-phone-wrap::before {
        content: '';
        position: absolute; inset: 0;
        background:
            radial-gradient(400px 260px at 80% 0%, rgba(251,199,8,.16), transparent 60%),
            linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
        background-size: auto, 48px 48px, 48px 48px;
    }
    .lx-orbit { display: none; }
    .lx-chat-grid, .lx-dual, .lx-form-grid, .lx-onprem { grid-template-columns: 1fr; }
    .lx-howstart-grid, .lx-showcase-grid, .lx-why-cards { grid-template-columns: 1fr; gap: 40px; }
    .lx-showcase-grid.flip .lx-showcase-shot { order: 0; }
    .lx-howstart-badge { right: 8px; bottom: -14px; }
    .lx-benefit { grid-template-columns: 60px 1fr; }
    .lx-benefit-proof { grid-column: 2; }
    .lx-benefit-num { font-size: 32px; }
    .lx-chat-mock { margin: 0 auto; transform: none; }
    .lx-statement-grid { grid-template-columns: 1fr; }
    .lx-webbanner { flex-direction: column; align-items: flex-start; padding: 36px 28px; }
    .lx-onprem { padding: 36px 28px; }
    .lx-sec { padding: 68px 20px; }

    .lx-mob-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 36px; }
    .lx-mob-center { order: -1; }
    .lx-mob-feat::after { display: none; }
    .lx-mob-col { gap: 16px; }
    .lx-mob-feat { padding: 16px 18px; }
    .lx-phone { width: 220px; border-radius: 30px; }
    .lx-phone-notch { width: 70px; height: 16px; }
    .lx-phone-screen { border-radius: 20px; }
    .lx-phone-list { min-height: auto; padding: 9px; gap: 7px; }
    .lx-mob .lx-phone-list { min-height: auto; }
    .lx-mob-cta { margin-top: 32px; flex-direction: column; gap: 10px; }
}
