/*
 * Spot Landing v5 — Янтарная палитра
 * Тёмный hero (свет свечи) → тёплый светлый контент → тёмный финал
 */

/* ——— Переменные ——— */
body.landing-page {
    --lp-max: 1080px;
    --lp-pad: max(20px, env(safe-area-inset-left, 0px));
    --lp-tap: 44px;
    --lp-r: 10px;
    --lp-rlg: 14px;

    /* Hero dark warm */
    --h-bg:     #0e0800;
    --h-surf:   #181007;
    --h-border: rgba(255, 255, 255, 0.07);
    --h-text:   #f9f5ee;
    --h-muted:  rgba(249, 245, 238, 0.5);

    /* Canvas light warm */
    --c-bg:      #faf9f6;
    --c-surf:    #ffffff;
    --c-ink:     #1c1007;
    --c-muted:   #78716c;
    --c-faint:   #a8a29e;
    --c-line:    #e8dece;
    --c-linest:  #d4c4a8;
    --c-amber:   #d97706;
    --c-amber-d: #b45309;
    --c-amber-s: rgba(217, 119, 6, 0.1);

    font-family: var(--font-sans, system-ui, sans-serif);
    background: var(--h-bg);
    -webkit-font-smoothing: antialiased;
}

body.landing-page .app-bg { display: none; }

/* Сброс контейнера */
body.landing-page .container.landing-main {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* ——— Шапка ——— */
body.landing-page .topbar {
    background: rgba(14, 8, 0, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--h-border);
}
body.landing-page .topbar-scan { display: none; }
body.landing-page .topbar-inner {
    max-width: var(--lp-max);
    padding: 13px var(--lp-pad);
}

/* ——— Scroll-анимации ——— */
.lp-fade {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.lp-fade.lp-in { opacity: 1; transform: translateY(0); }

/* Stagger для дочерних элементов */
.lp-stagger > *    { opacity: 0; transform: translateY(16px);
                     transition: opacity 0.45s ease, transform 0.45s ease; }
.lp-stagger.lp-in > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.lp-stagger.lp-in > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.lp-stagger.lp-in > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
.lp-stagger.lp-in > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }

/* Анимация для hero (мгновенная, без задержки загрузки) */
@media (prefers-reduced-motion: no-preference) {
    .lp-hero__copy { animation: heroFadeIn 0.65s ease both; }
    .lp-hero__visual { animation: heroFadeIn 0.65s 0.18s ease both; }
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ——— HERO ——— */
.lp-hero {
    position: relative;
    min-height: min(90svh, 840px);
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--h-bg);
    color: var(--h-text);
    border-bottom: 1px solid var(--h-border);
}

/* Янтарные радиальные блики — как свет в тёмном баре */
.lp-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 75% 60% at 55% -5%, rgba(217, 119, 6, 0.22), transparent 58%),
        radial-gradient(ellipse 45% 40% at 2%  90%, rgba(180, 83, 9, 0.14),  transparent 55%);
}

/* Точечная сетка */
.lp-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: radial-gradient(ellipse 85% 80% at 50% 45%, #000 0%, transparent 72%);
}

.lp-hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--lp-max);
    margin: 0 auto;
    width: 100%;
    padding: clamp(56px, 10vw, 96px) var(--lp-pad) clamp(44px, 8vw, 76px);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.lp-eyebrow {
    margin: 0 0 18px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-amber);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}
.lp-eyebrow::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 1.5px;
    background: var(--c-amber);
    border-radius: 1px;
}

.lp-hero__title {
    margin: 0 0 18px;
    font-family: var(--font-display, sans-serif);
    font-size: clamp(2rem, 4.5vw + 0.4rem, 3.125rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.09;
    color: var(--h-text);
}

.lp-hero__lead {
    margin: 0 0 28px;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--h-muted);
    max-width: 36rem;
}

/* Два пути в hero */
.lp-hero__paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
}

.lp-path {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    border-radius: var(--lp-r);
    border: 1px solid var(--h-border);
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    color: var(--h-text);
    transition: background 0.18s ease, border-color 0.18s ease;
    cursor: pointer;
}
.lp-path:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(217, 119, 6, 0.3);
    color: var(--h-text);
}

.lp-path__label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-amber);
    opacity: 0.85;
}
.lp-path--primary { border-color: rgba(217, 119, 6, 0.3); background: rgba(217, 119, 6, 0.07); }
.lp-path--primary:hover { background: rgba(217, 119, 6, 0.12); border-color: rgba(217, 119, 6, 0.45); }

.lp-path__title {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.3;
}
.lp-path__desc {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--h-muted);
}
.lp-path__arrow {
    margin-top: 6px;
    font-size: 0.875rem;
    color: var(--c-amber);
    font-weight: 600;
}

.lp-hero__micro {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(249, 245, 238, 0.38);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* ——— Мокап ——— */
.lp-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-mock {
    width: min(100%, 340px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1a1005;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 40px 80px rgba(0, 0, 0, 0.55),
        0 8px 32px rgba(217, 119, 6, 0.1);
    overflow: hidden;
}

.lp-mock__bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #221508;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.lp-mock__dots { display: flex; gap: 5px; }
.lp-mock__dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); }
.lp-mock__dots i:nth-child(1) { background: #ff5f56; }
.lp-mock__dots i:nth-child(2) { background: #febc2e; }
.lp-mock__dots i:nth-child(3) { background: #28c840; }

.lp-mock__title {
    flex: 1;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
}
.lp-mock__live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4ade80;
}
.lp-mock__pulse {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    animation: mockPulse 2s ease-in-out infinite;
}
@keyframes mockPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.35; transform: scale(0.78); }
}

.lp-mock__floor { padding: 12px; background: #100b02; }
.lp-mock__floor-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    min-height: 110px;
}

.lp-mock__table {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.28);
    min-height: 44px;
}
.lp-mock__table::after {
    content: attr(data-seats) " мест";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.18);
    white-space: nowrap;
}
.lp-mock__table--wide { grid-column: span 2; min-height: 36px; }
.lp-mock__table--pick {
    background: rgba(217, 119, 6, 0.18);
    border-color: rgba(217, 119, 6, 0.42);
    color: rgba(251, 191, 36, 0.9);
    box-shadow: 0 0 14px rgba(217, 119, 6, 0.14);
    animation: tableGlow 3s ease-in-out infinite;
}
.lp-mock__table--pick::after { color: rgba(251, 191, 36, 0.5); }
@keyframes tableGlow {
    0%, 100% { box-shadow: 0 0 14px rgba(217, 119, 6, 0.14); }
    50%       { box-shadow: 0 0 22px rgba(217, 119, 6, 0.28); }
}

.lp-mock__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 12px;
    background: #1a1005;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.lp-mock__tag {
    font-size: 0.625rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.lp-mock__tag--accent {
    background: rgba(217, 119, 6, 0.18);
    color: rgba(251, 191, 36, 0.9);
    border-color: rgba(217, 119, 6, 0.3);
}

/* ——— Canvas (светлый контент) ——— */
.lp-canvas {
    background: var(--c-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: clamp(40px, 7vw, 68px) var(--lp-pad) clamp(56px, 9vw, 88px);
    /* Extra padding-bottom для мобильного sticky */
    padding-bottom: max(clamp(56px, 9vw, 88px), calc(80px + env(safe-area-inset-bottom)));
}

.lp-sheet {
    max-width: var(--lp-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-card {
    background: var(--c-surf);
    border-radius: var(--lp-rlg);
    border: 1px solid var(--c-line);
    box-shadow: 0 1px 3px rgba(28, 16, 7, 0.04);
    overflow: hidden;
    padding: 10px;
}

/* ——— Фичи (3 колонки) ——— */
.lp-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    background: var(--c-line);
    border: 1px solid var(--c-line);
    border-radius: var(--lp-rlg);
    overflow: hidden;
}

.lp-feature {
    padding: 24px 22px;
    background: var(--c-surf);
    border-right: 1px solid var(--c-line);
}
.lp-feature:last-child { border-right: none; }

.lp-feature__ico {
    display: flex;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    align-items: center;
    justify-content: center;
    background: rgba(217, 119, 6, 0.1);
    color: var(--c-amber);
    margin-bottom: 14px;
    flex-shrink: 0;
}
.lp-feature__ico svg { width: 18px; height: 18px; }

.lp-feature__title {
    margin: 0 0 7px;
    font-family: var(--font-display, sans-serif);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--c-ink);
}
.lp-feature__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--c-muted);
}

/* ——— Аудитории ——— */
.lp-split { padding: clamp(26px, 4vw, 40px); }

.lp-split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 8px;
}

.lp-split__col {
    padding: 22px 20px;
    border-radius: var(--lp-r);
    background: #faf9f6;
    border: 1px solid var(--c-line);
}
.lp-split__col--amber {
    background: rgba(217, 119, 6, 0.04);
    border-color: rgba(217, 119, 6, 0.18);
}

.lp-split__head {
    margin: 0 0 12px;
    font-family: var(--font-display, sans-serif);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--c-ink);
}
.lp-split__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--c-amber-d);
    text-decoration: none;
    border-bottom: 1px solid rgba(180, 83, 9, 0.3);
    padding-bottom: 1px;
    transition: color 0.15s, border-color 0.15s;
}
.lp-split__cta:hover { color: var(--c-ink); border-color: var(--c-ink); }

.lp-section-title {
    margin: 0 0 24px;
    font-family: var(--font-display, sans-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--c-ink);
    text-align: center;
}

.lp-list {
    margin: 0; padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-list li {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--c-muted);
    padding-left: 18px;
    position: relative;
}
.lp-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--c-amber);
    font-weight: 700;
}

/* ——— Шаги ——— */
.lp-steps { padding: clamp(26px, 4vw, 40px); }

.lp-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--c-line);
    border-radius: var(--lp-r);
    overflow: hidden;
}

.lp-step {
    padding: 22px 18px;
    background: #faf9f6;
}
.lp-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #18130a;
    background: var(--c-amber);
    margin-bottom: 12px;
    font-family: var(--font-display, sans-serif);
}
.lp-step__title {
    margin: 0 0 7px;
    font-family: var(--font-display, sans-serif);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--c-ink);
}
.lp-step__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--c-muted);
}

/* ——— Счётчики-статистика ——— */
.lp-stats {
    padding: 20px 28px;
    background: var(--c-surf) !important;
}
.lp-stats__grid {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
}
.lp-stat {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    border-right: 1px solid var(--c-line);
    text-align: center;
}
.lp-stat:last-child { border-right: none; }
.lp-stat__num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-amber);
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.lp-stat__label {
    font-size: .8rem;
    color: var(--c-muted);
    margin-top: 4px;
    text-align: center;
}
@media (max-width: 520px) {
    .lp-stat {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid var(--c-line);
        padding: 12px;
    }
    .lp-stat:last-child { border-bottom: none; }
}

/* ——— CTA-полоса (тёмная, янтарная) ——— */
.lp-cta-band {
    padding: 32px 28px;
    background: #0e0800 !important;
    color: var(--h-text);
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: var(--lp-rlg) !important;
    overflow: visible !important;
}
.lp-cta-band__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.lp-cta-band__title {
    margin: 0 0 8px;
    font-family: var(--font-display, sans-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--h-text);
}
.lp-cta-band__lead {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--h-muted);
    line-height: 1.55;
    max-width: 28em;
}
.lp-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ——— Кнопки ——— */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--lp-tap);
    padding: 0 22px;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease, filter 0.15s ease;
    white-space: nowrap;
    cursor: pointer;
}
.lp-btn--sm { min-height: 40px; padding: 0 16px; font-size: 0.875rem; border-radius: 8px; }

/* Янтарный — основная CTA на лендинге */
.lp-btn--amber {
    background: var(--c-amber);
    color: #18130a;
    border-color: var(--c-amber);
}
.lp-btn--amber:hover { filter: brightness(1.06); color: #18130a; }

/* Тёмный */
.lp-btn--dark {
    background: #18130a;
    color: var(--h-text);
    border-color: #18130a;
}
.lp-btn--dark:hover { background: #0e0905; color: var(--h-text); }

/* Белый призрак (на тёмном фоне) */
.lp-btn--ghost-light {
    background: transparent;
    color: rgba(249, 245, 238, 0.7);
    border-color: rgba(255, 255, 255, 0.14);
}
.lp-btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--h-text);
    border-color: rgba(255, 255, 255, 0.22);
}

/* Светлый призрак (на светлом фоне) */
.lp-btn--ghost {
    background: var(--c-surf);
    color: var(--c-ink);
    border-color: var(--c-linest);
}
.lp-btn--ghost:hover { background: var(--c-bg); }

/* ——— Тарифы ——— */
.lp-pricing { padding: clamp(28px, 4vw, 44px) clamp(18px, 3vw, 30px); }
.lp-pricing__head { text-align: center; margin-bottom: 28px; }

.lp-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 12px;
    border-radius: 99px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #92400e;
    background: #fef3c7;
    border: 1px solid #fde68a;
}
.lp-pricing__lead {
    margin: 10px auto 0;
    max-width: 38rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--c-muted);
}
.lp-pricing__lead strong { color: var(--c-ink); font-weight: 600; }

.lp-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
    gap: 14px;
    align-items: stretch;
}
.lp-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 22px 18px;
    border-radius: var(--lp-r);
    border: 1px solid var(--c-line);
    background: var(--c-surf);
    transition: border-color 0.15s ease;
}
.lp-price-card:hover { border-color: rgba(217, 119, 6, 0.3); }
.lp-price-card--hit {
    border-color: rgba(217, 119, 6, 0.35);
    background: rgba(217, 119, 6, 0.03);
}

.lp-price-badge {
    position: absolute;
    top: 12px; right: 12px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #92400e;
    background: #fef3c7;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #fde68a;
}

.lp-price-name {
    margin: 0 0 5px;
    font-family: var(--font-display, sans-serif);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--c-ink);
}
.lp-price-tagline {
    margin: 0 0 12px;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--c-muted);
    min-height: 2.4em;
}
.lp-price-block { margin-bottom: 12px; }
.lp-price-num {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--c-ink);
    font-family: var(--font-display, sans-serif);
}
.lp-price-currency {
    margin-left: 2px;
    font-size: 1rem;
    font-weight: 600;
    vertical-align: super;
    color: var(--c-ink);
}
.lp-price-period {
    margin-top: 5px;
    font-size: 0.8125rem;
    color: var(--c-muted);
}
.lp-price-features {
    margin: 0 0 14px;
    padding: 0;
    flex: 1 1 auto;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--c-muted);
}
.lp-price-features li { padding-left: 15px; position: relative; }
.lp-price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--c-amber);
    font-size: 0.75rem;
    font-weight: 700;
}
.lp-price-cta {
    align-self: stretch;
    text-align: center;
    margin-top: auto;
    padding: 11px 14px;
    min-height: var(--lp-tap);
    border-radius: 9px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    color: #18130a;
    background: var(--c-amber);
    border: 1px solid var(--c-amber);
    transition: filter 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-price-cta:hover { filter: brightness(1.06); color: #18130a; }

.lp-price-card--hit .lp-price-cta {
    background: #18130a;
    color: var(--h-text);
    border-color: #18130a;
}
.lp-price-card--hit .lp-price-cta:hover { background: #0e0905; filter: none; }

.lp-empty { margin: 0; text-align: center; font-size: 0.9375rem; color: var(--c-muted); }

/* ——— FAQ ——— */
.lp-faq { padding: clamp(26px, 4vw, 40px); }
.lp-faq__title {
    margin: 0 0 22px;
    font-family: var(--font-display, sans-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    text-align: center;
    color: var(--c-ink);
}
.lp-faq__list {
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 640px;
}
.lp-faq__q {
    margin: 0;
    padding: 15px 44px 15px 18px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--c-ink);
    letter-spacing: -0.01em;
    list-style: none;
    cursor: pointer;
    position: relative;
    user-select: none;
    line-height: 1.45;
}
.lp-faq__q::-webkit-details-marker { display: none; }
.lp-faq__q::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--c-faint);
    line-height: 1;
    transition: color 0.2s ease, opacity 0.2s ease;
}
.lp-faq__item[open] .lp-faq__q::after { content: "–"; color: var(--c-amber); }
.lp-faq__a {
    margin: 0;
    padding: 12px 18px 16px;
    border-top: 1px solid var(--c-line);
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--c-muted);
}
/* Анимация открытия FAQ */
@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lp-faq__item[open] .lp-faq__a {
    animation: faqOpen 0.24s ease-out both;
}
/* Плавный border-color при открытии */
.lp-faq__item {
    border-radius: var(--lp-r);
    border: 1px solid var(--c-line);
    background: var(--c-surf);
    overflow: hidden;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.lp-faq__item[open] {
    border-color: rgba(217, 119, 6, 0.3);
    box-shadow: 0 2px 12px rgba(217, 119, 6, 0.06);
}
.lp-faq__sep {
    padding: 8px 18px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-faint);
    background: #faf9f6;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    margin: 6px 0;
    border-radius: 0 !important;
    display: block;
}

/* ——— Финальный CTA ——— */
.lp-final-cta {
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: var(--lp-rlg) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    background: #0e0800 !important;
    position: relative;
}
.lp-final-cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 55% at 80% 20%, rgba(217, 119, 6, 0.2), transparent 55%),
        radial-gradient(ellipse 40% 40% at 10% 85%, rgba(180, 83, 9, 0.12), transparent 55%);
}
.lp-final-cta__inner {
    position: relative;
    z-index: 1;
    padding: clamp(32px, 5vw, 52px) clamp(22px, 4vw, 40px);
    text-align: center;
}
.lp-final-cta__title {
    margin: 0 0 12px;
    font-family: var(--font-display, sans-serif);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--h-text);
    line-height: 1.1;
}
.lp-final-cta__lead {
    margin: 0 auto 28px;
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--h-muted);
}
.lp-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.lp-final-cta__micro {
    margin: 18px 0 0;
    font-size: 0.8125rem;
    color: rgba(249, 245, 238, 0.3);
}

/* ——— Футер ——— */
body.landing-page .site-footer {
    margin-top: 0;
    background: #0e0800;
}

/* Лендинг: bottom-nav из base.html скрыт (есть своя sticky), отступ тоже не нужен */
body.landing-page .bottom-nav { display: none !important; }
body.landing-page { padding-bottom: 0 !important; }

/* ——— Mobile sticky CTA ——— */
.lp-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(12, 7, 0, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    gap: 8px;
    align-items: center;
}
.lp-sticky-cta.lp-sticky-show { display: flex; }
.lp-sticky-cta .lp-btn {
    flex: 1 1 auto;
    justify-content: center;
    min-height: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 14px;
}
/* Янтарная кнопка — тень и свечение */
.lp-sticky-cta .lp-btn--amber {
    box-shadow: 0 4px 18px rgba(217, 119, 6, 0.50);
    background: linear-gradient(145deg, #f59e0b, #d97706);
}
.lp-sticky-cta .lp-btn--amber:hover {
    box-shadow: 0 6px 22px rgba(217, 119, 6, 0.60);
}
/* Тёмная/контурная кнопка — янтарный бордер вместо серого */
.lp-sticky-cta .lp-btn--ghost-light {
    border-color: rgba(217, 119, 6, 0.35);
    color: rgba(255, 255, 255, 0.82);
}
.lp-sticky-cta .lp-btn--ghost-light:hover {
    border-color: rgba(217, 119, 6, 0.60);
    background: rgba(217, 119, 6, 0.08);
    color: #fff;
}

/* Visually hidden */
.lp-vh { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
          overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ——— Адаптив ——— */
@media (max-width: 900px) {
    .lp-hero__inner {
        grid-template-columns: 1fr;
        padding-top: 40px;
        padding-bottom: 32px;
        gap: 32px;
    }
    .lp-hero__visual { order: -1; }
    .lp-mock { width: min(100%, 280px); margin: 0 auto; }
    .lp-hero__title { max-width: none; }
    .lp-hero__paths { grid-template-columns: 1fr; }
    .lp-features { grid-template-columns: 1fr; background: var(--c-line); }
    .lp-feature { border-right: none; border-bottom: 1px solid var(--c-line); }
    .lp-feature:last-child { border-bottom: none; }
    .lp-split__grid { grid-template-columns: 1fr; }
    .lp-steps__grid { grid-template-columns: 1fr; }
    .lp-cta-band__actions { width: 100%; justify-content: stretch; }
    .lp-cta-band__actions .lp-btn { flex: 1 1 calc(50% - 6px); justify-content: center; }
    .lp-sticky-cta { display: flex; }
    .lp-canvas {
        padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 600px) {
    body.landing-page { --lp-pad: max(16px, env(safe-area-inset-left, 0px)); }
    .lp-canvas { padding-top: 28px; }
    .lp-split, .lp-steps, .lp-pricing, .lp-faq { padding: 20px 16px; }
    .lp-cta-band { padding: 22px 18px; }
    .lp-final-cta__inner { padding: 28px 20px; }
    .lp-final-cta__actions .lp-btn { flex: 1 1 100%; }
    .lp-cta-band__actions .lp-btn { flex: 1 1 100%; }
}

@media (min-width: 901px) {
    .lp-sticky-cta { display: none !important; }
}

/* =====================================================
   ЗАВЕДЕНИЯ НА ПЛАТФОРМЕ — социальное доказательство
   ===================================================== */
.lp-venues__lead {
    margin: -6px 0 20px;
    font-size: 15px;
    color: var(--c-muted);
    text-align: center;
}

.lp-venues__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.lp-venue-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid var(--c-line);
    background: var(--c-surf);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 1px 4px rgba(28, 16, 7, 0.06);
}

.lp-venue-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(28, 16, 7, 0.10);
}

.lp-venue-card__cover {
    height: 130px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--c-line);
}

.lp-venue-card__cover--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-faint);
}

.lp-venue-card__cover-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 60%);
}

.lp-venue-card__body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-venue-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-ink);
    line-height: 1.3;
}

.lp-venue-card__city {
    font-size: 12px;
    color: var(--c-muted);
}

.lp-venue-card__flags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.lp-venue-flag {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 6px;
    background: rgba(217, 119, 6, 0.10);
    color: var(--c-amber-d);
    border: 1px solid rgba(217, 119, 6, 0.2);
}

.lp-venues__foot {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

@media (max-width: 600px) {
    .lp-venues__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .lp-venue-card__cover { height: 100px; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-fade, .lp-stagger > *, .lp-hero__copy, .lp-hero__visual {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
