/* ============================================================
   Финчик — одностраничный лендинг
   ============================================================ */

body { background: var(--bg); }

/* === HEADER === */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
}
.lp-header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.lp-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}
.lp-brand-wide {
    height: 42px;
    width: auto;
    display: block;
}
@media (max-width: 640px) {
    .lp-brand-wide { height: 34px; }
}

.lp-header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}
.lp-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
.lp-nav-link:hover { color: var(--text-primary); }

.lp-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.lp-btn-ghost {
    background: transparent;
    color: var(--text-primary);
}
.lp-btn-ghost:hover { background: rgba(0,0,0,0.06); }
.lp-btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,122,255,0.25);
}
.lp-btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,122,255,0.35);
}
.lp-btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 12px;
}

/* === HERO === */
.lp-hero {
    padding: 80px 28px 60px;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}
.lp-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
.lp-hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.lp-hero h1 .accent {
    background: linear-gradient(135deg, var(--accent) 0%, #5856d6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp-hero p {
    font-size: 19px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 540px;
}
.lp-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.lp-hero-meta {
    margin-top: 24px;
    display: flex;
    gap: 24px;
    color: var(--text-tertiary);
    font-size: 13px;
}
.lp-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.lp-hero-meta-item svg { color: var(--success); }

/* === HERO MOCKUP === */
.lp-mockup {
    position: relative;
    perspective: 1500px;
}
.lp-mockup-window {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow:
        0 50px 100px -20px rgba(0,0,0,0.15),
        0 30px 60px -30px rgba(0,0,0,0.20),
        0 0 0 1px var(--border);
    overflow: hidden;
    transform: rotateY(-3deg) rotateX(2deg);
    transition: transform 0.4s ease;
}
.lp-mockup-window:hover {
    transform: rotateY(0deg) rotateX(0deg);
}
.lp-mockup-bar {
    background: #f5f5f7;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--border);
}
.lp-mockup-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}
.lp-mockup-dot:nth-child(1) { background: #ff5f57; }
.lp-mockup-dot:nth-child(2) { background: #febc2e; }
.lp-mockup-dot:nth-child(3) { background: #28c840; }
.lp-mockup-bar-title {
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}
.lp-mockup-body {
    padding: 20px;
}
.lp-mockup-kpi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}
.lp-kpi {
    background: linear-gradient(135deg, rgba(0,122,255,0.04) 0%, rgba(88,86,214,0.04) 100%);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px;
}
.lp-kpi-lbl {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.lp-kpi-val {
    font-size: 18px;
    font-weight: 700;
    margin-top: 4px;
    color: var(--text-primary);
}
.lp-kpi-delta {
    font-size: 10px;
    color: var(--success);
    margin-top: 2px;
}
.lp-kpi-delta.down { color: var(--danger); }

.lp-mockup-chart {
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    padding: 10px 0;
}
.lp-mockup-bar-fill {
    flex: 1;
    background: linear-gradient(180deg, var(--accent) 0%, #5856d6 100%);
    border-radius: 4px 4px 0 0;
    opacity: 0.85;
}

.lp-mockup-list {
    margin-top: 14px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}
.lp-mockup-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
}
.lp-mockup-row:last-child { border-bottom: none; }
.lp-mockup-row-name { flex: 1; color: var(--text-primary); font-weight: 500; }
.lp-mockup-row-cp { color: var(--text-tertiary); font-size: 11px; }
.lp-mockup-row-amt {
    font-weight: 600;
    color: var(--success);
    font-variant-numeric: tabular-nums;
}
.lp-mockup-row-amt.neg { color: var(--danger); }

/* Декоративные градиентные пятна на фоне */
.lp-bg-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

/* === FEATURES === */
.lp-section {
    padding: 80px 28px;
    max-width: 1240px;
    margin: 0 auto;
}
.lp-section-head {
    text-align: center;
    margin-bottom: 56px;
}
.lp-section-eyebrow {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.lp-section-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.lp-section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.5;
}

.lp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.lp-feature {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition);
}
.lp-feature:hover {
    border-color: rgba(0,122,255,0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.lp-feature-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-light) 0%, rgba(88,86,214,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--accent);
}
.lp-feature h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.lp-feature p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.55;
}

/* === HOW IT WORKS === */
.lp-how {
    background: linear-gradient(180deg, transparent 0%, rgba(0,122,255,0.03) 100%);
    padding: 80px 28px;
}
.lp-how-inner {
    max-width: 1240px;
    margin: 0 auto;
}
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.lp-step {
    text-align: center;
    position: relative;
}
.lp-step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 18px;
    box-shadow: 0 4px 12px rgba(0,122,255,0.15);
}
.lp-step h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.lp-step p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.55;
    max-width: 280px;
    margin: 0 auto;
}

/* === FINAL CTA === */
.lp-cta {
    max-width: 920px;
    margin: 40px auto 80px;
    padding: 56px 40px;
    background: linear-gradient(135deg, var(--accent) 0%, #5856d6 100%);
    border-radius: 24px;
    text-align: center;
    color: #fff;
    box-shadow: 0 30px 60px -20px rgba(0,122,255,0.4);
}
.lp-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.lp-cta p {
    font-size: 17px;
    opacity: 0.92;
    margin-bottom: 28px;
}
.lp-cta .lp-btn-primary {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.lp-cta .lp-btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* === FOOTER === */
.lp-footer {
    border-top: 1px solid var(--border);
    padding: 40px 28px;
    background: #fafafa;
}
.lp-footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 13px;
}
.lp-footer a {
    color: var(--text-secondary);
    text-decoration: none;
}

/* ============ STATS / SOCIAL PROOF ============ */
.lp-stats {
    padding: 56px 24px;
    background: linear-gradient(180deg, #f7f7fb 0%, #ffffff 100%);
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.06));
    border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.06));
}
.lp-stats-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 64px 80px;
    align-items: center;
}
.lp-stat { min-width: 180px; }
.lp-stat {
    text-align: center;
}
.lp-stat-val {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary, #1d1d1f);
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #007AFF, #5856D6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.lp-stat-plus {
    color: #5856D6;
    -webkit-text-fill-color: #5856D6;
    font-size: 28px;
    margin-left: 2px;
}
.lp-stat-frac {
    font-size: 22px;
    color: var(--text-secondary, #6e6e72);
    -webkit-text-fill-color: var(--text-secondary, #6e6e72);
    margin-left: 2px;
    font-weight: 600;
}
.lp-stat-unit {
    font-size: 18px;
    color: var(--text-secondary, #6e6e72);
    -webkit-text-fill-color: var(--text-secondary, #6e6e72);
    margin-left: 6px;
    font-weight: 600;
    letter-spacing: 0;
}
.lp-stat-prefix {
    font-size: 18px;
    color: var(--text-secondary, #6e6e72);
    -webkit-text-fill-color: var(--text-secondary, #6e6e72);
    margin-right: 6px;
    font-weight: 600;
    letter-spacing: 0;
}
.lp-stat-lbl {
    margin-top: 10px;
    font-size: 13.5px;
    color: var(--text-secondary, #6e6e72);
    line-height: 1.4;
}

@media (max-width: 760px) {
    .lp-stats-inner { gap: 32px 40px; }
    .lp-stat-val { font-size: 34px; }
}

/* ============ PRICING ============ */
.lp-pricing {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.lp-plan {
    background: #ffffff;
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 18px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.lp-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.lp-plan-popular {
    border-color: rgba(0, 122, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.10);
    transform: scale(1.02);
}
.lp-plan-popular:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 122, 255, 0.14);
}
.lp-plan-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007AFF, #0051d5);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 5px 14px;
    border-radius: 100px;
    box-shadow: 0 4px 10px rgba(0, 122, 255, 0.30);
}

.lp-plan-head {
    margin-bottom: 24px;
}
.lp-plan-name {
    margin-bottom: 16px;
}
/* Бейдж тарифа (дублирует sidebar-plan-badge для лендинга — landing не включает sidebar.css) */
.lp-plan-name .sidebar-plan-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 7px;
    color: #fff;
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.lp-plan-name .sidebar-plan-badge--starter { background: linear-gradient(135deg, #8e8e93, #6e6e72); }
.lp-plan-name .sidebar-plan-badge--business { background: linear-gradient(135deg, #007AFF, #0051d5); }
.lp-plan-name .sidebar-plan-badge--premium { background: linear-gradient(135deg, #5856D6, #af52de); }

.lp-plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}
.lp-plan-price-val {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary, #1d1d1f);
    line-height: 1;
    letter-spacing: -1px;
}
.lp-plan-price-cur {
    font-size: 14px;
    color: var(--text-secondary, #6e6e72);
    font-weight: 500;
}
.lp-plan-desc {
    font-size: 13.5px;
    color: var(--text-secondary, #6e6e72);
    line-height: 1.5;
    min-height: 40px;
}

.lp-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}
.lp-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 13.5px;
    color: var(--text-primary, #1d1d1f);
    line-height: 1.4;
}
.lp-plan-check {
    color: #34c759;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.lp-plan-dash {
    color: var(--text-secondary, #6e6e72);
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.lp-plan-feature-muted {
    color: var(--text-secondary, #6e6e72) !important;
    font-style: italic;
}

.lp-plan-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.lp-pricing-note {
    max-width: 740px;
    margin: 28px auto 0;
    padding: 14px 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary, #6e6e72);
    background: rgba(0, 0, 0, 0.025);
    border-radius: 10px;
}

@media (max-width: 900px) {
    .lp-pricing { grid-template-columns: 1fr; max-width: 480px; }
    .lp-plan-popular { transform: none; }
    .lp-plan-popular:hover { transform: translateY(-2px); }
}
.lp-footer a:hover { color: var(--accent); }

/* === ПРОЕКТНЫЙ МОК В HERO === */
.lp-proj-hdr {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.lp-proj-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}
.lp-proj-sub {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 3px;
}
.lp-proj-stage {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(52,199,89,0.15);
    color: #248a3d;
    flex-shrink: 0;
}
.lp-kpi-margin {
    background: linear-gradient(135deg, rgba(52,199,89,0.10) 0%, rgba(0,122,255,0.05) 100%);
    border-color: rgba(52,199,89,0.25);
}
.lp-kpi-margin .lp-kpi-val { color: #248a3d; }
.lp-kpi-margin .lp-kpi-delta { color: #248a3d; font-weight: 600; }

.lp-proj-bar {
    height: 6px;
    background: rgba(0,0,0,0.06);
    border-radius: 3px;
    overflow: hidden;
    margin: 14px 0 6px;
}
.lp-proj-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #5856d6);
    border-radius: 3px;
}
.lp-proj-bar-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

/* === ЖИЗНЕННЫЙ ЦИКЛ === */
.lp-lifecycle {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    gap: 12px;
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
}
.lp-stage {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lp-stage:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,122,255,0.3);
}
.lp-stage-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #5856d6 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(0,122,255,0.25);
}
.lp-stage-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}
.lp-stage-desc {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.lp-stage-arrow {
    align-self: center;
    color: var(--accent);
    font-size: 20px;
    opacity: 0.5;
}
.lp-stage-arrow::before {
    content: '→';
}
.lp-stage-final .lp-stage-num {
    background: linear-gradient(135deg, #34c759 0%, #007aff 100%);
    box-shadow: 0 4px 12px rgba(52,199,89,0.30);
}

/* === USE CASES === */
.lp-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.lp-case {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition);
}
.lp-case:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,122,255,0.3);
}
.lp-case-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #fff;
}
.lp-case-icon-1 { background: linear-gradient(135deg, #007aff, #5856d6); }
.lp-case-icon-2 { background: linear-gradient(135deg, #ff9500, #ff3b30); }
.lp-case-icon-3 { background: linear-gradient(135deg, #34c759, #00c7be); }
.lp-case-icon-4 { background: linear-gradient(135deg, #af52de, #5856d6); }
.lp-case h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.lp-case > p {
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 16px;
}
.lp-case-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-case-list li {
    position: relative;
    padding-left: 22px;
    font-size: 13.5px;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 8px;
}
.lp-case-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #34c759;
    font-weight: 700;
}

/* === FEATURES highlight === */
.lp-section-features { background: linear-gradient(180deg, rgba(0,122,255,0.03) 0%, transparent 100%); }
.lp-feature-highlight {
    background: linear-gradient(135deg, rgba(0,122,255,0.06) 0%, rgba(88,86,214,0.04) 100%);
    border-color: rgba(0,122,255,0.25);
}
.lp-feature-highlight .lp-feature-icon {
    background: linear-gradient(135deg, var(--accent) 0%, #5856d6 100%);
    color: #fff;
}

/* === СКРИНШОТЫ МОДУЛЕЙ === */
.lp-section-shots { background: #fafafb; padding: 80px 28px 100px; max-width: none; }
.lp-section-shots .lp-section-head { max-width: 1240px; margin: 0 auto 56px; }
.lp-shots {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
}
.lp-shot {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 20px 60px -30px rgba(0,0,0,0.10);
}
.lp-shot-reverse { grid-template-columns: 1fr 360px; }
.lp-shot-reverse .lp-shot-head { order: 2; }
.lp-shot-reverse .lp-shot-img { order: 1; }
.lp-shot-step {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.lp-shot-head h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.lp-shot-head p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* Канбан-мок */
.lp-shot-img {
    background: #f5f5f7;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid var(--border);
}
.lp-kanban {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.lp-kanban-col {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.lp-kanban-col-hdr {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.lp-kanban-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.lp-kanban-cnt {
    margin-left: auto;
    background: rgba(0,0,0,0.06);
    color: var(--text-secondary);
    padding: 1px 7px;
    border-radius: 100px;
    font-size: 10px;
}
.lp-kanban-card {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 500;
}

/* План-факт таблица */
.lp-pftable {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.lp-pftable-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 60px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.lp-pftable-row:last-child { border-bottom: none; }
.lp-pftable-row > span:nth-child(n+2) { text-align: right; font-variant-numeric: tabular-nums; }
.lp-pftable-hdr {
    background: #f5f5f7;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    font-weight: 700;
}
.lp-pftable-total {
    background: rgba(0,122,255,0.04);
    font-weight: 700;
    border-top: 2px solid var(--accent);
}
.lp-c-green { color: #248a3d; }
.lp-c-red { color: #d70015; }
.lp-c-grey { color: var(--text-secondary); }

/* Сводный по проектам */
.lp-summary {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.lp-sum-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1fr 80px;
    padding: 11px 14px;
    font-size: 13px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.lp-sum-row:last-child { border-bottom: none; }
.lp-sum-row > span:nth-child(n+3) { text-align: right; font-variant-numeric: tabular-nums; }
.lp-sum-hdr {
    background: #f5f5f7;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    font-weight: 700;
}
.lp-sum-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
}
.lp-sum-tag.green  { background: rgba(52,199,89,0.15);  color: #248a3d; }
.lp-sum-tag.blue   { background: rgba(0,122,255,0.12); color: #0051d5; }
.lp-sum-tag.orange { background: rgba(255,149,0,0.18); color: #b86200; }
.lp-sum-tag.grey   { background: rgba(0,0,0,0.06);     color: var(--text-secondary); }

/* === FAQ === */
.lp-section-faq { max-width: 880px; }
.lp-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp-faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
}
.lp-faq-item[open] {
    border-color: rgba(0,122,255,0.3);
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.lp-faq-item summary {
    padding: 18px 24px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.15s;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    width: 24px; height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s, background 0.2s;
}
.lp-faq-item[open] summary::after {
    content: '−';
    background: var(--accent);
    color: #fff;
}
.lp-faq-item summary:hover { color: var(--accent); }
.lp-faq-item p {
    padding: 0 24px 18px;
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}
.lp-faq-item em { color: var(--text-primary); font-style: normal; font-weight: 600; }

/* === RESPONSIVE === */
@media (max-width: 960px) {
    .lp-hero { grid-template-columns: 1fr; padding: 48px 20px 40px; gap: 40px; }
    .lp-hero h1 { font-size: 40px; }
    .lp-features { grid-template-columns: 1fr; }
    .lp-steps { grid-template-columns: 1fr; }
    .lp-cases { grid-template-columns: 1fr; }
    .lp-lifecycle { grid-template-columns: 1fr; gap: 16px; }
    .lp-stage-arrow { transform: rotate(90deg); margin: 4px auto; }
    .lp-shot, .lp-shot-reverse { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
    .lp-shot-reverse .lp-shot-head { order: 1; }
    .lp-shot-reverse .lp-shot-img { order: 2; }
    .lp-section { padding: 56px 20px; }
    .lp-section-title { font-size: 30px; }
    .lp-cta h2 { font-size: 28px; }
    .lp-cta { padding: 40px 24px; }
    .lp-header-nav .lp-nav-link { display: none; }
    .lp-kanban { grid-template-columns: repeat(2, 1fr); }
    .lp-pftable-row, .lp-sum-row { grid-template-columns: 1.4fr 1fr 1fr 50px; font-size: 12px; }
    .lp-sum-row { grid-template-columns: 1.6fr 1fr 1fr 1fr 60px; }
}

/* ===== Промо-баннер «бесплатно до 1 августа» (над блоком цифр) ===== */
.lp-promo { max-width: 920px; margin: 0 auto; padding: 8px 20px 0; }
.lp-promo-inner {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 22px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(31,108,240,0.10), rgba(88,86,214,0.10));
    border: 1px solid rgba(88,86,214,0.28);
}
.lp-promo-icon {
    flex: 0 0 auto; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; font-size: 22px;
    background: linear-gradient(135deg, #1f6cf0, #5856d6);
}
.lp-promo-text { min-width: 0; }
.lp-promo-title {
    font-size: 17px; font-weight: 700;
    background: linear-gradient(135deg, #1f6cf0, #5856d6);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lp-promo-sub { font-size: 14px; color: #5a5a68; margin-top: 3px; line-height: 1.4; }
@media (max-width: 600px) {
    .lp-promo-inner { flex-direction: column; text-align: center; }
}
