/* ============================================================
   ChudoWork — Engineer Landing
   Brand tokens from variables.css
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.lp {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    color: var(--cw-color-text);
    background: var(--cw-color-bg);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
strong { font-weight: 700; }

.lp-container {
    width: min(1200px, calc(100% - 2rem));
    margin-inline: auto;
}

/* ---------- Brand ---------- */
.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.lp-brand__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.lp-brand__word {
    font-family: Rubik, system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.lp-brand__chudo { color: var(--cw-color-accent); }
.lp-brand__work { color: var(--cw-color-primary); }

/* ---------- Buttons ---------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition:
        transform var(--cw-transition-base),
        box-shadow var(--cw-transition-base),
        background var(--cw-transition-base),
        color var(--cw-transition-base),
        border-color var(--cw-transition-base);
    white-space: nowrap;
}

.lp-btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.lp-btn--lg { padding: 0.8rem 1.35rem; font-size: 1rem; }

.lp-btn--primary {
    background: var(--cw-color-primary);
    color: #fff;
    box-shadow:
        rgba(31, 182, 188, 0.12) 0px 4px 5px 0px,
        rgba(31, 182, 188, 0.10) 0px 8px 15px 0px,
        rgba(31, 182, 188, 0.16) 0px 15px 30px 0px;
}

.lp-btn--primary:hover {
    background: var(--cw-color-primary-dark);
    transform: translateY(-1px);
    box-shadow:
        rgba(31, 182, 188, 0.16) 0px 6px 8px 0px,
        rgba(31, 182, 188, 0.14) 0px 12px 20px 0px,
        rgba(31, 182, 188, 0.20) 0px 18px 34px 0px;
}

.lp-btn--ghost {
    color: var(--cw-color-text);
    background: transparent;
}

.lp-btn--ghost:hover { background: rgba(31, 182, 188, 0.08); }

.lp-btn--outline {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: var(--cw-color-text);
    box-shadow: 0 1px 2px rgba(15, 35, 52, 0.04);
}

.lp-btn--outline:hover {
    border-color: rgba(31, 182, 188, 0.45);
    color: var(--cw-color-primary-dark);
    box-shadow: 0 4px 12px rgba(31, 182, 188, 0.1);
}

.lp-btn--glass {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.lp-btn--glass:hover {
    background: rgba(255, 255, 255, 0.16);
}

/* ---------- Header ---------- */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.lp-header.is-scrolled,
.lp-header.is-open {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.lp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 68px;
}

.lp-header__brand-block {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.lp-nav {
    display: none;
    align-items: center;
    gap: 1.35rem;
    font-size: 0.9rem;
    font-weight: 550;
    color: var(--cw-color-text-muted);
}

.lp-nav a:hover { color: var(--cw-color-primary-dark); }

.lp-header__actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.lp-header__login {
    font-weight: 600;
    color: var(--cw-color-text);
}

.lp-burger {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 0;
    color: var(--cw-color-text);
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.lp-burger:hover,
.lp-burger:focus-visible {
    background: rgba(15, 23, 42, 0.05);
}

.lp-burger:focus-visible {
    outline: 2px solid rgba(31, 182, 188, 0.45);
    outline-offset: 2px;
}

.lp-burger span {
    display: block;
    width: 18px;
    height: 1.75px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.22s ease, opacity 0.18s ease;
    transform-origin: center;
}

.lp-burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.75px) rotate(45deg);
}

.lp-burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.4);
}

.lp-burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.75px) rotate(-45deg);
}

.lp-mobile-nav {
    display: none;
    width: 100%;
    background: #fff;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px rgba(15, 35, 52, 0.08);
}

.lp-mobile-nav:not([hidden]) {
    display: block;
}

.lp-mobile-nav[hidden] {
    display: none !important;
}

.lp-mobile-nav__inner {
    width: min(1200px, calc(100% - 2rem));
    margin-inline: auto;
    padding: 1rem 0 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.lp-mobile-nav__links a {
    display: block;
    padding: 0.85rem 0.95rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--cw-color-text);
    transition: background 0.15s ease, color 0.15s ease;
}

.lp-mobile-nav__links a:hover,
.lp-mobile-nav__links a:active {
    background: rgba(31, 182, 188, 0.08);
    color: var(--cw-color-primary-dark);
}

.lp-mobile-nav__cta {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 0.25rem;
}

.lp-mobile-nav__cta .lp-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
    box-shadow:
        rgba(31, 182, 188, 0.18) 0px 8px 20px 0px,
        rgba(31, 182, 188, 0.12) 0px 2px 6px 0px;
}

.lp-mobile-nav__login {
    display: block;
    text-align: center;
    padding: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cw-color-primary-dark);
}

.lp-mobile-nav__login:hover {
    text-decoration: underline;
}

@media (min-width: 900px) {
    .lp-nav { display: flex; }
    .lp-burger { display: none; }
    .lp-mobile-nav { display: none !important; }
}

/* ---------- Typography helpers ---------- */
.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--cw-color-primary-dark);
}

.lp-eyebrow--light { color: rgba(255, 255, 255, 0.72); }

.lp-h2 {
    margin: 0;
    font-family: Rubik, system-ui, sans-serif;
    font-size: clamp(1.85rem, 3.6vw, 2.85rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.18;
    color: var(--cw-color-text);
}

.lp-h2--light { color: #fff; }

.lp-lead {
    margin: 0.85rem 0 0;
    max-width: 40rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--cw-color-text-muted);
}

.lp-lead--light { color: rgba(255, 255, 255, 0.7); }

.lp-section {
    position: relative;
    z-index: 1;
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    scroll-margin-top: 88px;
}

.lp-section--muted {
    background: #fff;
    border-block: 1px solid rgba(15, 23, 42, 0.06);
}

.lp-section--dark {
    background: #0f1c24;
    color: #fff;
}

.lp-section__head {
    text-align: center;
    margin-bottom: clamp(2.25rem, 4.5vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp-section__head--left {
    text-align: left;
    align-items: flex-start;
    margin-bottom: 0;
}

.lp-section__head .lp-lead {
    text-align: center;
}

.lp-section__head--left .lp-lead {
    text-align: left;
}

.lp-meta-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cw-color-text-muted);
    margin-bottom: 0.25rem;
}

.lp-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.78rem;
    color: var(--cw-color-text-light);
    font-weight: 600;
}

.lp-muted { color: var(--cw-color-text-muted); font-size: 0.92rem; }

/* ---------- Hero ---------- */
.lp-hero {
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(4.5rem, 9vw, 6.5rem);
    min-height: min(100vh, 880px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.lp-hero__grid-layout {
    position: relative;
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .lp-hero__grid-layout {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3rem;
    }
}

.lp-hero__brandline {
    display: block;
    font-family: Rubik, system-ui, sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.85rem;
}

.lp-hero__title { margin: 0; }

.lp-hero__headline {
    display: block;
    font-family: Rubik, system-ui, sans-serif;
    font-size: clamp(1.55rem, 3.2vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.18;
    color: var(--cw-color-text);
    max-width: 16ch;
}

.lp-hero__lead {
    margin: 1.25rem 0 0;
    max-width: 34rem;
    font-size: 1.08rem;
    color: var(--cw-color-text-muted);
}

.lp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.lp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
    margin: 1.75rem 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cw-color-text-muted);
}

.lp-hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.lp-hero__trust li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cw-color-primary);
}

.lp-hero__stage {
    position: relative;
    min-height: 460px;
    overflow: visible;
}

/* ---------- Devices / mockups ---------- */
.lp-device {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        rgba(31, 182, 188, 0.04) 0px 4px 5px 0px,
        rgba(15, 35, 52, 0.03) 0px 8px 15px 0px,
        rgba(15, 35, 52, 0.08) 0px 30px 50px 0px;
    overflow: hidden;
}

.lp-device--desktop {
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
}

.lp-device__chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.7rem 0.9rem;
    background: #f8fafc;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.lp-device__chrome span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #dbe3ea;
}

.lp-device__chrome span:nth-child(1) { background: #ff6b6b; }
.lp-device__chrome span:nth-child(2) { background: #ffd166; }
.lp-device__chrome span:nth-child(3) { background: #06d6a0; }

.lp-device__url {
    margin-left: 0.75rem;
    flex: 1;
    font-size: 0.72rem;
    color: var(--cw-color-text-light);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    padding: 0.25rem 0.7rem;
}

.lp-device__screen {
    padding: 0.85rem;
    background: #f4f7fb;
}

.lp-mock-tabs {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.lp-mock-tabs span {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    color: var(--cw-color-text-muted);
    background: rgba(15, 23, 42, 0.04);
}

.lp-mock-tabs .is-active {
    background: rgba(31, 182, 188, 0.12);
    color: var(--cw-color-primary-dark);
}

.lp-device--phone {
    position: absolute;
    right: 8px;
    bottom: -12px;
    width: 228px;
    padding: 8px;
    border-radius: 30px;
    overflow: hidden;
    background: #1a1d22;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 12px 24px rgba(15, 35, 52, 0.12),
        0 28px 48px rgba(15, 35, 52, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transform: perspective(1200px) rotateY(-10deg) rotateX(3deg);
    transform-origin: 70% 60%;
}

.lp-device--phone[data-float-slow] {
    animation: none;
}

.lp-phone-chassis {
    display: none;
}

.lp-phone-frame {
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 3;
}

.lp-phone-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        125deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.03) 22%,
        transparent 40%
    );
    opacity: 0.65;
    pointer-events: none;
}

.lp-phone-btn {
    position: absolute;
    background: linear-gradient(180deg, #4a5058, #23272d);
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lp-phone-btn--silent {
    left: -2px;
    top: 78px;
    width: 2px;
    height: 18px;
}

.lp-phone-btn--vol-up {
    left: -2px;
    top: 112px;
    width: 2px;
    height: 28px;
}

.lp-phone-btn--vol-down {
    left: -2px;
    top: 148px;
    width: 2px;
    height: 28px;
}

.lp-phone-btn--power {
    right: -2px;
    top: 128px;
    width: 2px;
    height: 42px;
}

.lp-device__screen--phone {
    position: relative;
    z-index: 1;
    background: #f7fafc;
    border-radius: 22px;
    padding: 0;
    min-height: 390px;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 0 0 2px rgba(0, 0, 0, 0.32);
}

.lp-phone-island {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 17px;
    border-radius: 999px;
    background: #0b0d10;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.25);
    z-index: 4;
    pointer-events: none;
}

.lp-phone-island::after {
    content: '';
    position: absolute;
    right: 7px;
    top: 50%;
    width: 5px;
    height: 5px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #1a2330;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.lp-phone-statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px 0;
    min-height: 34px;
    font-size: 0.64rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 5;
}

.lp-phone-statusbar > span:first-child {
    flex: 0 1 auto;
    min-width: 0;
    padding-left: 4px;
    white-space: nowrap;
    max-width: calc(50% - 44px);
}

.lp-phone-statusbar__icons {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    color: #0f172a;
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(50% - 44px);
    padding-right: 2px;
    overflow: visible;
}

.lp-phone-statusbar__icons svg {
    flex-shrink: 0;
    display: block;
}

.lp-phone-battery {
    display: inline-flex;
    align-items: center;
    width: 16px;
    height: 8px;
    border: 1.2px solid currentColor;
    border-radius: 2px;
    padding: 1px;
    position: relative;
    opacity: 0.9;
    flex-shrink: 0;
    margin-right: 2px;
}

.lp-phone-battery::after {
    content: '';
    position: absolute;
    right: -2.5px;
    top: 1.5px;
    width: 1.5px;
    height: 3.5px;
    border-radius: 0 1px 1px 0;
    background: currentColor;
    opacity: 0.7;
}

.lp-phone-battery i {
    display: block;
    width: 70%;
    height: 100%;
    border-radius: 1px;
    background: #0f172a;
}

.lp-phone-app {
    padding: 0.55rem 0.7rem 1.1rem;
}

.lp-phone-home {
    position: absolute;
    left: 50%;
    bottom: 7px;
    transform: translateX(-50%);
    width: 78px;
    height: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.28);
}

@media (max-width: 640px) {
    .lp-device--phone { display: none; }
    .lp-hero__stage { min-height: 0; }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .lp-device--phone {
        width: 190px;
        right: 4px;
        bottom: -10px;
        transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
    }

    .lp-device__screen--phone {
        min-height: 340px;
        border-radius: 18px;
    }

    .lp-phone-island {
        width: 56px;
        height: 16px;
    }

    .lp-phone-statusbar {
        padding: 9px 12px 0;
        font-size: 0.6rem;
    }

    .lp-phone-statusbar > span:first-child,
    .lp-phone-statusbar__icons {
        max-width: calc(50% - 34px);
    }

    .lp-phone-statusbar__icons svg {
        transform: scale(0.9);
        transform-origin: right center;
    }
}

/* ---------- Engineer LK cards ---------- */
.lp-eng-card {
    display: flex;
    gap: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.65rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    animation: lpCardIn 0.6s ease both;
    animation-delay: calc(var(--i, 0) * 0.08s);
}

.lp-eng-card:hover {
    border-color: #1fb6bc;
    box-shadow: 0 8px 20px rgba(31, 182, 188, 0.12);
    transform: translateY(-1px);
}

.lp-eng-card--row {
    align-items: stretch;
    flex-wrap: wrap;
}

.lp-eng-card__body,
.lp-eng-card__main {
    flex: 1;
    min-width: 0;
    padding: 0.85rem 0.9rem;
}

.lp-eng-card h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 650;
    color: #111827;
    line-height: 1.35;
}

.lp-eng-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.45rem;
}

.lp-eng-card__addr {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    margin: 0.55rem 0 0;
    font-size: 0.82rem;
    color: #4b5563;
}

.lp-eng-card__addr svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #9ca3af;
}

.lp-eng-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.7rem;
    padding-top: 0.65rem;
    border-top: 1px solid #f3f4f6;
}

.lp-eng-card__meta strong,
.lp-eng-card__aside-meta strong {
    display: block;
    font-size: 0.88rem;
    color: #111827;
}

.lp-eng-card__meta .is-teal,
.lp-eng-card__aside-meta .is-teal {
    color: #1fb6bc;
}

.lp-eng-card__aside-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 0.5rem;
    text-align: right;
    min-width: 110px;
}

.lp-eng-card .eng-available-actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.85rem 0.9rem;
    align-self: center;
}

.lp-eng-card .eng-available-actions__take {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #1fb6bc;
    border-radius: 8px;
    cursor: default;
}

.lp-eng-card .eng-available-actions__view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #64748b;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.lp-eng-card .eng-available-actions__view svg {
    width: 16px;
    height: 16px;
}

.eng-card-client {
    position: relative;
    flex-shrink: 0;
    align-self: stretch;
    display: flex;
    width: 84px;
}

.eng-card-client__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    min-height: 100%;
    padding: 8px 10px;
    border-right: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.eng-card-client__id {
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.eng-card-client__avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    background: #f1f5f9;
}

.eng-card-client__role {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    line-height: 1;
}

.eng-card-client__name {
    font-size: 10px;
    font-weight: 600;
    color: #475569;
    text-align: center;
    line-height: 1.25;
    max-width: 76px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.eng-meta-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 2px;
    display: block;
}

.cw-eng-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
}

.cw-eng-chip__icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.cw-eng-chip--urgent { background: #fee2e2; color: #991b1b; }
.cw-eng-chip--night { background: #e0e7ff; color: #3730a3; }
.cw-eng-chip--height { background: #ffedd5; color: #9a3412; }
.cw-eng-chip--exact { background: #f3e8ff; color: #6b21a8; }
.cw-eng-chip--fixed { background: #ccfbf1; color: #115e59; border: 1px solid rgba(20, 184, 166, 0.25); }

@media (max-width: 720px) {
    .lp-eng-card--row .lp-eng-card__aside-meta {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        text-align: left;
        padding: 0 0.9rem 0.5rem;
        border-top: 1px solid #f3f4f6;
    }
    .lp-eng-card--row .eng-available-actions {
        width: 100%;
        justify-content: flex-start;
        padding-top: 0;
    }
}

/* Ticket cards — legacy fallback kept unused */
.lp-ticket-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.9rem;
    margin-bottom: 0.65rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    animation: lpCardIn 0.6s ease both;
    animation-delay: calc(var(--i, 0) * 0.08s);
}

.lp-ticket-card:hover {
    border-color: var(--cw-color-primary);
    box-shadow: 0 10px 24px rgba(31, 182, 188, 0.12);
    transform: translateY(-2px);
}

.lp-ticket-card--full {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
}

@media (min-width: 720px) {
    .lp-ticket-card--full {
        grid-template-columns: auto 1fr auto;
    }
}

.lp-ticket-card h3 {
    margin: 0.35rem 0 0;
    font-size: 0.98rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.lp-ticket-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.lp-ticket-card__addr {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    margin: 0.55rem 0 0;
    font-size: 0.82rem;
    color: #4b5563;
}

.lp-ticket-card__addr em {
    font-style: normal;
    color: var(--cw-color-primary);
    font-weight: 600;
}

.lp-ticket-card__addr svg { flex-shrink: 0; margin-top: 2px; color: #9ca3af; }

.lp-ticket-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.7rem;
    padding-top: 0.7rem;
    border-top: 1px solid #f3f4f6;
}

.lp-ticket-card__meta strong {
    display: block;
    font-size: 0.88rem;
    color: #111827;
}

.lp-ticket-card__budget strong { color: var(--cw-color-primary); }

.lp-ticket-card__actions {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.lp-ticket-card__actions--col {
    margin-top: 0;
    flex-direction: column;
    justify-content: center;
    min-width: 96px;
}

.lp-mock-take {
    background: #1fb6bc;
    color: #fff;
    border-radius: 8px;
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 700;
    transition: background 0.15s ease, transform 0.15s ease;
}

.lp-mock-take:hover {
    background: #149098;
    transform: translateY(-1px);
}

.lp-mock-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 650;
    color: #4b5563;
    background: #f9fafb;
}

.lp-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(31, 182, 188, 0.12);
    color: var(--cw-color-primary-dark);
    font-weight: 800;
    font-family: Rubik, system-ui, sans-serif;
}

/* Chips — same as cabinet */
.cw-eng-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.4;
}

.cw-eng-chip--urgent { background: #fee2e2; color: #991b1b; }
.cw-eng-chip--night { background: #e0e7ff; color: #3730a3; }
.cw-eng-chip--height { background: #ffedd5; color: #9a3412; }
.cw-eng-chip--exact { background: #f3e8ff; color: #6b21a8; }
.cw-eng-chip--fixed { background: #ccfbf1; color: #115e59; border: 1px solid rgba(20, 184, 166, 0.25); }

/* Status badges — cabinet language */
.lk-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.3;
}

.lk-status-badge--new { background: #dbeafe; color: #1e40af; }
.lk-status-badge--accepted,
.lk-status-badge--assigned { background: #ede9fe; color: #5b21b6; }
.lk-status-badge--in_work { background: #ccfbf1; color: #0f766e; }
.lk-status-badge--done,
.lk-status-badge--completed { background: #dcfce7; color: #166534; }
.lk-status-badge--on_hold { background: #fef3c7; color: #92400e; }
.lk-status-badge--pending_review { background: #e0e7ff; color: #3730a3; }

/* Phone mock content */
.lp-phone-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

.lp-phone-head__eyebrow {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.1rem;
}

.lp-phone-head strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.lp-phone-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 0.75rem;
    background: #fff;
    box-shadow: 0 8px 18px rgba(15, 35, 52, 0.05);
}

.lp-phone-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    margin-bottom: 0.2rem;
}

.lp-phone-card__id {
    margin: 0;
    font-family: ui-monospace, monospace;
    font-size: 0.68rem;
    color: #9aa5b1;
    font-weight: 650;
}

.lp-phone-card__eta {
    font-size: 0.62rem;
    font-weight: 700;
    color: #149098;
    background: rgba(31, 182, 188, 0.1);
    border-radius: 999px;
    padding: 0.15rem 0.4rem;
}

.lp-phone-card h4 {
    margin: 0 0 0.65rem;
    font-size: 0.84rem;
    line-height: 1.3;
    color: #0f172a;
}

.lp-phone-progress {
    height: 6px;
    border-radius: 999px;
    background: #eef2f6;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.lp-phone-progress__bar {
    height: 100%;
    width: 68%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cw-color-primary), var(--cw-color-primary-light));
    animation: lpProgress 2.8s ease-in-out infinite alternate;
}

.lp-phone-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.38rem;
}

.lp-phone-steps li {
    font-size: 0.7rem;
    color: #9aa5b1;
    padding-left: 0.95rem;
    position: relative;
}

.lp-phone-steps li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.32rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
}

.lp-phone-steps .is-done { color: #0f766e; }
.lp-phone-steps .is-done::before { background: var(--cw-color-primary); }
.lp-phone-steps .is-current { color: #111827; font-weight: 700; }
.lp-phone-steps .is-current::before {
    background: var(--cw-color-accent);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.18);
}

.lp-phone-notify {
    margin-top: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.65rem;
    border-radius: 12px;
    background: rgba(31, 182, 188, 0.1);
    border: 1px solid rgba(31, 182, 188, 0.14);
    color: var(--cw-color-primary-dark);
    font-size: 0.66rem;
    font-weight: 650;
    line-height: 1.3;
    animation: lpNotify 3.5s ease-in-out infinite;
}

.lp-phone-notify__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cw-color-primary);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(31, 182, 188, 0.18);
}

@keyframes lpPhoneFloat {
    0%, 100% { transform: perspective(900px) rotateY(-12deg) rotateX(4deg) rotateZ(2deg) translateY(0); }
    50% { transform: perspective(900px) rotateY(-12deg) rotateX(4deg) rotateZ(2deg) translateY(-10px); }
}

.lp-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    width: 28px;
    height: 42px;
    border: 2px solid rgba(15, 23, 42, 0.15);
    border-radius: 999px;
    display: grid;
    place-items: start center;
    padding-top: 8px;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: auto;
}

.lp-scroll-hint.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.lp-scroll-hint span {
    width: 4px;
    height: 8px;
    border-radius: 999px;
    background: var(--cw-color-primary);
    animation: lpScrollDot 1.6s ease-in-out infinite;
}

/* ---------- Stats (motion rail) ---------- */
.lp-stats {
    position: relative;
    z-index: 3;
    margin-top: -0.35rem;
    padding-bottom: 0.5rem;
}

.lp-stats-rail {
    position: relative;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        rgba(31, 182, 188, 0.03) 0px 4px 5px 0px,
        rgba(15, 35, 52, 0.04) 0px 12px 28px 0px;
    isolation: isolate;
}

.lp-stats__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0.35rem;
}

@media (min-width: 900px) {
    .lp-stats__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding: 0.5rem;
    }
}

.lp-stat {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.15rem 1rem;
    border-radius: 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
    animation: none;
    transition: background 0.2s ease;
}

.lp-stat + .lp-stat {
    border-left: 1px solid rgba(15, 23, 42, 0.06);
}

@media (max-width: 899px) {
    .lp-stat:nth-child(2n) {
        border-left: 1px solid rgba(15, 23, 42, 0.06);
    }

    .lp-stat:nth-child(n + 3) {
        border-top: 1px solid rgba(15, 23, 42, 0.06);
    }
}

.lp-stat:hover {
    transform: none;
    background: rgba(31, 182, 188, 0.04);
    border-color: transparent;
    box-shadow: none;
}

.lp-stat.is-counted .lp-stat__value {
    animation: lpStatPop 0.45s ease;
}

.lp-stat__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--cw-color-primary-dark);
    background: rgba(31, 182, 188, 0.1);
    flex-shrink: 0;
}

.lp-stat__icon--accent {
    color: #b91c1c;
    background: rgba(229, 57, 53, 0.08);
}

.lp-stat__icon svg {
    width: 20px;
    height: 20px;
}

.lp-stat__body {
    min-width: 0;
    flex: 1;
}

.lp-stat__value {
    font-family: Rubik, system-ui, sans-serif;
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--cw-color-text);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.lp-stat__label {
    margin-top: 0.2rem;
    font-size: 0.78rem;
    color: var(--cw-color-text-muted);
    font-weight: 500;
    line-height: 1.25;
}

.lp-stat__live {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    width: fit-content;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(31, 182, 188, 0.1);
    color: #0f766e;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lp-stat__live i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #14b8a6;
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.55);
    animation: lpLivePulse 1.8s ease-out infinite;
}

.lp-stat__live--soft {
    background: rgba(15, 23, 42, 0.04);
    color: #64748b;
}

.lp-stat__live--soft i {
    background: #94a3b8;
    animation: none;
    box-shadow: none;
}

/* Infinite ticker */
.lp-stats-tickers {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.lp-stats-ticker {
    position: relative;
    overflow: hidden;
    /* без mask: он обрезает тени чипов в жёсткую линию */
}

.lp-stats-ticker::before,
.lp-stats-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 2;
    pointer-events: none;
}

.lp-stats-ticker::before {
    left: 0;
    background: linear-gradient(90deg, #f4f7fb 15%, transparent 100%);
}

.lp-stats-ticker::after {
    right: 0;
    background: linear-gradient(270deg, #f4f7fb 15%, transparent 100%);
}

.lp-stats-ticker__track {
    display: flex;
    width: max-content;
    gap: 0.55rem;
    animation: lpTicker 32s linear infinite;
}

.lp-stats-ticker__track--reverse {
    animation-name: lpTickerReverse;
    animation-duration: 42s;
}

.lp-stats-ticker:hover .lp-stats-ticker__track {
    animation-play-state: paused;
}

.lp-stats-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex: 0 0 auto;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.75rem;
    font-weight: 550;
    color: #475569;
    white-space: nowrap;
}

.lp-stats-chip i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #94a3b8;
    flex-shrink: 0;
}

.lp-stats-chip--teal i {
    background: #14b8a6;
}

.lp-stats-chip--red i {
    background: #e53935;
}

.lp-stats-chip--soft i { background: #8b9fff; }

.lp-client-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex: 0 0 auto;
    padding: 0.3rem 0.8rem 0.3rem 0.3rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    white-space: nowrap;
}

.lp-client-chip img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #e6f7f8;
}

.lp-client-chip__name {
    font-size: 0.78rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.01em;
    max-width: 11.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes lpStatsSpin {
    to { transform: rotate(360deg); }
}

@keyframes lpStatIn {
    from { opacity: 0; transform: translateY(18px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

@keyframes lpStatPop {
    0% { transform: scale(1); }
    40% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

@keyframes lpLivePulse {
    0% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(20, 184, 166, 0); }
    100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); }
}

@keyframes lpTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes lpTickerReverse {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* ---------- Steps ---------- */
.lp-steps {
    display: grid;
    gap: 1rem;
}

@media (min-width: 900px) {
    .lp-steps { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.lp-step {
    position: relative;
    padding: 1.5rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        rgba(31, 182, 188, 0.03) 0px 4px 5px 0px,
        rgba(15, 35, 52, 0.04) 0px 10px 24px 0px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.lp-step:hover {
    transform: none;
    box-shadow:
        rgba(31, 182, 188, 0.05) 0px 6px 8px 0px,
        rgba(15, 35, 52, 0.06) 0px 14px 28px 0px;
    border-color: rgba(31, 182, 188, 0.22);
}

.lp-step__num {
    font-family: Rubik, system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--cw-color-primary);
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.lp-step__visual {
    min-height: 88px;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
}

.lp-step h3 {
    margin: 0 0 0.5rem;
    font-family: Rubik, system-ui, sans-serif;
    font-size: 1.15rem;
}

.lp-step p {
    margin: 0;
    color: var(--cw-color-text-muted);
    font-size: 0.95rem;
}

.lp-mini-feed {
    width: 100%;
    display: grid;
    gap: 0.45rem;
}

.lp-mini-row {
    display: grid;
    grid-template-columns: 28px 1fr 48px;
    gap: 0.45rem;
    align-items: center;
}

.lp-mini-row i,
.lp-mini-row b,
.lp-mini-row s {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: #e8eef4;
    text-decoration: none;
}

.lp-mini-row i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(31, 182, 188, 0.15);
}

.lp-mini-row.is-pulse b {
    background: linear-gradient(90deg, rgba(31, 182, 188, 0.35), rgba(31, 182, 188, 0.08));
    animation: lpShimmer 1.8s ease-in-out infinite;
}

.lp-mini-status {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.lp-mini-arrow {
    color: var(--cw-color-text-light);
    font-size: 0.85rem;
}

.lp-mini-money {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(31, 182, 188, 0.1), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(31, 182, 188, 0.18);
}

.lp-mini-money__sum {
    font-family: Rubik, system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--cw-color-primary-dark);
}

.lp-mini-money__bar {
    margin: 0.55rem 0;
    height: 6px;
    border-radius: 999px;
    background: #e8eef4;
    overflow: hidden;
}

.lp-mini-money__bar span {
    display: block;
    width: 72%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cw-color-primary), var(--cw-color-primary-light));
}

.lp-mini-money__cap {
    font-size: 0.75rem;
    color: var(--cw-color-text-muted);
}

/* ---------- Showcase ---------- */
.lp-showcase {
    position: relative;
    border-radius: 16px;
    isolation: isolate;
}

.lp-showcase__browser {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        rgba(31, 182, 188, 0.04) 0px 4px 5px 0px,
        rgba(15, 35, 52, 0.03) 0px 8px 15px 0px,
        rgba(15, 35, 52, 0.08) 0px 30px 50px 0px;
    overflow: hidden;
}

.lp-showcase__browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.lp-showcase__browser-bar > span:nth-child(-n+3) {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dbe3ea;
}

.lp-showcase__browser-bar > span:nth-child(1) { background: #ff6b6b; }
.lp-showcase__browser-bar > span:nth-child(2) { background: #ffd166; }
.lp-showcase__browser-bar > span:nth-child(3) { background: #06d6a0; }

.lp-showcase__browser-url {
    flex: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: 0.55rem;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.72rem;
    font-weight: 500;
    color: #64748b;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.lp-showcase__tabs {
    display: flex;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    overflow-x: auto;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: #fff;
    scrollbar-width: none;
}

.lp-showcase__tabs::-webkit-scrollbar { display: none; }

.lp-showcase__tab {
    flex: 0 0 auto;
    padding: 0.55rem 0.95rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cw-color-text-muted);
    background: transparent;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lp-showcase__tab:hover {
    color: var(--cw-color-text);
    background: rgba(15, 23, 42, 0.04);
}

.lp-showcase__tab.is-active {
    background: rgba(31, 182, 188, 0.12);
    color: var(--cw-color-primary-dark);
    box-shadow: none;
}

.lp-showcase__stage {
    position: relative;
    background: #f7fafc;
}

.lp-panel[hidden] { display: none !important; }

.lp-panel.is-active {
    animation: lpPanelIn 0.45s ease both;
}

.lp-panel__chrome {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.15rem 1.25rem 0;
}

.lp-panel__title {
    font-family: Rubik, system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.lp-panel__subtitle {
    margin: 0.25rem 0 0;
    font-size: 0.82rem;
    color: var(--cw-color-text-muted);
    font-weight: 550;
}

.lp-panel__filters {
    display: flex;
    gap: 0.35rem;
}

.lp-panel__filters span {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    background: #fff;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.lp-panel__filters .is-on {
    background: rgba(31, 182, 188, 0.12);
    color: var(--cw-color-primary-dark);
    border-color: rgba(31, 182, 188, 0.25);
}

.lp-panel__body {
    padding: 1rem 1.15rem 1.15rem;
}

.lp-panel__body--cards {
    display: grid;
    gap: 0.85rem;
}

.lp-panel__footnote {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    margin: 0 1.15rem 1.2rem;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(31, 182, 188, 0.1), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(31, 182, 188, 0.18);
    font-size: 0.82rem;
    color: #475569;
    font-weight: 550;
}

.lp-panel__footnote a {
    font-weight: 800;
    color: var(--cw-color-primary-dark);
}

.lp-panel__footnote a:hover { text-decoration: underline; }

/* Promo ticket cards */
.lp-promo-card {
    position: relative;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 140px auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 10px 28px rgba(15, 35, 52, 0.05);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    animation: lpCardIn 0.55s ease both;
    animation-delay: calc(var(--i, 0) * 80ms);
}

.lp-promo-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1fb6bc, #35d2ce);
    opacity: 0.35;
}

.lp-promo-card:hover {
    transform: none;
    border-color: rgba(31, 182, 188, 0.28);
    box-shadow:
        rgba(31, 182, 188, 0.05) 0px 6px 10px 0px,
        rgba(15, 35, 52, 0.06) 0px 16px 32px 0px;
}

.lp-promo-card:hover::before { opacity: 1; }

.lp-promo-card.is-featured {
    background: #fff;
    border-color: rgba(31, 182, 188, 0.28);
    box-shadow:
        rgba(31, 182, 188, 0.06) 0px 4px 8px 0px,
        rgba(15, 35, 52, 0.05) 0px 12px 28px 0px;
}

.lp-promo-card.is-featured::before { opacity: 1; }

.lp-promo-card__ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(31, 182, 188, 0.12);
    color: var(--cw-color-primary-dark);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: none;
}

.lp-promo-card__client {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
    padding-right: 0.75rem;
    border-right: 1px solid #eef2f6;
}

.lp-promo-card__client img {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 8px 18px rgba(15, 35, 52, 0.12);
    background: #e8f7fb;
    flex-shrink: 0;
}

.lp-promo-card__client > div {
    min-width: 0;
    display: grid;
    gap: 0.1rem;
}

.lp-promo-card__id {
    font-family: ui-monospace, monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
}

.lp-promo-card__client strong {
    font-size: 0.84rem;
    color: #0f172a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lp-promo-card__client em {
    font-style: normal;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}

.lp-promo-card__main {
    min-width: 0;
}

.lp-promo-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
}

.lp-promo-card h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 750;
    color: #0f172a;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.lp-promo-card__addr {
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    margin: 0.45rem 0 0;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.35;
}

.lp-promo-card__addr svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #94a3b8;
}

.lp-promo-card__pay {
    text-align: right;
    padding: 0.35rem 0.25rem;
}

.lp-promo-card__pay strong {
    display: block;
    margin-top: 0.1rem;
    font-family: Rubik, system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1fb6bc;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.lp-promo-card__when {
    display: block;
    margin-top: 0.55rem;
    font-size: 0.78rem;
    font-weight: 650;
    color: #0f172a;
}

.lp-promo-card__cta {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    justify-content: flex-end;
}

.lp-promo-card__take {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #1fb6bc, #35d2ce);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 750;
    box-shadow: 0 10px 20px rgba(31, 182, 188, 0.28);
    white-space: nowrap;
}

.lp-promo-card:hover .lp-promo-card__take {
    box-shadow: 0 14px 26px rgba(31, 182, 188, 0.38);
}

.lp-promo-card__open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
}

.lp-promo-card__open svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 980px) {
    .lp-promo-card {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "client pay"
            "main main"
            "cta cta";
        gap: 0.85rem;
    }

    .lp-promo-card__client {
        grid-area: client;
        border-right: 0;
        padding-right: 0;
    }

    .lp-promo-card__main { grid-area: main; }
    .lp-promo-card__pay {
        grid-area: pay;
        text-align: right;
    }
    .lp-promo-card__cta {
        grid-area: cta;
        justify-content: stretch;
    }
    .lp-promo-card__take { flex: 1; }
}

.lp-inwork-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #fff;
}

.lp-inwork-card__head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.lp-inwork-card h3 {
    margin: 0.2rem 0 0;
    font-size: 1rem;
}

.lp-timeline {
    margin: 1rem 0;
    display: grid;
    gap: 0.45rem;
}

.lp-timeline__item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.85rem;
    color: #9aa5b1;
}

.lp-timeline__item span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e5e7eb;
    flex-shrink: 0;
}

.lp-timeline__item.is-done { color: #0f766e; }
.lp-timeline__item.is-done span { background: var(--cw-color-primary); }
.lp-timeline__item.is-current { color: #111827; font-weight: 650; }
.lp-timeline__item.is-current span {
    background: var(--cw-color-accent);
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.15);
}

.lp-inwork-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.lp-chip-soft {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 0.75rem;
    font-weight: 600;
}

.lp-chip-soft.is-primary {
    background: rgba(31, 182, 188, 0.12);
    color: var(--cw-color-primary-dark);
}

.lp-finance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.lp-finance-stat {
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 14px;
    padding: 0.85rem;
}

.lp-finance-stat strong {
    display: block;
    font-family: Rubik, system-ui, sans-serif;
    font-size: 1.2rem;
    margin-top: 0.15rem;
}

.lp-finance-stat .is-teal { color: var(--cw-color-primary); }
.lp-finance-stat .is-orange { color: #ea580c; }

.lp-finance-tabs {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    margin-bottom: 0.9rem;
}

.lp-finance-tabs span {
    flex: 0 0 auto;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 650;
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.lp-finance-tabs .is-on {
    background: #1fb6bc;
    color: #fff;
    border-color: #1fb6bc;
}

.lp-finance-tabs b {
    display: inline-block;
    margin-left: 0.25rem;
    padding: 0.05rem 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    font-size: 0.7rem;
}

.lp-finance-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.85rem 0;
    border-top: 1px solid #f3f4f6;
}

.lp-finance-row strong { display: block; font-size: 0.92rem; }
.lp-finance-row span { font-size: 0.78rem; color: var(--cw-color-text-muted); }
.lp-finance-row em {
    font-style: normal;
    font-weight: 800;
    color: var(--cw-color-primary);
    font-family: Rubik, system-ui, sans-serif;
}

@media (max-width: 640px) {
    .lp-finance-grid { grid-template-columns: 1fr; }
    .lp-finance-row {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "info sum"
            "btn btn";
    }
    .lp-finance-row > div { grid-area: info; }
    .lp-finance-row em { grid-area: sum; }
    .lp-finance-row .lp-mock-take { grid-area: btn; width: 100%; }
    .lp-ticket-card__actions--col {
        grid-column: 1 / -1;
        flex-direction: row;
    }
}

/* Zone map — real Yandex map */
.lp-zone {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 800px) {
    .lp-zone { grid-template-columns: 1.35fr 0.65fr; align-items: stretch; }
}

.lp-zone__map {
    position: relative;
    min-height: 340px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #e8eef5;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.lp-zone__map-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lp-zone__map-loading {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    place-items: center;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    background:
        linear-gradient(180deg, #eef4f8, #e4ebf2);
}

.lp-zone__map-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.lp-zone__radius-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(31, 182, 188, 0.25);
    color: #149098;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(15, 35, 52, 0.1);
}

.lp-zone__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.75rem;
    padding: 0.45rem 0.7rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 0.72rem;
    font-weight: 650;
    color: #475569;
    box-shadow: 0 8px 18px rgba(15, 35, 52, 0.08);
}

.lp-zone__legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.lp-zone__legend i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.lp-zone__legend i.is-you { background: #1fb6bc; }
.lp-zone__legend i.is-job { background: #22c55e; }
.lp-zone__legend i.is-urgent { background: #e53935; }

.lp-zone__map-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.lp-zone__map-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-zone__side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.25rem 0.15rem;
}

.lp-zone__side h3 {
    margin: 0 0 0.5rem;
    font-family: Rubik, system-ui, sans-serif;
    font-size: 1.25rem;
}

.lp-zone__side p {
    margin: 0 0 1rem;
    color: var(--cw-color-text-muted);
}

.lp-zone__side ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.lp-zone__side li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.92rem;
}

.lp-zone__side li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cw-color-primary);
    flex-shrink: 0;
}

.lp-zone-balloon {
    font-family: Inter, system-ui, sans-serif;
    font-size: 12px;
    line-height: 1.35;
    color: #0f172a;
}

.lp-zone-balloon strong {
    display: block;
    color: #1fb6bc;
    font-size: 13px;
    margin-top: 2px;
}

/* ---------- Benefits ---------- */
.lp-benefits {
    display: grid;
    gap: 1rem;
}

@media (min-width: 700px) {
    .lp-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .lp-benefits { grid-template-columns: repeat(3, 1fr); }
}

.lp-benefit {
    padding: 1.4rem 1.35rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-benefit:hover {
    transform: none;
    border-color: rgba(31, 182, 188, 0.28);
    box-shadow:
        rgba(31, 182, 188, 0.04) 0px 4px 5px 0px,
        rgba(15, 35, 52, 0.05) 0px 12px 24px 0px;
}

.lp-benefit__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(31, 182, 188, 0.1);
    color: var(--cw-color-primary-dark);
    margin-bottom: 1rem;
}

.lp-benefit__icon svg { width: 22px; height: 22px; }

.lp-benefit h3 {
    margin: 0 0 0.45rem;
    font-family: Rubik, system-ui, sans-serif;
    font-size: 1.08rem;
}

.lp-benefit p {
    margin: 0;
    color: var(--cw-color-text-muted);
    font-size: 0.94rem;
}

/* ---------- Territory ---------- */
.lp-territory {
    display: grid;
    gap: 2rem;
}

@media (min-width: 900px) {
    .lp-territory { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.lp-city { margin-bottom: 0.85rem; }

.lp-city__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.lp-city__bar {
    height: 6px;
    border-radius: 4px;
    background: #e8eef4;
    overflow: hidden;
}

.lp-city__bar i {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--cw-color-primary);
    transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.lp-is-ready .lp-territory.is-visible .lp-city__bar i,
.lp-territory.is-visible .lp-city__bar i {
    width: var(--w);
}

.lp-client-grid {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.lp-client-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 6px 16px rgba(15, 35, 52, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.lp-client-card:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 182, 188, 0.35);
}

.lp-client-card img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    background: #f1f5f9;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.lp-client-card strong {
    display: block;
    font-size: 0.92rem;
    color: #0f172a;
}

.lp-client-card span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.78rem;
    color: var(--cw-color-text-muted);
}

.lp-partner-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.lp-partner-cloud span {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cw-color-text-muted);
}

/* ---------- FAQ ---------- */
.lp-faq-layout {
    display: grid;
    gap: 2rem;
}

@media (min-width: 900px) {
    .lp-faq-layout {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 3rem;
        align-items: start;
    }
}

.lp-faq {
    display: grid;
    gap: 0.65rem;
}

.lp-faq__item {
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-faq__item[open] {
    border-color: rgba(31, 182, 188, 0.28);
    box-shadow:
        rgba(31, 182, 188, 0.04) 0px 4px 5px 0px,
        rgba(15, 35, 52, 0.04) 0px 10px 20px 0px;
}

.lp-faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.05rem 1.2rem;
    font-weight: 700;
    font-family: Rubik, system-ui, sans-serif;
    position: relative;
    padding-right: 2.5rem;
}

.lp-faq__item summary::-webkit-details-marker { display: none; }

.lp-faq__item summary::after {
    content: '+';
    position: absolute;
    right: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(31, 182, 188, 0.1);
    color: var(--cw-color-primary-dark);
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease;
}

.lp-faq__item[open] summary::after {
    content: '–';
    background: var(--cw-color-primary);
    color: #fff;
}

.lp-faq__item p {
    margin: 0;
    padding: 0 1.2rem 1.15rem;
    color: var(--cw-color-text-muted);
    font-size: 0.95rem;
}

/* ---------- CTA ---------- */
.lp-cta {
    position: relative;
    z-index: 1;
    padding: 1rem 0 clamp(3.5rem, 7vw, 5.5rem);
}

.lp-cta__card {
    position: relative;
    overflow: visible;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        rgba(31, 182, 188, 0.04) 0px 4px 5px 0px,
        rgba(15, 35, 52, 0.03) 0px 8px 15px 0px,
        rgba(15, 35, 52, 0.08) 0px 30px 50px 0px;
}

.lp-cta__content {
    position: relative;
    display: grid;
    gap: 1.75rem;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    min-width: 0;
}

.lp-cta__copy,
.lp-cta__actions {
    min-width: 0;
    max-width: 100%;
}

.lp-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    width: 100%;
}

.lp-cta__actions .lp-btn {
    display: flex;
    width: 100%;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
}

.lp-cta__login {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cw-color-primary-dark);
    padding: 0.45rem 0.35rem 0;
}

.lp-cta__copy .lp-h2,
.lp-cta__copy .lp-lead {
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
}

@media (min-width: 900px) {
    .lp-cta__content {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
        align-items: center;
        gap: 2.5rem;
        padding: 2.75rem 3rem;
    }
}

.lp-cta__copy .lp-lead {
    max-width: 34rem;
}

.lp-cta__points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.1rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.lp-cta__points li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 550;
    color: var(--cw-color-text-muted);
    max-width: 100%;
    overflow-wrap: anywhere;
}

.lp-cta__points li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cw-color-primary);
    flex-shrink: 0;
}

.lp-cta__mail-short {
    display: none;
}

.lp-cta__login:hover { text-decoration: underline; }

/* ---------- Footer (как в кабинете) ---------- */
.lp-footer {
    position: relative;
    z-index: 1;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(229, 231, 235, 0.6);
    font-family: Rubik, system-ui, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    color: #111827;
}

.lp-footer__wrap {
    width: min(80rem, calc(100% - 2rem));
    margin-inline: auto;
    padding: 1rem 0 1.25rem;
}

@media (min-width: 640px) {
    .lp-footer__wrap {
        padding: 1.25rem 0 1.35rem;
        width: min(80rem, calc(100% - 3rem));
    }
}

@media (min-width: 1024px) {
    .lp-footer__wrap {
        width: min(80rem, calc(100% - 4rem));
    }
}

.lp-footer__stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-footer__head {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

@media (min-width: 640px) {
    .lp-footer__head {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
}

.lp-footer__brand {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    user-select: none;
    font-size: 1.125rem;
    line-height: 1;
    letter-spacing: -0.025em;
}

.lp-footer__brand-chudo {
    font-weight: 700;
    color: #dc2626;
}

.lp-footer__brand-work {
    font-weight: 800;
    color: #1fb6bc;
}

.lp-footer__brand:hover .lp-footer__brand-chudo { color: #b91c1c; }
.lp-footer__brand:hover .lp-footer__brand-work { color: #179ea3; }

.lp-footer__slogan {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.35;
    color: #4b5563;
    text-align: center;
    max-width: 28rem;
}

@media (min-width: 640px) {
    .lp-footer__slogan {
        font-size: 0.875rem;
        text-align: right;
        max-width: 24rem;
        flex-shrink: 0;
    }
}

.lp-footer__panel {
    border-radius: 0.5rem;
    border: 1px solid rgba(229, 231, 235, 0.9);
    background: rgba(248, 250, 252, 0.7);
    padding: 0.65rem 0.75rem;
}

@media (min-width: 640px) {
    .lp-footer__panel {
        padding: 0.75rem 1rem;
    }
}

.lp-footer__panel-row {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

@media (min-width: 1024px) {
    .lp-footer__panel-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
}

.lp-footer__legal {
    text-align: center;
}

@media (min-width: 1024px) {
    .lp-footer__legal {
        text-align: left;
    }
}

.lp-footer__copy {
    margin: 0 0 0.25rem;
    font-size: 0.75rem;
    font-weight: 400;
    color: #4b5563;
}

.lp-footer__legal-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.15rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 400;
}

@media (min-width: 640px) {
    .lp-footer__legal-nav {
        justify-content: flex-start;
        font-size: 0.75rem;
    }
}

.lp-footer__legal-nav a {
    color: #6b7280;
    font-weight: 400;
    transition: color 0.15s ease;
}

.lp-footer__legal-nav a:hover {
    color: #1fb6bc;
}

.lp-footer__dot {
    color: #d1d5db;
    display: none;
}

@media (min-width: 640px) {
    .lp-footer__dot { display: inline; }
}

.lp-footer__contacts {
    padding-top: 0.5rem;
    border-top: 1px solid rgba(229, 231, 235, 0.7);
    font-weight: 400;
}

@media (min-width: 1024px) {
    .lp-footer__contacts {
        padding-top: 0;
        border-top: 0;
        border-left: 1px solid rgba(229, 231, 235, 0.7);
        padding-left: 1rem;
        flex-shrink: 0;
    }
}

.lp-footer__contacts a {
    font-weight: 500;
}

.lp-footer__meta {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(229, 231, 235, 0.7);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .lp-footer__meta {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.lp-footer__metrika {
    display: flex;
    justify-content: center;
    width: 100%;
    font-weight: 400;
}

@media (min-width: 640px) {
    .lp-footer__metrika {
        justify-content: flex-start;
        width: auto;
    }
}

.lp-footer__ver {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 400;
    color: #9ca3af;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .lp-footer__ver { justify-content: flex-end; }
}

.lp-footer__ver-badge {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-weight: 500;
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
    padding: 0.125rem 0.5rem;
}

/* Tailwind utilities used by shared footer partials (landing has no Tailwind) */
.lp-footer .flex { display: flex; }
.lp-footer .inline-flex { display: inline-flex; }
.lp-footer .inline-block { display: inline-block; }
.lp-footer .flex-wrap { flex-wrap: wrap; }
.lp-footer .items-center { align-items: center; }
.lp-footer .items-start { align-items: flex-start; }
.lp-footer .justify-center { justify-content: center; }
.lp-footer .gap-1 { gap: 0.25rem; }
.lp-footer .gap-1\.5 { gap: 0.375rem; }
.lp-footer .gap-x-1 { column-gap: 0.25rem; }
.lp-footer .gap-y-0\.5 { row-gap: 0.125rem; }
.lp-footer .whitespace-nowrap { white-space: nowrap; }
.lp-footer .leading-tight { line-height: 1.25; }
.lp-footer .leading-\[1\.35\] { line-height: 1.35; }
.lp-footer .text-left { text-align: left; }
.lp-footer .text-\[11px\] { font-size: 0.6875rem; }
.lp-footer .text-xs { font-size: 0.75rem; }
.lp-footer .text-gray-700 { color: #374151; }
.lp-footer .text-gray-800 { color: #1f2937; }
.lp-footer .text-gray-400 { color: #9ca3af; font-weight: 400; }
.lp-footer .text-gray-400\/90 { color: rgba(156, 163, 175, 0.9); font-weight: 400; }
.lp-footer .text-gray-300 { color: #d1d5db; }
.lp-footer .text-\[\#1fb6bc\] { color: #1fb6bc; }
.lp-footer .font-medium { font-weight: 500; }
.lp-footer .px-0\.5 { padding-left: 0.125rem; padding-right: 0.125rem; }
.lp-footer .mt-\[3px\] { margin-top: 3px; }
.lp-footer .h-2\.5 { height: 0.625rem; }
.lp-footer .w-2\.5 { width: 0.625rem; }
.lp-footer .flex-shrink-0 { flex-shrink: 0; }
.lp-footer .opacity-70 { opacity: 0.7; }
.lp-footer .object-contain { object-fit: contain; }
.lp-footer .space-y-1 > * + * { margin-top: 0.25rem; }
.lp-footer .max-w-\[min\(100\%\,15rem\)\] { max-width: min(100%, 15rem); }
.lp-footer .hidden { display: none; }
.lp-footer .transition-colors { transition: color 0.15s ease; }
.lp-footer a.hover\:text-\[\#1fb6bc\]:hover,
.lp-footer a:hover { color: #1fb6bc; }
.lp-footer a.hover\:underline:hover { text-decoration: underline; }

@media (min-width: 640px) {
    .lp-footer .sm\:text-xs { font-size: 0.75rem; }
    .lp-footer .sm\:inline { display: inline; }
}

@media (min-width: 768px) {
    .lp-footer .md\:max-w-\[17rem\] { max-width: 17rem; }
}

@media (min-width: 1024px) {
    .lp-footer .lg\:justify-end { justify-content: flex-end; }
}

/* ---------- Reveal / motion ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

[data-float] {
    animation: lpFloat 6s ease-in-out infinite;
}

[data-float-slow] {
    animation: lpFloat 7.5s ease-in-out infinite reverse;
}

@keyframes lpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes lpPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.75; }
}

@keyframes lpCardIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}

@keyframes lpPanelIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}

@keyframes lpProgress {
    from { width: 42%; }
    to { width: 78%; }
}

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

@keyframes lpScrollDot {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

@keyframes lpShimmer {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

@keyframes lpRing {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes lpDotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    [data-float],
    [data-float-slow],
    .lp-device--phone[data-float-slow],
    .lp-eyebrow__dot,
    .lp-phone-progress__bar,
    .lp-phone-notify,
    .lp-scroll-hint span,
    .lp-zone__ring--outer,
    .lp-zone__dot,
    .lp-mini-row.is-pulse b,
    .lp-stats-ticker__track,
    .lp-stat__live i,
    .lp-stat {
        animation: none !important;
    }
}

/* ============================================================
   MOBILE — phone-first polish
   ============================================================ */
@media (max-width: 899px) {
    .lp-header__cta { display: none; }

    .lp-header__login {
        display: none;
    }

    body.lp-nav-open {
        overflow: hidden;
    }

    .lp-mobile-nav {
        max-height: min(70dvh, calc(100dvh - 60px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .lp-mobile-nav__inner {
        width: min(1200px, calc(100% - 1.25rem));
        padding:
            0.85rem 0
            max(1.25rem, env(safe-area-inset-bottom));
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

@media (max-width: 767px) {
    body.lp {
        background-attachment: scroll;
    }

    html,
    body.lp {
        overflow-x: clip;
        max-width: 100%;
    }

    [data-reveal] {
        transform: translateY(16px);
    }

    .lp-container {
        width: min(1160px, calc(100% - 1.25rem));
    }

    /* Шапка на всю ширину экрана — без боковых «полей» контейнера */
    .lp-header > .lp-container.lp-header__inner {
        width: 100%;
        max-width: none;
        min-height: 60px;
        gap: 0.5rem;
        padding-top: env(safe-area-inset-top, 0px);
        padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
        padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
        box-sizing: border-box;
    }

    .lp-brand__logo {
        width: 34px;
        height: 34px;
    }

    .lp-brand__word { font-size: 0.95rem; }

    .lp-header__login {
        padding: 0.5rem 0.75rem;
    }

    .lp-section {
        padding: 3rem 0;
        scroll-margin-top: 72px;
    }

    .lp-section__head {
        margin-bottom: 1.75rem;
        text-align: left;
        align-items: flex-start;
    }

    .lp-section__head .lp-lead {
        text-align: left;
        align-self: stretch;
        max-width: none;
        width: 100%;
    }

    .lp-section__head .lp-h2 {
        align-self: stretch;
        width: 100%;
    }

    .lp-h2 {
        font-size: clamp(1.45rem, 6.5vw, 1.85rem);
        letter-spacing: -0.02em;
    }

    .lp-lead {
        font-size: 0.95rem;
        margin-top: 0.65rem;
    }

    .lp-eyebrow {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }

    /* Hero */
    .lp-hero {
        min-height: 0;
        padding: 1.25rem 0 3.5rem;
        justify-content: flex-start;
    }

    .lp-hero__grid-layout {
        gap: 1.5rem;
    }

    .lp-hero__brandline {
        font-size: clamp(2rem, 11vw, 2.6rem);
        margin-bottom: 0.65rem;
    }

    .lp-hero__headline {
        max-width: none;
        font-size: clamp(1.25rem, 5.8vw, 1.55rem);
    }

    .lp-hero__lead {
        font-size: 0.95rem;
        margin-top: 0.9rem;
    }

    .lp-hero__cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        margin-top: 1.25rem;
    }

    .lp-hero__cta .lp-btn {
        width: 100%;
        min-height: 48px;
        padding: 0.9rem 1.1rem;
    }

    .lp-hero__trust {
        flex-direction: column;
        gap: 0.45rem;
        margin-top: 1.15rem;
        font-size: 0.82rem;
    }

    .lp-hero__stage {
        min-height: 0;
        margin: 0 -0.15rem;
    }

    .lp-device--desktop {
        max-width: none;
        border-radius: 16px;
        margin-left: 0;
    }

    .lp-device--desktop[data-float] {
        animation: none;
    }

    .lp-device__chrome {
        padding: 0.55rem 0.7rem;
    }

    .lp-device__url {
        font-size: 0.65rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .lp-device__screen {
        padding: 0.65rem;
        max-height: none;
    }

    .lp-mock-tabs {
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .lp-mock-tabs::-webkit-scrollbar { display: none; }

    .lp-scroll-hint {
        display: none;
    }

    /* Stats */
    .lp-stats {
        margin-top: 0;
        padding-bottom: 0.25rem;
    }

    .lp-stats-rail {
        border-radius: 16px;
    }

    .lp-stats__grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0.35rem;
    }

    .lp-stat {
        padding: 0.95rem 0.85rem;
        border-radius: 12px;
        animation: none;
        border-left: 0 !important;
    }

    .lp-stat + .lp-stat {
        border-left: 0;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
    }

    .lp-stat:hover {
        transform: none;
    }

    .lp-stat__icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .lp-stat__value {
        font-size: clamp(1.35rem, 7vw, 1.7rem);
    }

    .lp-stat__label {
        font-size: 0.72rem;
    }

    .lp-stats-tickers {
        margin-top: 0.7rem;
        gap: 0.45rem;
    }

    .lp-stats-ticker__track {
        animation-duration: 28s;
    }

    .lp-stats-ticker__track--reverse {
        animation-duration: 36s;
    }

    .lp-stats-chip {
        font-size: 0.7rem;
        padding: 0.4rem 0.7rem;
    }

    .lp-client-chip {
        padding: 0.28rem 0.7rem 0.28rem 0.28rem;
        gap: 0.45rem;
    }

    .lp-client-chip img {
        width: 24px;
        height: 24px;
    }

    .lp-client-chip__name {
        font-size: 0.72rem;
        max-width: 9.5rem;
    }

    /* Steps */
    .lp-steps {
        gap: 0.75rem;
    }

    .lp-step {
        padding: 1.15rem;
        border-radius: 18px;
    }

    .lp-step:hover {
        transform: none;
    }

    .lp-step__visual {
        min-height: 72px;
    }

    .lp-mini-status {
        gap: 0.25rem;
    }

    .lp-mini-arrow { display: none; }

    /* Showcase */
    .lp-showcase {
        border-radius: 16px;
        margin: 0;
    }

    .lp-showcase__browser {
        border-radius: 16px;
    }

    .lp-showcase__browser-bar {
        padding: 0.65rem 0.75rem;
    }

    .lp-showcase__browser-url {
        font-size: 0.65rem;
    }

    .lp-showcase__tabs {
        padding: 0.65rem 0.75rem;
        gap: 0.3rem;
        -webkit-overflow-scrolling: touch;
    }

    .lp-showcase__tab {
        padding: 0.55rem 0.85rem;
        font-size: 0.78rem;
        min-height: 40px;
    }

    .lp-panel__chrome {
        padding: 0.9rem 0.85rem 0;
        gap: 0.55rem;
    }

    .lp-panel__title {
        font-size: 1rem;
        width: 100%;
    }

    .lp-panel__filters {
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .lp-panel__filters::-webkit-scrollbar { display: none; }

    .lp-panel__body {
        padding: 0.75rem 0.75rem 0.85rem;
    }

    .lp-panel__body--cards {
        gap: 0.7rem;
    }

    .lp-panel__footnote {
        margin: 0 0.75rem 0.9rem;
        padding: 0.75rem 0.85rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-promo-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "client"
            "main"
            "pay"
            "cta";
        gap: 0.75rem;
        padding: 0.9rem;
        border-radius: 16px;
    }

    .lp-promo-card:hover {
        transform: none;
    }

    .lp-promo-card__ribbon {
        top: 10px;
        right: 10px;
        font-size: 0.58rem;
    }

    .lp-promo-card__client {
        grid-area: client;
        border-right: 0;
        padding-right: 0;
    }

    .lp-promo-card__client img {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .lp-promo-card__main { grid-area: main; }

    .lp-promo-card h3 {
        font-size: 0.92rem;
        padding-right: 4.5rem;
    }

    .lp-promo-card__pay {
        grid-area: pay;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        text-align: left;
        gap: 1rem;
        padding: 0.65rem 0 0;
        border-top: 1px solid #f1f5f9;
    }

    .lp-promo-card__when {
        margin-top: 0;
        text-align: right;
    }

    .lp-promo-card__pay strong {
        font-size: 1.15rem;
    }

    .lp-promo-card__cta {
        grid-area: cta;
        justify-content: stretch;
    }

    .lp-promo-card__take {
        flex: 1;
        min-height: 44px;
    }

    .lp-promo-card__open {
        width: 44px;
        height: 44px;
    }

    /* Legacy eng-card (hero) mobile */
    .lp-eng-card,
    .lp-eng-card--row {
        display: flex;
        flex-direction: column;
        border-radius: 14px;
        margin-bottom: 0;
    }

    .lp-eng-card .eng-card-client {
        width: 100%;
        align-self: stretch;
    }

    .lp-eng-card .eng-card-client__inner {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 0.65rem;
        padding: 0.75rem 0.85rem;
        border-right: 0;
        border-bottom: 1px solid #e2e8f0;
        border-radius: 0;
        background: #f8fafc;
    }

    .lp-eng-card .eng-card-client__avatar {
        width: 40px;
        height: 40px;
        border-radius: 11px;
        order: 1;
    }

    .lp-eng-card .eng-card-client__id {
        order: 0;
        font-size: 0.78rem;
        min-width: 2.4rem;
    }

    .lp-eng-card .eng-card-client__role {
        display: none;
    }

    .lp-eng-card .eng-card-client__name {
        order: 2;
        max-width: none;
        flex: 1;
        min-width: 0;
        font-size: 0.8rem;
        text-align: left;
        -webkit-line-clamp: 1;
    }

    .lp-eng-card__body,
    .lp-eng-card__main {
        padding: 0.85rem;
    }

    .lp-eng-card h3 {
        font-size: 0.92rem;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .lp-eng-card__addr {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .lp-eng-card__aside-meta {
        flex-direction: row;
        width: 100%;
        min-width: 0;
        justify-content: space-between;
        text-align: left;
        padding: 0 0.85rem 0.65rem;
        border-top: 0;
        gap: 1rem;
    }

    .lp-eng-card .eng-available-actions {
        width: 100%;
        justify-content: stretch;
        padding: 0 0.85rem 0.85rem;
        gap: 0.5rem;
    }

    .lp-eng-card .eng-available-actions__take {
        flex: 1;
        height: 40px;
        font-size: 0.85rem;
    }

    .lp-eng-card .eng-available-actions__view {
        width: 40px;
        height: 40px;
    }

    .cw-eng-chip {
        font-size: 10px;
        padding: 2px 6px;
    }

    /* In-work / finance panels */
    .lp-inwork-card {
        padding: 0.85rem;
        border-radius: 14px;
    }

    .lp-inwork-card__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .lp-finance-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .lp-finance-tabs {
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .lp-finance-tabs::-webkit-scrollbar { display: none; }

    .lp-finance-row {
        grid-template-columns: 1fr auto;
        gap: 0.5rem 0.75rem;
    }

    .lp-finance-row .lp-mock-take {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 40px;
    }

    /* Zone */
    .lp-zone__map {
        min-height: 260px;
        border-radius: 16px;
    }

    .lp-zone__map-overlay {
        padding: 10px;
    }

    .lp-zone__legend {
        font-size: 0.68rem;
        gap: 0.4rem 0.65rem;
    }

    .lp-zone__side h3 {
        font-size: 1.1rem;
    }

    /* Benefits */
    .lp-benefit {
        padding: 1.1rem 1rem;
        border-radius: 16px;
    }

    .lp-benefit:hover {
        transform: none;
    }

    .lp-benefit__icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        margin-bottom: 0.75rem;
    }

    /* Territory */
    .lp-territory {
        gap: 1.75rem;
    }

    .lp-client-card {
        padding: 0.65rem 0.75rem;
        border-radius: 14px;
    }

    .lp-client-card:hover {
        transform: none;
    }

    .lp-client-card img {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    /* FAQ */
    .lp-faq-layout {
        gap: 1.25rem;
    }

    .lp-faq__item summary {
        padding: 0.95rem 1rem;
        padding-right: 2.6rem;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .lp-faq__item p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }

    /* CTA */
    .lp-cta {
        padding: 0.5rem 0 3rem;
    }

    .lp-cta__card {
        border-radius: 18px;
    }

    .lp-cta__content {
        padding: 1.25rem 1rem 1.35rem;
        gap: 1.15rem;
    }

    .lp-cta__copy {
        text-align: left;
    }

    .lp-cta__copy .lp-h2 {
        font-size: clamp(1.35rem, 6vw, 1.7rem);
        text-align: left;
        max-width: 100%;
    }

    .lp-cta__copy .lp-lead {
        text-align: left;
        max-width: 100%;
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .lp-cta__points {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
        margin-top: 0.9rem;
    }

    .lp-cta__points li {
        font-size: 0.875rem;
    }

    .lp-cta__actions {
        width: 100%;
        gap: 0.65rem;
    }

    .lp-cta__actions .lp-btn {
        width: 100%;
        min-height: 48px;
        padding-inline: 1rem;
        font-size: 0.95rem;
        white-space: normal;
        text-align: center;
        line-height: 1.25;
    }

    .lp-cta__mail-full {
        display: none;
    }

    .lp-cta__mail-short {
        display: inline;
    }

    .lp-cta__login {
        padding: 0.5rem 0.25rem 0.15rem;
    }

    /* Footer */
    .lp-footer__wrap {
        padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
    }

    /* Buttons / touch */
    .lp-btn {
        -webkit-tap-highlight-color: transparent;
    }

    .lp-btn:hover {
        transform: none;
    }

    .lp-btn--primary:hover {
        transform: none;
    }
}

@media (max-width: 380px) {
    .lp-container {
        width: calc(100% - 1rem);
    }

    .lp-header__login {
        display: none;
    }

    .lp-hero__brandline {
        font-size: 1.85rem;
    }

    .lp-stat__live {
        font-size: 0.58rem;
    }
}

/* Landscape phones */
@media (max-width: 900px) and (max-height: 480px) and (orientation: landscape) {
    .lp-hero {
        min-height: 0;
        padding: 1rem 0 2rem;
    }

    .lp-hero__stage {
        display: none;
    }

    .lp-scroll-hint {
        display: none;
    }
}

/* ============================================================
   Audience switcher + business landing extras
   ============================================================ */

.lp-audience {
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 2px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.06);
    border: 0;
    flex-shrink: 0;
}

.lp-audience__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.8rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: -0.01em;
    color: var(--cw-color-text-muted);
    transition:
        background 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease;
    white-space: nowrap;
    line-height: 1.2;
}

.lp-audience__link:hover {
    color: var(--cw-color-text);
}

.lp-audience__link.is-active {
    background: #fff;
    color: var(--cw-color-primary-dark);
    box-shadow: 0 1px 2px rgba(15, 35, 52, 0.08);
}

.lp-mobile-nav__audience {
    padding: 0;
}

.lp-mobile-nav__audience .lp-audience {
    display: flex;
    width: 100%;
    padding: 3px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.055);
}

.lp-mobile-nav__audience .lp-audience__link {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.7rem 0.75rem;
    border-radius: 9px;
    font-size: 0.875rem;
}

.lp-mobile-nav__audience .lp-audience__link.is-active {
    box-shadow: 0 1px 3px rgba(15, 35, 52, 0.1);
}

@media (min-width: 1100px) {
    .lp-header__brand-block > .lp-audience {
        display: inline-flex;
    }
}

@media (min-width: 768px) and (max-width: 1099px) {
    .lp-header__brand-block > .lp-audience {
        display: none;
    }
}

/* Business: services */
.lp-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 700px) {
    .lp-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lp-services {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lp-service {
    position: relative;
    padding: 1.35rem 1.25rem 1.4rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: rgba(31, 182, 188, 0.04) 0px 4px 12px 0px;
    transition: transform var(--cw-transition-base), box-shadow var(--cw-transition-base);
}

.lp-service:hover {
    transform: translateY(-2px);
    box-shadow: rgba(31, 182, 188, 0.10) 0px 10px 24px 0px;
}

.lp-service__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    background: rgba(31, 182, 188, 0.12);
    color: var(--cw-color-primary-dark);
}

.lp-service__icon svg {
    width: 22px;
    height: 22px;
}

.lp-service h3 {
    margin: 0 0 0.45rem;
    font-family: Rubik, system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lp-service p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--cw-color-text-muted);
    line-height: 1.5;
}

/* Business: pricing tables */
.lp-pricing {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 900px) {
    .lp-pricing {
        grid-template-columns: 1.4fr 1fr;
        align-items: start;
    }
}

.lp-price-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: rgba(31, 182, 188, 0.04) 0px 4px 12px 0px;
}

.lp-price-card__head {
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.lp-price-card__head h3 {
    margin: 0 0 0.25rem;
    font-family: Rubik, system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.lp-price-card__head p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--cw-color-text-muted);
}

.lp-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.lp-price-table th,
.lp-price-table td {
    padding: 0.75rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.lp-price-table th {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cw-color-text-muted);
    font-weight: 600;
    background: rgba(244, 247, 251, 0.7);
}

.lp-price-table td strong {
    color: var(--cw-color-primary-dark);
    font-weight: 700;
    white-space: nowrap;
}

.lp-price-table tr:last-child td {
    border-bottom: 0;
}

.lp-price-card__note {
    margin: 0;
    padding: 0.75rem 1.1rem 1rem;
    font-size: 0.75rem;
    color: var(--cw-color-text-muted);
}

/* Business: scale compare */
.lp-scale {
    display: grid;
    gap: 1rem;
}

@media (min-width: 800px) {
    .lp-scale {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lp-scale-card {
    padding: 1.35rem 1.25rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.lp-scale-card--accent {
    background: linear-gradient(160deg, rgba(31, 182, 188, 0.12), rgba(31, 182, 188, 0.02));
    border-color: rgba(31, 182, 188, 0.28);
}

.lp-scale-card__value {
    font-family: Rubik, system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--cw-color-primary-dark);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.lp-scale-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
}

.lp-scale-card p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--cw-color-text-muted);
    line-height: 1.5;
}

/* Client cabinet mock pieces */
.lp-dash-mock {
    display: grid;
    gap: 0.85rem;
}

.lp-dash-mock__kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.lp-dash-kpi {
    padding: 0.85rem 0.9rem;
    border-radius: 12px;
    background: rgba(244, 247, 251, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.lp-dash-kpi span {
    display: block;
    font-size: 0.7rem;
    color: var(--cw-color-text-muted);
    margin-bottom: 0.25rem;
}

.lp-dash-kpi strong {
    font-family: Rubik, system-ui, sans-serif;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.lp-dash-kpi strong.is-teal { color: var(--cw-color-primary-dark); }

.lp-dash-chart {
    height: 110px;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(31, 182, 188, 0.08), transparent 70%),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 28px,
            rgba(15, 23, 42, 0.04) 28px,
            rgba(15, 23, 42, 0.04) 29px
        );
    border: 1px solid rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.lp-dash-chart svg {
    position: absolute;
    inset: 12px 8px 8px;
    width: calc(100% - 16px);
    height: calc(100% - 20px);
}

.lp-dash-feed {
    display: grid;
    gap: 0.5rem;
}

.lp-dash-feed__row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 0.8125rem;
}

.lp-dash-feed__row i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cw-color-primary);
    flex-shrink: 0;
}

.lp-dash-feed__row i.is-red { background: var(--cw-color-accent); }
.lp-dash-feed__row i.is-soft { background: var(--cw-color-soft-accent); }

.lp-dash-feed__row span {
    color: var(--cw-color-text-muted);
    margin-left: auto;
    font-size: 0.75rem;
    white-space: nowrap;
}

.lp-create-mock {
    display: grid;
    gap: 0.75rem;
}

.lp-create-field {
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
}

.lp-create-field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cw-color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
}

.lp-create-field strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.lp-create-field.is-filled {
    border-color: rgba(31, 182, 188, 0.35);
    background: rgba(31, 182, 188, 0.04);
}

.lp-create-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.lp-create-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.lp-create-tags span {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(15, 23, 42, 0.05);
    color: var(--cw-color-text-muted);
}

.lp-create-tags span.is-on {
    background: rgba(31, 182, 188, 0.14);
    color: var(--cw-color-primary-dark);
}

.lp-inv-grid {
    display: grid;
    gap: 0.65rem;
}

@media (min-width: 560px) {
    .lp-inv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lp-inv-card {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
}

.lp-inv-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.lp-inv-card__top strong {
    font-size: 0.9rem;
}

.lp-inv-card p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--cw-color-text-muted);
}

.lp-task-list {
    display: grid;
    gap: 0.65rem;
}

.lp-task-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
}

.lp-task-row__id {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.75rem;
    color: var(--cw-color-text-muted);
}

.lp-task-row h4 {
    margin: 0 0 0.2rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.lp-task-row p {
    margin: 0;
    font-size: 0.78rem;
    color: var(--cw-color-text-muted);
}

.lp-contact-card {
    display: grid;
    gap: 0.9rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-sizing: border-box;
}

.lp-cta .lp-contact-card {
    background: #f4f7fb;
    border-color: rgba(15, 23, 42, 0.08);
}

.lp-contact-card__person {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.lp-contact-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cw-color-primary), var(--cw-color-primary-dark));
    color: #fff;
    display: grid;
    place-items: center;
    font-family: Rubik, system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.lp-contact-card__person-text {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    justify-content: center;
}

.lp-contact-card__person strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--cw-color-text);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.lp-contact-card__person span {
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--cw-color-text-muted);
}

.lp-contact-card__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    min-width: 0;
}

.lp-contact-card__links a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    min-width: 0;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: var(--cw-color-text);
    box-sizing: border-box;
    transition: border-color var(--cw-transition-base), color var(--cw-transition-base);
}

.lp-contact-card__links a svg {
    flex-shrink: 0;
    color: var(--cw-color-primary-dark);
    opacity: 0.85;
}

.lp-contact-card__links a span {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.35;
}

.lp-contact-card__links a:hover {
    border-color: var(--cw-color-primary);
    color: var(--cw-color-primary-dark);
}

@media (max-width: 420px) {
    .lp-contact-card {
        padding: 0.9rem;
    }

    .lp-contact-card__person {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }

    .lp-contact-card__avatar {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .lp-contact-card__person strong {
        font-size: 0.88rem;
    }

    .lp-contact-card__links a {
        padding: 0.65rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 560px) {
    .lp-contact-card__links {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .lp-contact-card__links a {
        flex: 1 1 calc(50% - 0.25rem);
    }
}

@media (max-width: 560px) {
    .lp-dash-mock__kpis {
        grid-template-columns: 1fr;
    }

    .lp-create-row {
        grid-template-columns: 1fr;
    }

    .lp-task-row {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .lp-price-table th,
    .lp-price-table td {
        padding: 0.65rem 0.75rem;
        font-size: 0.8rem;
    }
}
