/* Listify — продающий лендинг */

/* ===== BASE ===== */
/* Базовое ограничение ширины для всех элементов — предотвращение выхода за пределы экрана */
*,
*::before,
*::after {
    box-sizing: border-box;
    max-width: 100%;
}

.landing {
    margin: 0;
    font-family: "Inter", "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1d21;
    background: #fff;
    overflow-x: hidden;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Блокировка прокрутки при открытом мобильном меню */
body.landing-menu-open {
    overflow: hidden;
    touch-action: none;
}

.landing-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 calc(20px + env(safe-area-inset-left)) 0 calc(20px + env(safe-area-inset-right));
}

.landing-container-lg {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 calc(20px + env(safe-area-inset-left)) 0 calc(20px + env(safe-area-inset-right));
}

/* Общие секции */
.landing-section {
    padding: 64px 0 80px;
}

.landing-section-kicker {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2563eb;
    margin: 0 0 12px;
}

.landing-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 25px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ===== HEADER ===== */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: calc(20px + env(safe-area-inset-top)) calc(20px + env(safe-area-inset-right)) 0 calc(20px + env(safe-area-inset-left));
    pointer-events: none;
}

.landing-header .landing-header-bar {
    pointer-events: auto;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
    box-sizing: border-box;
}

.landing-header.scrolled .landing-header-bar {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.landing-header-inner {
    padding: 14px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.landing-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: end;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1e293b;
}

.landing-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

.landing-logo-text {
    display: flex;
    flex-direction: column;
}

.landing-logo-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.landing-logo-tagline {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.landing-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.landing-nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.landing-nav-link:hover {
    color: #1e293b;
    background: #f1f5f9;
}

/* ===== BUTTONS ===== */
.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.landing-btn-primary {
    background: #2563eb;
    color: #fff;
}

.landing-btn-primary:hover {
    background: #1d4ed8;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.landing-btn-secondary {
    background: #f1f5f9;
    color: #1e293b;
}

.landing-btn-secondary:hover {
    background: #e2e8f0;
}

.landing-btn-ghost {
    background: transparent;
    color: #475569;
}

.landing-btn-ghost:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.landing-btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.landing-btn-outline:hover {
    background: #2563eb;
    color: #fff;
}

.landing-btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 12px;
}

.landing-btn-block {
    width: 100%;
}

/* ===== MOBILE MENU ===== */
.landing-mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.landing-mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #475569;
    border-radius: 2px;
    transition: all 0.2s;
}

.landing-mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px calc(24px + env(safe-area-inset-right)) calc(16px + env(safe-area-inset-bottom)) calc(24px + env(safe-area-inset-left));
    background: #fff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    pointer-events: auto;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
}

.landing-mobile-nav.active {
    display: flex;
}

.landing-mobile-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.landing-mobile-link:hover {
    background: #f1f5f9;
    color: #1e293b;
}

/* Блок Вход / Регистрация в мобильном меню — выделен */
.landing-mobile-auth {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    max-width: 100%;
}

/* ===== SWITCH BUTTON (переключение на новый лендинг) ===== */
.landing-switch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.landing-switch-btn:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: #2563eb;
}

.landing-switch-btn svg {
    width: 20px;
    height: 20px;
    stroke: #64748b;
    transition: all 0.2s ease;
}

.landing-switch-btn:hover svg {
    stroke: #2563eb;
}

.landing-mobile-theme {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.landing-mobile-auth .landing-mobile-btn {
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
}

.landing-mobile-auth .landing-btn-outline {
    border-width: 2px;
}

/* ===== HERO ===== */
.landing-hero {
    padding: calc(140px + env(safe-area-inset-top)) calc(20px + env(safe-area-inset-right)) calc(80px + env(safe-area-inset-bottom)) calc(20px + env(safe-area-inset-left));
    text-align: center;
    background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
}

.landing-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.landing-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.landing-hero-badge-icon {
    font-size: 16px;
}

.landing-hero-audience {
    margin: 0 0 16px;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.02em;
}

.landing-hero-title {
    margin: 0 0 20px;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.landing-hero-title-accent {
    display: block;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-hero-desc {
    margin: 0 0 32px;
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
}

.landing-hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.landing-hero-trial-note {
    margin: 0 auto 20px;
    max-width: 520px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #0f766e;
    line-height: 1.45;
}

.landing-hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    color: #64748b;
    font-size: 14px;
}

.landing-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.landing-check-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #22c55e;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* ===== КАЛЬКУЛЯТОР НАЦЕНКИ ===== */
.landing-calc {
    margin-top: 48px;
    padding: 28px 32px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    width: 100%;
}

.landing-calc-title {
    margin: 0 0 20px;
    font-size: 15px;
    font-weight: 600;
    color: #475569;
}

.landing-calc-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    min-width: 0;
}

.landing-calc-label {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    flex-shrink: 0;
}

.landing-calc-input {
    width: 120px;
    padding: 12px 14px;
    font-size: 18px;
    font-weight: 600;
    font-family: inherit;
    color: #0f172a;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: border-color 0.2s;
}

.landing-calc-input:hover {
    border-color: #cbd5e1;
}

.landing-calc-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.landing-calc-input::placeholder {
    color: #94a3b8;
}

.landing-calc-arrow {
    font-size: 20px;
    font-weight: 700;
    color: #94a3b8;
}

.landing-calc-result-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.landing-calc-result-label {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
}

.landing-calc-result {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

/* Настройки калькулятора: ползунок + чекбокс */
.landing-calc-controls {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.landing-calc-slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-calc-slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.landing-calc-slider-label strong {
    color: #2563eb;
    font-size: 15px;
}

.landing-calc-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: #e2e8f0;
    border-radius: 4px;
}

.landing-calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: #2563eb;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
    transition: transform 0.15s, box-shadow 0.15s;
}

.landing-calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.08);
    box-shadow: 0 3px 12px rgba(37, 99, 235, 0.5);
}

.landing-calc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: #2563eb;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.landing-calc-checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #475569;
    user-select: none;
}

.landing-calc-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #2563eb;
    cursor: pointer;
}

.landing-calc-checkbox-text {
    font-weight: 500;
}

.landing-calc-cta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    min-width: 0;
}

.landing-calc-cta-btn {
    display: inline-block;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

@media (max-width: 768px) {
    .landing-calc {
        margin-top: 36px;
        padding: 20px 16px;
    }
    .landing-calc-row {
        flex-direction: column;
        align-items: stretch;
    }
    .landing-calc-input {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .landing-calc-arrow {
        align-self: center;
    }
    .landing-calc-controls {
        min-width: 0;
    }
    .landing-calc-cta {
        min-width: 0;
    }
    .landing-calc-cta-btn {
        width: 100%;
        max-width: 100%;
    }
}

/* ===== AUDIENCE (FOR WHOM) ===== */
.landing-audience {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.landing-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.landing-audience-card {
    background: #f8fafc;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.25s ease;
}

.landing-audience-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.landing-audience-card-featured {
    background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
    border-color: #bfdbfe;
}

.landing-audience-card-featured:hover {
    border-color: #93c5fd;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.1);
}

.landing-audience-icon {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1;
}

.landing-audience-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
    line-height: 1.3;
}

.landing-audience-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ===== PAIN SECTION ===== */
.landing-pain {
    background: #f8fafc;
}

.landing-pain .landing-container {
    padding-top: 24px;
    padding-bottom: 24px;
}

.landing-pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.landing-pain-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.2s;
}

.landing-pain-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.landing-pain-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.landing-pain-card p {
    margin: 0;
    color: #475569;
    font-size: 15px;
}

.landing-pain-conclusion {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

/* ===== HOW IT WORKS ===== */
.landing-how {
    background: #fff;
}

.landing-section-subtitle {
    text-align: center;
    color: #64748b;
    margin: -16px 0 48px;
    font-size: 17px;
}

.landing-step-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 80px;
    align-items: center;
}

.landing-step-block.landing-step-single {
    grid-template-columns: 1fr;
}

.landing-step-block:last-child {
    margin-bottom: 0;
}

.landing-step-block.landing-step-reverse {
    direction: rtl;
}

.landing-step-block.landing-step-reverse > * {
    direction: ltr;
}

.landing-step-badge {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.landing-step-badge-green {
    background: #dcfce7;
    color: #15803d;
}

.landing-step-badge-orange {
    background: #ffedd5;
    color: #c2410c;
}

.landing-step-title {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px;
    line-height: 1.3;
}

.landing-step-desc {
    color: #475569;
    margin: 0 0 20px;
    line-height: 1.7;
}

.landing-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-step-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    margin-bottom: 10px;
    font-size: 15px;
}

.landing-step-example {
    background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #fed7aa;
}

.landing-step-example-title {
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 12px;
}

.landing-step-example-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #475569;
}

.landing-step-example-list li {
    margin-bottom: 6px;
}

/* ===== SCREENSHOTS ===== */
.landing-step-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.landing-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    background: #fff;
}

/* ===== FEATURES ===== */
.landing-features-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.landing-features-section .landing-section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.landing-feature-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
    position: relative;
}

.landing-feature-card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-2px);
}

.landing-feature-card-hero {
    background: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
    border-color: #93c5fd;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.landing-feature-card-hero:hover {
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
}

.landing-feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    font-weight: 800;
    color: #cbd5e1;
    letter-spacing: -0.02em;
}

.landing-feature-card-hero .landing-feature-number {
    color: #93c5fd;
}

.landing-feature-icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.25s;
}

.landing-feature-card:hover .landing-feature-icon-wrap {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.landing-feature-card-hero .landing-feature-icon-wrap {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.landing-feature-card-hero .landing-feature-icon {
    stroke: #fff;
}

.landing-feature-icon {
    width: 28px;
    height: 28px;
    stroke: #2563eb;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.landing-feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
    line-height: 1.35;
}

.landing-feature-card-hero .landing-feature-title {
    font-size: 19px;
}

.landing-feature-desc {
    color: #64748b;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Доп. фишка: блок «Бонус» */
.landing-feature-bonus {
    margin-top: 48px;
    padding: 32px 36px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.2);
}

.landing-feature-bonus-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.15);
    padding: 6px 14px;
    border-radius: 100px;
}

.landing-feature-bonus-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.landing-feature-bonus-desc {
    color: #94a3b8;
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .landing-feature-card {
        padding: 26px 22px;
    }
    .landing-feature-card-hero .landing-feature-title {
        font-size: 18px;
    }
    .landing-feature-bonus {
        margin-top: 32px;
        padding: 24px 20px;
    }
    .landing-feature-bonus-title {
        font-size: 18px;
    }
}

/* ===== STATS ===== */
.landing-stats {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 60px 20px;
}

.landing-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.landing-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.landing-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== PRICING ===== */
.landing-pricing-section {
    background: #fff;
}

.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.landing-pricing-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    position: relative;
    transition: all 0.3s;
}

.landing-pricing-card .landing-btn-block {
    margin-top: auto;
    align-self: center;
    width: 100%;
    max-width: 240px;
}

.landing-pricing-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.landing-pricing-popular {
    border-color: #2563eb;
    transform: scale(1.03);
}

.landing-pricing-popular:hover {
    border-color: #1d4ed8;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.landing-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.landing-pricing-name {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.landing-pricing-price {
    margin-bottom: 24px;
}

.landing-pricing-amount {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
}

.landing-pricing-period {
    color: #64748b;
    font-size: 16px;
}

.landing-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.landing-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    margin-bottom: 12px;
    font-size: 14px;
}

.landing-pricing-features .landing-pricing-includes {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 8px;
    list-style: none;
}

.landing-pricing-features .landing-pricing-includes::before {
    content: none;
}

.landing-pricing-feature-note {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
}

.landing-pricing-feature-watermark {
    font-size: 13px;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.landing-pricing-feature-watermark::before {
    content: "🖼";
    font-size: 14px;
}

.landing-pricing-feature-plus {
    color: #15803d;
    font-weight: 600;
}

.landing-pricing-feature-plus .landing-check-icon {
    stroke: #22c55e;
}

.landing-pricing-note {
    text-align: center;
    color: #64748b;
    font-size: 15px;
    margin: 0;
}

.landing-pricing-watermark-info {
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
    margin: 12px 0 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ===== FAQ ===== */
.landing-faq-section {
    background: #f8fafc;
}

.landing-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.landing-faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.landing-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    font-family: inherit;
    transition: all 0.2s;
}

.landing-faq-question:hover {
    background: #f8fafc;
}

.landing-faq-chevron {
    width: 20px;
    height: 20px;
    stroke: #94a3b8;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.landing-faq-item.active .landing-faq-chevron {
    transform: rotate(180deg);
}

.landing-faq-answer {
    display: none;
    padding: 0 24px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.landing-faq-item.active .landing-faq-answer {
    display: block;
}

.landing-faq-answer p {
    margin: 16px 0 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.landing-cta-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 20px;
    text-align: center;
}

.landing-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.landing-cta-desc {
    font-size: 18px;
    color: #94a3b8;
    margin: 0 0 32px;
}

.landing-cta-note {
    margin: 16px 0 0;
    color: #64748b;
    font-size: 14px;
}

/* ===== FOOTER (как на new landing: тёмный фон, сетка, навигация по центру) ===== */
.landing-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 40px;
    background: #0a0a0f;
}

.landing-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 85% 35%, rgba(6, 182, 212, 0.14) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 45%);
}

.landing-footer .landing-container-lg {
    position: relative;
    z-index: 1;
}

.landing-footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.landing-footer-brand .landing-footer-logo {
    color: #fff;
}

.landing-footer-brand .landing-footer-logo-icon {
    background: none;
    padding: 0;
    width: 40px;
    height: 40px;
}

.landing-footer-brand .landing-footer-logo-icon svg {
    display: block;
    width: 40px;
    height: 40px;
}

.landing-footer-brand .landing-logo-name {
    color: #fff;
    font-weight: 800;
}

.landing-footer-nav {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.landing-footer-nav a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s ease, opacity 0.15s ease;
}

.landing-footer-nav a:hover {
    color: #fff;
}

.landing-footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.landing-footer-contacts-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
}

.landing-footer-email {
    font-size: 15px;
    font-weight: 600;
    color: #818cf8;
    text-decoration: none;
    transition: color 0.15s ease;
}

.landing-footer-email:hover {
    color: #6366f1;
}

.landing-footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.landing-footer-bottom a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.15s ease;
}

.landing-footer-bottom a:hover {
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .landing-step-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .landing-step-block.landing-step-reverse {
        direction: ltr;
    }

    .landing-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 24px;
    }

    .landing-pricing-popular {
        transform: none;
    }

    .landing-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .landing-nav {
        display: none;
    }

    .landing-header-inner {
        grid-template-columns: 1fr auto;
    }

    .landing-header-actions .landing-btn {
        display: none;
    }

    .landing-mobile-menu-btn {
        display: flex;
    }

    .landing-hero {
        padding: calc(100px + env(safe-area-inset-top)) calc(20px + env(safe-area-inset-right)) calc(60px + env(safe-area-inset-bottom)) calc(20px + env(safe-area-inset-left));
    }

    .landing-hero-title {
        font-size: 32px;
    }

    .landing-hero-desc {
        font-size: 16px;
    }

    .landing-hero-buttons {
        flex-direction: column;
    }

    .landing-hero-buttons .landing-btn {
        width: 100%;
        max-width: 320px;
    }

    .landing-audience-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .landing-audience-card {
        padding: 22px 20px;
    }

    .landing-audience-title {
        font-size: 17px;
    }

    .landing-pain-grid {
        grid-template-columns: 1fr;
    }

    .landing-features-grid {
        grid-template-columns: 1fr;
    }

    .landing-step-title {
        font-size: 22px;
    }

    .landing-section-title {
        font-size: 24px;
    }

    .landing-stat-value {
        font-size: 28px;
    }

    .landing-cta-title {
        font-size: 24px;
    }

    .landing-footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .landing-footer-contacts {
        align-items: center;
        text-align: center;
    }

    .landing-footer-contacts-label {
        text-align: center;
    }

    .landing-footer-nav {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .landing-hero-title {
        font-size: 28px;
    }

    .landing-hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .landing-btn-lg {
        padding: 12px 20px;
        font-size: 15px;
    }

    /* Header на очень маленьких экранах */
    .landing-header {
        padding: calc(16px + env(safe-area-inset-top)) 12px 0 12px;
    }

    .landing-header .landing-header-bar {
        margin: 0 4px;
    }

    .landing-header-inner {
        padding: 12px 16px;
        gap: 12px;
    }

    .landing-hero {
        padding: calc(100px + env(safe-area-inset-top)) 16px calc(40px + env(safe-area-inset-bottom)) 16px;
    }

    /* Кнопки на всю ширину */
    .landing-btn,
    .landing-btn-primary,
    .landing-btn-secondary,
    .landing-btn-ghost,
    .landing-btn-outline {
        width: 100%;
        max-width: 100%;
    }

    /* Контейнеры без боковых отступов */
    .landing-container,
    .landing-container-lg {
        padding-left: 16px;
        padding-right: 16px;
    }
}