/* ==================== БАЗА И ПЕРЕМЕННЫЕ ==================== */
:root {
    --bg-dark:     #0A0E27;
    --bg-dark-2:   #111638;
    --bg-light:    #FFFFFF;
    --bg-soft:     #F6F7FB;
    --bg-soft-2:   #EEF0F8;
    --text:        #0F172A;
    --text-soft:   #475569;
    --text-mute:   #94A3B8;
    --line:        #E2E8F0;
    --line-dark:   rgba(255,255,255,.08);
    --primary:     #4F46E5;
    --primary-2:   #6366F1;
    --primary-d:   #4338CA;
    --accent:      #B6F500;
    --accent-2:    #D9FF52;
    --orange:      #FF6B35;
    --pink:        #EC4899;
    --green:       #10B981;
    --red:         #EF4444;
    --radius:      14px;
    --radius-lg:   22px;
    --shadow-sm:   0 2px 8px rgba(15,23,42,.04);
    --shadow:      0 8px 32px rgba(15,23,42,.08);
    --shadow-lg:   0 24px 60px rgba(15,23,42,.14);
    --shadow-glow: 0 20px 60px -10px rgba(79,70,229,.45);
    --ease:        cubic-bezier(.4,0,.2,1);
    --ease-out:    cubic-bezier(.22,1,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    background: var(--bg-light);
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; background: none; border: 0; }
input, select, textarea { font-family: inherit; font-size: inherit; outline: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ==================== ТИПОГРАФИКА И ХЕЛПЕРЫ ==================== */
.section-title {
    font-size: clamp(28px, 4.4vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--text);
}
.section-title--light { color: #fff; }
.section-subtitle {
    margin-top: 18px;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.55;
    color: var(--text-soft);
    max-width: 720px;
}
.section-subtitle--light { color: rgba(255,255,255,.7); }
.section-head { margin-bottom: 52px; }
.section-head--center { text-align: center; }
.section-head--center .section-subtitle { margin-left: auto; margin-right: auto; }

.text-gradient {
    background: linear-gradient(135deg, #B6F500 0%, #6366F1 50%, #EC4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.text-gradient-dark {
    background: linear-gradient(135deg, #4F46E5 0%, #EC4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.text-accent { color: var(--primary); }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
    margin-bottom: 18px;
}
.badge--light {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
}
.badge--dark {
    background: rgba(79,70,229,.08);
    color: var(--primary-d);
    border: 1px solid rgba(79,70,229,.18);
}
.badge__dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(182,245,0,.25);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 4px rgba(182,245,0,.25); }
    50%     { box-shadow: 0 0 0 8px rgba(182,245,0,.05); }
}

/* ==================== КНОПКИ ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .005em;
    cursor: pointer;
    transition: all .3s var(--ease);
    border: 0;
    text-align: center;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--sm  { padding: 10px 18px; font-size: 14px; border-radius: 10px; }
.btn--lg  { padding: 17px 30px; font-size: 16px; border-radius: 14px; }
.btn--block { width: 100%; }

.btn--primary {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: #fff;
    box-shadow: 0 12px 28px -8px rgba(79,70,229,.55), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(79,70,229,.7), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--ghost {
    background: rgba(255,255,255,.08);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.18);
}
.btn--ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--outline {
    background: transparent;
    color: var(--primary-d);
    border: 1.5px solid var(--line);
}
.btn--outline:hover { background: var(--bg-soft); border-color: var(--primary); color: var(--primary); }

/* ==================== ХЕДЕР ==================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10,14,39,.6);
    backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .3s var(--ease);
}
.header.is-scrolled { background: rgba(10,14,39,.88); }
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}
.logo__mark {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--accent) 0%, #6366F1 100%);
    color: var(--bg-dark);
    border-radius: 10px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(182,245,0,.35);
}
.logo__accent { color: var(--accent); }
.nav {
    display: flex;
    gap: 28px;
    flex: 1;
    justify-content: center;
}
.nav__link {
    color: rgba(255,255,255,.7);
    font-weight: 500;
    font-size: 14.5px;
    transition: color .2s var(--ease);
    position: relative;
}
.nav__link:hover { color: #fff; }
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 50%;
    width: 0; height: 2px;
    background: var(--accent);
    transition: all .3s var(--ease);
    transform: translateX(-50%);
}
.nav__link:hover::after { width: 24px; }
.header__contacts {
    display: flex;
    align-items: center;
    gap: 18px;
}
.header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.85);
    font-weight: 600;
    font-size: 14.5px;
    transition: color .2s var(--ease);
}
.header__phone:hover { color: var(--accent); }
.header__phone svg { width: 16px; height: 16px; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s var(--ease); }

/* ==================== HERO ==================== */
.hero {
    position: relative;
    padding: 140px 0 0;
    background: var(--bg-dark);
    color: #fff;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .5;
}
.hero__glow--1 {
    width: 600px; height: 600px;
    top: -100px; left: -150px;
    background: radial-gradient(circle, #4F46E5 0%, transparent 70%);
}
.hero__glow--2 {
    width: 700px; height: 700px;
    top: 100px; right: -200px;
    background: radial-gradient(circle, #B6F500 0%, transparent 70%);
    opacity: .25;
}
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
}

/* ---- Поток писем «новая заявка на почте» на фоне hero ---- */
.mailflow {
    position: absolute;
    top: 160px;
    bottom: 110px;
    right: -60px;
    width: 720px;
    z-index: 1;
    pointer-events: none;
    transform: perspective(1700px) rotateY(-16deg) rotateX(3deg);
    transform-origin: center right;
    opacity: .82;
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 80%, transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 80%, transparent 100%);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.4));
}
.mail {
    display: grid;
    grid-template-columns: 16px 32px auto 8px 1fr 14px 46px;
    align-items: center;
    gap: 14px;
    padding: 10px 18px;
    background: rgba(20, 26, 48, .9);
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: 13px;
    color: rgba(255,255,255,.85);
    font-family: 'Inter', system-ui, sans-serif;
    backdrop-filter: blur(4px);
    transform: translateY(-110%) scale(.98);
    opacity: 0;
    transition:
        transform .65s cubic-bezier(.22,1,.36,1),
        opacity   .55s ease;
    will-change: transform, opacity;
    flex-shrink: 0;
}
.mail--in {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.mail--fresh {
    background: rgba(40, 50, 80, .92);
    box-shadow: inset 3px 0 0 var(--accent);
}
.mail__check {
    width: 14px; height: 14px;
    border: 1.5px solid rgba(255,255,255,.22);
    border-radius: 3px;
}
.mail__avatar {
    width: 30px; height: 30px;
    background: linear-gradient(135deg, #F9D75E 0%, #F0B83C 100%);
    color: #1A1F33;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .02em;
    box-shadow: 0 2px 6px rgba(249, 215, 94, .25);
}
.mail__from {
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    font-size: 13px;
}
.mail__dot {
    width: 7px; height: 7px;
    background: #F9D75E;
    border-radius: 50%;
}
.mail__text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    gap: 10px;
    align-items: baseline;
    min-width: 0;
}
.mail__text strong {
    font-weight: 600;
    color: rgba(255,255,255,.95);
}
.mail__text span {
    color: rgba(255,255,255,.55);
    font-weight: 500;
}
.mail__star {
    color: rgba(255,255,255,.25);
    font-size: 14px;
}
.mail__time {
    font-size: 11.5px;
    color: rgba(255,255,255,.5);
    text-align: right;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

/* на узких экранах поток скрываем, чтобы не мешал контенту */
@media (max-width: 1100px) {
    .mailflow { display: none; }
}
.hero__inner {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
}
.hero__content {
    padding-top: 24px;
    max-width: 720px;
    position: relative;
}
.hero__title {
    margin-top: 22px;
    font-size: clamp(34px, 5.2vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}
.hero__subtitle {
    margin-top: 22px;
    font-size: clamp(16px, 1.45vw, 19px);
    line-height: 1.55;
    color: rgba(255,255,255,.72);
    max-width: 560px;
}
.hero__benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
    margin-top: 28px;
    max-width: 580px;
}
.hero__benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,.88);
    font-weight: 500;
}
.hero__benefits svg {
    width: 18px; height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}
.hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
}
.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,.08);
    max-width: 580px;
}
.stat__num {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,.55) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.stat__label {
    margin-top: 8px;
    font-size: 13.5px;
    color: rgba(255,255,255,.6);
    line-height: 1.4;
}

/* Форма в hero */
.hero__form-wrap {
    position: sticky;
    top: 100px;
}
.lead-form {
    background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: #fff;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,.5);
    position: relative;
    overflow: hidden;
}
.lead-form::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(182,245,0,.18) 0%, transparent 70%);
    pointer-events: none;
}
.lead-form__head { position: relative; z-index: 1; }
.lead-form__title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.lead-form__title .text-accent { color: var(--accent); }
.lead-form__subtitle {
    margin-top: 10px;
    font-size: 14.5px;
    color: rgba(255,255,255,.65);
    line-height: 1.5;
}
.lead-form__body {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative; z-index: 1;
}
.lead-form__legal {
    font-size: 12px;
    color: rgba(255,255,255,.45);
    text-align: center;
    line-height: 1.5;
}
.lead-form__legal a { color: rgba(255,255,255,.7); text-decoration: underline; }
.lead-form__trust {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.trust-item {
    text-align: center;
}
.trust-item strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
}
.trust-item span {
    font-size: 12px;
    color: rgba(255,255,255,.6);
}

/* Поля формы */
.field {
    position: relative;
}
.field__input {
    width: 100%;
    padding: 16px 18px 16px;
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: all .25s var(--ease);
}
.field__input::placeholder { color: transparent; }
.field__input:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,.08);
    box-shadow: 0 0 0 4px rgba(182,245,0,.12);
}
.field__label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.5);
    font-size: 15px;
    pointer-events: none;
    transition: all .2s var(--ease);
    background: transparent;
    padding: 0 4px;
}
.field__input:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label {
    top: 0;
    font-size: 11.5px;
    color: var(--accent);
    background: var(--bg-dark);
    font-weight: 600;
}
.field__textarea {
    min-height: 70px;
    resize: vertical;
    padding-top: 18px;
    padding-bottom: 14px;
    line-height: 1.4;
}
.field__select {
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff80' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}
.field__select option { background: var(--bg-dark); color: #fff; }

/* Лента доверия */
.hero__marquee {
    margin-top: 0;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,.2);
}
.hero__marquee::before,
.hero__marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.hero__marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%); }
.hero__marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg-dark) 0%, transparent 100%); }
.marquee__track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: marquee 35s linear infinite;
}
.marquee__item {
    color: rgba(255,255,255,.55);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
}
.marquee__item::before {
    content: '★';
    color: var(--accent);
    font-size: 12px;
}
@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ==================== БОЛЬ / ПРОБЛЕМА ==================== */
.pain {
    padding: 100px 0;
    background: var(--bg-soft);
}
.pain__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.pain-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all .35s var(--ease);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(239,68,68,.2);
}
.pain-card__num {
    position: absolute;
    top: 24px; right: 28px;
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    color: var(--bg-soft-2);
    letter-spacing: -0.04em;
    z-index: 0;
}
.pain-card__title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    position: relative; z-index: 1;
    letter-spacing: -0.015em;
}
.pain-card__text {
    color: var(--text-soft);
    font-size: 15.5px;
    line-height: 1.6;
    position: relative; z-index: 1;
}

.pain__verdict {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, var(--bg-soft-2) 100%);
    padding: 28px 36px;
    border-radius: var(--radius-lg);
    border: 1.5px dashed rgba(79,70,229,.25);
}
.pain__verdict-text {
    font-size: 17px;
    color: var(--text-soft);
}
.pain__verdict-text strong { color: var(--red); }
.pain__verdict-arrow {
    font-size: 28px;
    color: var(--primary);
    transform: rotate(-90deg);
}
.pain__verdict-solution {
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
}

/* ==================== СРАВНЕНИЕ ==================== */
.compare {
    padding: 100px 0;
    background: #fff;
}
.compare__wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px -20px rgba(15,23,42,.12);
    overflow-x: auto;
    border: 1px solid var(--line);
}
.compare__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}
.compare__table th,
.compare__table td {
    padding: 22px 28px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}
.compare__table th:first-child,
.compare__table td:first-child {
    font-weight: 600;
    color: var(--text-soft);
    width: 32%;
}
.compare__th {
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -0.015em;
    position: relative;
    padding-top: 32px !important;
}
.compare__th--bad { color: var(--text); }
.compare__th--good {
    color: #fff;
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    border-radius: 16px 16px 0 0;
}
.compare__th-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    background: rgba(239,68,68,.1);
    color: var(--red);
    margin-bottom: 8px;
}
.compare__th-tag--good {
    background: rgba(255,255,255,.2);
    color: #fff;
}
.compare__table tbody tr:last-child td { border-bottom: 0; }
.compare__table tbody tr:last-child td:nth-child(3) {
    border-radius: 0 0 16px 16px;
}
.compare__table .bad,
.compare__table .good {
    font-weight: 600;
    position: relative;
    padding-left: 68px !important;
}
.compare__table .bad {
    color: var(--text-soft);
}
.compare__table .bad::before {
    content: '✕';
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px; height: 24px;
    background: rgba(239,68,68,.12);
    color: var(--red);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
}
.compare__table .good {
    color: var(--text);
    background: linear-gradient(90deg, rgba(79,70,229,.04) 0%, transparent 100%);
}
.compare__table .good::before {
    content: '✓';
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px; height: 24px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
}

/* убираем оставшийся CSS стрелок в кейсах (HTML уже без них) */
.case-metric__arrow { display: none; }

/* ==================== КАК РАБОТАЕТ ==================== */
.how {
    padding: 100px 0;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}
.how::before {
    content: '';
    position: absolute;
    top: 200px; left: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(79,70,229,.08) 0%, transparent 70%);
    pointer-events: none;
}
.how__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    position: relative;
}
.how__steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(79,70,229,.25) 0 6px, transparent 6px 12px);
    z-index: 0;
}
.how-step {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    position: relative;
    z-index: 1;
    transition: all .35s var(--ease);
}
.how-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(79,70,229,.2);
}
.how-step__num {
    width: 54px; height: 54px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #fff;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px -4px rgba(79,70,229,.45);
}
.how-step__time {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(79,70,229,.08);
    color: var(--primary-d);
    font-size: 11.5px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.how-step__title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.how-step__text {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.55;
}
.how__cta {
    margin-top: 48px;
    text-align: center;
}

/* ==================== ТАРИФЫ ==================== */
.pricing {
    padding: 100px 0;
    background: #fff;
}
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.price-card {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all .35s var(--ease);
}
.price-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 24px 50px -20px rgba(79,70,229,.25);
}
.price-card--featured {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    color: #fff;
    border: 0;
    box-shadow: 0 30px 60px -20px rgba(10,14,39,.5);
    transform: translateY(-8px);
}
.price-card--featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 36px 70px -20px rgba(10,14,39,.6);
}
.price-card__badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, #6EE7B7 100%);
    color: var(--bg-dark);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px -4px rgba(182,245,0,.5);
}
.price-card__tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(79,70,229,.08);
    color: var(--primary-d);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 14px;
}
.price-card--featured .price-card__tag {
    background: rgba(182,245,0,.15);
    color: var(--accent);
}
.price-card__name {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}
.price-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}
.price-card__from {
    font-size: 14px;
    color: var(--text-mute);
    font-weight: 600;
}
.price-card--featured .price-card__from { color: rgba(255,255,255,.5); }
.price-card__sum {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text);
}
.price-card--featured .price-card__sum {
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.price-card__cur {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-soft);
}
.price-card--featured .price-card__cur { color: rgba(255,255,255,.6); }
.price-card__hint {
    font-size: 13.5px;
    color: var(--text-soft);
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
}
.price-card--featured .price-card__hint {
    color: rgba(255,255,255,.6);
    border-color: rgba(255,255,255,.1);
}
.price-card__list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.price-card__list li {
    position: relative;
    padding-left: 28px;
    font-size: 14.5px;
    color: var(--text-soft);
    line-height: 1.45;
}
.price-card--featured .price-card__list li { color: rgba(255,255,255,.85); }
.price-card__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 4px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--primary);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}
.price-card--featured .price-card__list li::before {
    background-color: var(--accent);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230A0E27' stroke-width='3.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.pricing__note {
    margin-top: 36px;
    text-align: center;
    color: var(--text-soft);
    font-size: 15px;
}
.pricing__note a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ==================== КАЛЬКУЛЯТОР ==================== */
.calc {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1E1B4B 50%, var(--bg-dark) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.calc::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(182,245,0,.12) 0%, transparent 70%);
    pointer-events: none;
}
.calc__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.calc__title {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #fff;
    margin-top: 18px;
}
.calc__text {
    margin-top: 18px;
    font-size: 16.5px;
    line-height: 1.6;
    color: rgba(255,255,255,.7);
    max-width: 480px;
}
.calc__pros {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.calc__pro {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.85);
    font-size: 15px;
    font-weight: 500;
}
.calc__pro span {
    width: 22px; height: 22px;
    background: var(--accent);
    color: var(--bg-dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}
.calc-widget {
    background: linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,.5);
}
.calc-field {
    margin-bottom: 24px;
}
.calc-field__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.calc-field label {
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}
.calc-field__value {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.01em;
}
.calc-field input[type=range] {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,.1);
    border-radius: 100px;
    appearance: none;
    cursor: pointer;
    outline: none;
}
.calc-field input[type=range]::-webkit-slider-thumb {
    appearance: none;
    width: 22px; height: 22px;
    background: linear-gradient(135deg, var(--accent) 0%, #6EE7B7 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(182,245,0,.5), 0 0 0 4px rgba(182,245,0,.2);
    transition: transform .2s var(--ease);
}
.calc-field input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-field input[type=range]::-moz-range-thumb {
    width: 22px; height: 22px;
    background: var(--accent);
    border-radius: 50%;
    border: 0;
    cursor: pointer;
}
.calc-field__scale {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255,255,255,.4);
}
.calc-result {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}
.calc-result__item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    padding: 16px 18px;
    border-radius: 12px;
}
.calc-result__item--accent {
    background: linear-gradient(135deg, rgba(79,70,229,.25) 0%, rgba(99,102,241,.15) 100%);
    border-color: rgba(99,102,241,.3);
    grid-column: span 2;
}
.calc-result__item--roi {
    background: linear-gradient(135deg, rgba(182,245,0,.18) 0%, rgba(110,231,183,.1) 100%);
    border-color: rgba(182,245,0,.3);
    grid-column: span 2;
}
.calc-result__label {
    display: block;
    font-size: 12.5px;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
    margin-bottom: 6px;
}
.calc-result__num {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}
.calc-result__item--roi .calc-result__num { color: var(--accent); }

/* ==================== КЕЙСЫ ==================== */
.cases {
    padding: 100px 0;
    background: #fff;
}
.cases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.case-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
}
.case-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--pink) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.case-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 24px 50px -20px rgba(15,23,42,.18);
}
.case-card:hover::before { transform: scaleX(1); }
.case-card--1::before { background: linear-gradient(90deg, #FF6B35 0%, #F59E0B 100%); }
.case-card--2::before { background: linear-gradient(90deg, #6366F1 0%, #06B6D4 100%); }
.case-card--3::before { background: linear-gradient(90deg, #B6F500 0%, #10B981 100%); }
.case-card--4::before { background: linear-gradient(90deg, #EC4899 0%, #8B5CF6 100%); }
.case-card--5::before { background: linear-gradient(90deg, #F59E0B 0%, #EF4444 100%); }
.case-card--6::before { background: linear-gradient(90deg, #06B6D4 0%, #4F46E5 100%); }

.case-card__industry {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--primary);
    margin-bottom: 14px;
}
.case-card__title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 22px;
    letter-spacing: -0.015em;
    min-height: 50px;
}
.case-card__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
    padding: 18px;
    background: var(--bg-soft);
    border-radius: 14px;
}
.case-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    position: relative;
}
.case-metric__from {
    font-size: 14px;
    color: var(--text-mute);
    font-weight: 600;
    text-decoration: line-through;
}
.case-metric__arrow {
    position: absolute;
    top: -2px;
    right: -10px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 800;
}
.case-metric__to {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
}
.case-metric__label {
    font-size: 11px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 600;
}
.case-card__text {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
}
.cases__cta {
    margin-top: 48px;
    text-align: center;
}

/* ==================== ОТРАСЛИ ==================== */
.industries {
    padding: 100px 0;
    background: var(--bg-soft);
}
.industries__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.ind-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 22px;
    transition: all .3s var(--ease);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ind-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.ind-card__icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-soft-2) 100%);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 26px;
}
.ind-card__name {
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text);
}
.ind-card__cpl {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    padding-top: 8px;
    border-top: 1px solid var(--line);
    margin-top: auto;
}
.ind-card--more {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #fff;
    border-color: transparent;
}
.ind-card--more .ind-card__icon {
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}
.ind-card--more .ind-card__name { color: #fff; }
.ind-card--more .ind-card__link {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 8px;
    margin-top: auto;
}

/* ==================== ГАРАНТИИ ==================== */
.guarantees {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1E1B4B 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.guarantees::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(99,102,241,.15) 0%, transparent 60%);
    pointer-events: none;
}
.guarantees__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    position: relative;
    z-index: 1;
}
.guarantee-card {
    background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 26px 22px;
    transition: all .35s var(--ease);
}
.guarantee-card:hover {
    transform: translateY(-4px);
    border-color: rgba(182,245,0,.35);
    background: linear-gradient(180deg, rgba(182,245,0,.06) 0%, rgba(255,255,255,.02) 100%);
}
.guarantee-card__icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--accent) 0%, #6EE7B7 100%);
    color: var(--bg-dark);
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}
.guarantee-card__icon svg { width: 24px; height: 24px; }
.guarantee-card__title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.guarantee-card__text {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    line-height: 1.55;
}

/* ==================== ОТЗЫВЫ ==================== */
.reviews {
    padding: 100px 0;
    background: #fff;
}
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all .35s var(--ease);
    position: relative;
}
.review:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(79,70,229,.2);
}
.review__rating {
    color: #F59E0B;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.review__text {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 24px;
    font-weight: 500;
}
.review__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.review__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .02em;
    flex-shrink: 0;
}
.review__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}
.review__pos {
    font-size: 13px;
    color: var(--text-soft);
}

.reviews__counters {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 36px 24px;
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-soft-2) 100%);
    border-radius: var(--radius-lg);
}
.reviews__counter {
    text-align: center;
}
.reviews__counter-num {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}
.reviews__counter-label {
    font-size: 13.5px;
    color: var(--text-soft);
    line-height: 1.4;
}

/* ==================== FAQ ==================== */
.faq {
    padding: 100px 0;
    background: var(--bg-soft);
}
.faq__list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s var(--ease);
}
.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 12px 30px -10px rgba(79,70,229,.18);
}
.faq-item__q {
    list-style: none;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: color .2s var(--ease);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--primary); }
.faq-item__icon {
    width: 32px; height: 32px;
    background: var(--bg-soft);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all .3s var(--ease);
}
.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 14px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s var(--ease);
}
.faq-item__icon::before { transform: translate(-50%, -50%); }
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-item__icon {
    background: var(--primary);
}
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after { background: #fff; }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-item__a {
    padding: 0 28px 24px;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--text-soft);
}

/* ==================== ФИНАЛЬНЫЙ CTA ==================== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1E1B4B 50%, #4338CA 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(182,245,0,.15) 0%, transparent 60%);
    pointer-events: none;
}
.final-cta__inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.final-cta__title {
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-top: 18px;
}
.final-cta__text {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,.72);
    max-width: 520px;
}
.final-cta__list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.final-cta__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15.5px;
    color: rgba(255,255,255,.9);
    font-weight: 500;
}
.final-cta__list svg {
    width: 22px; height: 22px;
    color: var(--accent);
    background: rgba(182,245,0,.12);
    border-radius: 50%;
    padding: 4px;
    flex-shrink: 0;
}
.final-cta__signature {
    margin-top: 36px;
    padding: 18px 22px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 460px;
}
.final-cta__sig-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}
.final-cta__sig-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.final-cta__sig-pos {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    line-height: 1.4;
    margin-top: 4px;
}

.lead-form--big { padding: 36px; }
.lead-form__msgrs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
}
.lead-form__msgr {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    transition: all .25s var(--ease);
}
.lead-form__msgr svg { width: 18px; height: 18px; }
.lead-form__msgr--tg { background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%); }
.lead-form__msgr--wa { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
.lead-form__msgr:hover { transform: scale(1.1); }

/* ==================== ФУТЕР ==================== */
.footer {
    padding: 72px 0 32px;
    background: #060920;
    color: rgba(255,255,255,.7);
    border-top: 1px solid rgba(255,255,255,.05);
}
.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__about {
    margin-top: 18px;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255,255,255,.55);
    max-width: 360px;
}
.footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff;
    margin-bottom: 6px;
}
.footer__col a {
    font-size: 14.5px;
    color: rgba(255,255,255,.6);
    transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--accent); }
.footer__phone {
    font-size: 18px !important;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -0.01em;
}
.footer__address {
    font-size: 13.5px;
    color: rgba(255,255,255,.5);
    line-height: 1.55;
    margin-top: 4px;
}
.footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.footer__socials a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.7);
    transition: all .25s var(--ease);
}
.footer__socials a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.footer__socials svg { width: 16px; height: 16px; }
.footer__bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,.45);
}
.footer__legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer__legal-links a:hover { color: var(--accent); }

/* ==================== ПЛАВАЮЩАЯ КНОПКА ==================== */
.float-msg {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 90;
}
.float-msg__main {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #fff;
    box-shadow: 0 14px 32px -8px rgba(79,70,229,.6);
    display: grid;
    place-items: center;
    transition: all .3s var(--ease);
    position: relative;
}
.float-msg__main::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--primary);
    opacity: .4;
    z-index: -1;
    animation: float-pulse 2s infinite;
}
@keyframes float-pulse {
    0%   { transform: scale(1); opacity: .5; }
    100% { transform: scale(1.4); opacity: 0; }
}
.float-msg__main svg { width: 26px; height: 26px; }
.float-msg__main:hover { transform: scale(1.08); }
.float-msg__items {
    position: absolute;
    bottom: 72px; right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s var(--ease);
}
.float-msg.is-open .float-msg__items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.float-msg__item {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 10px 20px -6px rgba(0,0,0,.3);
    transition: transform .25s var(--ease);
}
.float-msg__item:hover { transform: scale(1.1); }
.float-msg__item svg { width: 22px; height: 22px; }
.float-msg__item--tg { background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%); }
.float-msg__item--wa { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }

/* ==================== МОДАЛКА ==================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal.is-open { display: flex; }
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,14,39,.85);
    backdrop-filter: blur(8px);
    animation: fadeIn .3s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } }
.modal__box {
    position: relative;
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px 36px 36px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: scaleIn .4s var(--ease-out);
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(.92) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal__close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--text);
    font-size: 22px;
    line-height: 1;
}
.modal__close:hover { background: var(--line); }
.modal__icon {
    width: 80px; height: 80px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--green) 100%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 16px 32px -8px rgba(16,185,129,.45);
    animation: bounceIn .6s var(--ease-out) .15s both;
}
@keyframes bounceIn {
    0%   { opacity: 0; transform: scale(.3); }
    50%  { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}
.modal__icon svg { width: 38px; height: 38px; }
.modal__title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.modal__text {
    font-size: 15.5px;
    color: var(--text-soft);
    line-height: 1.55;
    margin-bottom: 18px;
}
.modal__hint {
    font-size: 13.5px;
    color: var(--text-mute);
    margin-bottom: 18px;
}

/* === Модалка с формой === */
.modal__box--form {
    max-width: 520px;
    padding: 36px 36px 32px;
    text-align: left;
}
.modal-form__head {
    text-align: center;
    margin-bottom: 22px;
}
.modal-form__title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
}
.modal-form__subtitle {
    font-size: 14.5px;
    color: var(--text-soft);
    line-height: 1.5;
    max-width: 420px;
    margin: 0 auto;
}
.lead-form--modal {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.modal-form__trust {
    margin-top: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.modal-trust {
    text-align: center;
}
.modal-trust strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.01em;
}
.modal-trust span {
    display: block;
    font-size: 11.5px;
    color: var(--text-soft);
    margin-top: 2px;
    line-height: 1.3;
}

/* поля на светлом фоне (для модалки) */
.field--light .field__input {
    background: var(--bg-soft);
    border: 1.5px solid var(--line);
    color: var(--text);
    padding: 16px 18px;
    width: 100%;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
}
.field--light .field__input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(79,70,229,.1);
}
.field--light .field__label {
    color: var(--text-mute);
}
.field--light .field__input:focus + .field__label,
.field--light .field__input:not(:placeholder-shown) + .field__label {
    color: var(--primary);
    background: #fff;
}
.field--light .field__select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}
.field--light .field__select option { background: #fff; color: var(--text); }
.lead-form__legal--light {
    font-size: 12px;
    color: var(--text-mute);
    text-align: center;
    line-height: 1.5;
    margin: 0;
}
.lead-form__legal--light a { color: var(--text-soft); text-decoration: underline; }

/* ==================== ВАРИАНТЫ РАБОТЫ ==================== */
.variants {
    padding: 100px 0;
    background: #fff;
}
.variants__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}
.variant-card {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all .35s var(--ease);
}
.variant-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px -20px rgba(79,70,229,.22);
}
.variant-card--featured {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
    color: #fff;
    border: 0;
    box-shadow: 0 36px 80px -24px rgba(10,14,39,.55);
    position: relative;
    margin-top: 14px;
}
.variant-card--featured::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(182,245,0,.22) 0%, transparent 55%);
    border-radius: inherit;
    pointer-events: none;
}
.variant-card--featured:hover {
    transform: translateY(-10px);
}
.variant-card__badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, #6EE7B7 100%);
    color: var(--bg-dark);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px -4px rgba(182,245,0,.5);
    z-index: 2;
}
.variant-card__head { position: relative; z-index: 1; }
.variant-card__tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(79,70,229,.08);
    color: var(--primary-d);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 18px;
}
.variant-card--featured .variant-card__tag {
    background: rgba(182,245,0,.15);
    color: var(--accent);
}
.variant-card__title {
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.variant-card__lead {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--text-soft);
    margin-bottom: 24px;
}
.variant-card--featured .variant-card__lead { color: rgba(255,255,255,.7); }

.variant-card__price {
    padding: 18px 22px;
    background: var(--bg-soft);
    border-radius: 14px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.variant-card--featured .variant-card__price {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
}
.variant-card__price-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-mute);
}
.variant-card--featured .variant-card__price-label { color: rgba(255,255,255,.55); }
.variant-card__price-val {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1;
}
.variant-card--featured .variant-card__price-val { color: var(--accent); }
.variant-card__price-hint {
    font-size: 13px;
    color: var(--text-soft);
    margin-top: 4px;
}
.variant-card--featured .variant-card__price-hint { color: rgba(255,255,255,.55); }

.variant-card__list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.variant-card__list li {
    position: relative;
    padding-left: 30px;
    font-size: 14.5px;
    color: var(--text-soft);
    line-height: 1.5;
}
.variant-card--featured .variant-card__list li { color: rgba(255,255,255,.78); }
.variant-card__list li strong {
    color: var(--text);
    font-weight: 700;
}
.variant-card--featured .variant-card__list li strong { color: #fff; }
.variant-card__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 3px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--primary);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}
.variant-card--featured .variant-card__list li::before {
    background-color: var(--accent);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230A0E27' stroke-width='3.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.variants__note {
    margin-top: 36px;
    text-align: center;
    color: var(--text-soft);
    font-size: 15px;
}
.variants__note a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ==================== ВОРОНКА / КАК ПРИВОДИМ ЛИДОВ ==================== */
.funnel {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
    position: relative;
    overflow: hidden;
}
.funnel-stage {
    margin-bottom: 70px;
    padding: 36px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px -15px rgba(15,23,42,.08);
}
.funnel-stage:last-of-type { margin-bottom: 0; }
.funnel-stage__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
}
.funnel-stage__step {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.funnel-stage__title {
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.funnel-stage__text {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.55;
}

/* --- каналы --- */
.channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.channel {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    transition: all .3s var(--ease);
    display: flex;
    flex-direction: column;
}
.channel:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px -16px rgba(15,23,42,.15);
}
.channel__logo {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    overflow: hidden;
}
.channel__logo svg { width: 26px; height: 26px; }
.channel__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    display: block;
}
.channel__logo--yandex {
    background: #fff;
    border: 1px solid var(--line);
}
.channel__logo--yandex img { padding: 6px; }
.channel__logo--google  { background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC04 75%, #EA4335 100%); }
.channel__logo--google .channel__g { color: #fff; font-family: 'Inter', sans-serif; }
.channel__logo--vk      { background: linear-gradient(135deg, #0077FF 0%, #00C8FF 100%); font-size: 16px; }
.channel__logo--avito {
    background: #fff;
    border: 1px solid var(--line);
}
.channel__logo--avito img { padding: 4px; }
.channel__logo--tg      { background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%); }
.channel__logo--seo     { background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%); }
.channel__name {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.channel__desc {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.55;
    margin-bottom: 14px;
}
.channel__desc strong { color: var(--primary); font-weight: 700; }
.channel__list {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.channel__list li {
    font-size: 13px;
    color: var(--text-soft);
    padding-left: 14px;
    position: relative;
}
.channel__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* --- посадочные --- */
.landings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.landing-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s var(--ease);
    display: flex;
    flex-direction: column;
}
.landing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px -20px rgba(15,23,42,.18);
    border-color: transparent;
}
.landing-card__preview {
    background: linear-gradient(135deg, #1E1B4B 0%, #0A0E27 100%);
    padding: 14px;
    position: relative;
}
.landing-card__preview--lp    { background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%); }
.landing-card__preview--multi { background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%); }
.landing-card__bar {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}
.landing-card__bar span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
}
.landing-card__bar span:nth-child(1) { background: #FF5F56; }
.landing-card__bar span:nth-child(2) { background: #FFBD2E; }
.landing-card__bar span:nth-child(3) { background: #27C93F; }
.landing-card__url {
    background: rgba(255,255,255,.18);
    color: rgba(255,255,255,.85);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-family: 'Inter', monospace;
    width: fit-content;
    margin-bottom: 10px;
}
.landing-card__screen {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    min-height: 180px;
}
.landing-card__screen--img {
    padding: 0;
    overflow: hidden;
    min-height: 220px;
    position: relative;
}
.landing-card__screen--img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute;
    inset: 0;
}

/* квиз превью */
.lp-quiz__progress {
    height: 6px;
    background: var(--bg-soft);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 14px;
}
.lp-quiz__progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 100px;
}
.lp-quiz__title {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}
.lp-quiz__opt {
    padding: 8px 12px;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    font-size: 12px;
    margin-bottom: 6px;
    color: var(--text);
}
.lp-quiz__opt--active {
    border-color: var(--primary);
    background: rgba(79,70,229,.06);
    font-weight: 600;
}
.lp-quiz__btn {
    margin-top: 8px;
    padding: 8px 14px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    width: 100%;
}

/* lp превью */
.lp-main__h1 {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
    color: var(--text);
}
.lp-main__sub {
    font-size: 11px;
    color: var(--text-soft);
    margin-bottom: 10px;
}
.lp-main__cta {
    display: inline-block;
    padding: 7px 14px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
}
.lp-main__pic {
    height: 56px;
    background: linear-gradient(135deg, #E0E7FF 0%, #FCE7F3 100%);
    border-radius: 8px;
}

/* мульти превью */
.lp-multi__tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}
.lp-multi__tab {
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 100px;
    background: var(--bg-soft);
    color: var(--text-soft);
}
.lp-multi__tab--active {
    background: var(--text);
    color: #fff;
}
.lp-multi__h1 {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}
.lp-multi__row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}
.lp-multi__chip {
    padding: 3px 8px;
    background: rgba(79,70,229,.08);
    color: var(--primary);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
}
.lp-multi__cta {
    display: inline-block;
    padding: 7px 14px;
    background: linear-gradient(135deg, var(--pink) 0%, #8B5CF6 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
}

.landing-card__body { padding: 20px 22px 24px; }
.landing-card__tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(79,70,229,.08);
    color: var(--primary-d);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-radius: 6px;
    margin-bottom: 10px;
}
.landing-card__title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.landing-card__text {
    font-size: 13.5px;
    color: var(--text-soft);
    line-height: 1.55;
}
.landing-card__text strong { color: var(--primary); font-weight: 700; }

.landings__features {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(79,70,229,.05) 0%, rgba(236,72,153,.04) 100%);
    border-radius: 14px;
    border: 1px dashed rgba(79,70,229,.2);
}
.lp-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.4;
}
.lp-feature__num {
    width: 38px; height: 38px;
    background: #fff;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 4px 12px -2px rgba(79,70,229,.18);
    flex-shrink: 0;
    font-size: 16px;
}

/* --- пайплайн / прогрев --- */
.pipeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 14px;
    align-items: stretch;
}
.pipeline__step {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    transition: all .3s var(--ease);
}
.pipeline__step:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}
.pipeline__icon {
    width: 56px; height: 56px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, rgba(79,70,229,.1) 0%, rgba(236,72,153,.08) 100%);
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 26px;
}
.pipeline__name {
    font-size: 15.5px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.pipeline__text {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
}
.pipeline__arrow {
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
    display: grid;
    place-items: center;
    opacity: .55;
}

/* --- CRM передача --- */
.crm-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}
.crm-step {
    padding: 24px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
    border: 1px solid var(--line);
    border-radius: 14px;
    transition: all .3s var(--ease);
}
.crm-step:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 16px 36px -16px rgba(15,23,42,.15);
}
.crm-step__num {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    color: #fff;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 14px;
}
.crm-step__name {
    font-size: 16.5px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.crm-step__text {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.55;
}
.crm-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    background: var(--bg-soft);
    border-radius: 14px;
}
.crm-logos__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-soft);
    margin-right: 8px;
}
.crm-logo {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.005em;
}
.funnel__cta {
    margin-top: 48px;
    text-align: center;
}

/* ==================== ANIMATIONS ON SCROLL ==================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== АДАПТИВ ==================== */
@media (max-width: 1100px) {
    .nav { display: none; }
    .hero__content { max-width: 100%; }
    .variants__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .variant-card--featured { transform: none; }
    .guarantees__grid { grid-template-columns: repeat(2, 1fr); }
    .how__steps { grid-template-columns: repeat(2, 1fr); }
    .how__steps::before { display: none; }
    .final-cta__inner { grid-template-columns: 1fr; gap: 36px; }
    .reviews__grid { grid-template-columns: 1fr; }
    .cases__grid { grid-template-columns: repeat(2, 1fr); }
    .pain__grid { grid-template-columns: 1fr; }
    .pain__verdict { grid-template-columns: 1fr; text-align: center; }
    .pain__verdict-arrow { transform: rotate(0); }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .channels { grid-template-columns: repeat(2, 1fr); }
    .landings { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .landings__features { grid-template-columns: 1fr; }
    .pipeline { grid-template-columns: 1fr; gap: 12px; }
    .pipeline__arrow { transform: rotate(90deg); padding: 4px 0; }
    .crm-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .container { padding: 0 18px; }
    .header__phone span { display: none; }
    .header__contacts .btn { display: none; }
    .burger { display: flex; }
    .hero { padding: 110px 0 0; }
    .hero__benefits { grid-template-columns: 1fr; gap: 12px; }
    .hero__stats { grid-template-columns: 1fr; gap: 18px; padding-top: 28px; }
    .stat { display: flex; align-items: baseline; gap: 14px; }
    .stat__label { margin-top: 0; }
    .stat__label br { display: none; }
    .pain { padding: 64px 0; }
    .pain-card { padding: 24px; }
    .pain-card__num { font-size: 48px; top: 16px; right: 18px; }
    .compare { padding: 64px 0; }
    .compare__table th, .compare__table td { padding: 16px 18px; font-size: 14px; }
    .compare__table .bad, .compare__table .good { padding-left: 40px !important; }
    .compare__table .bad::before, .compare__table .good::before { left: 14px; }
    .how, .variants, .funnel, .cases, .guarantees, .reviews, .faq, .final-cta {
        padding: 64px 0;
    }
    .how__steps { grid-template-columns: 1fr; gap: 14px; }
    .cases__grid { grid-template-columns: 1fr; }
    .variant-card { padding: 28px 24px; }
    .funnel-stage { padding: 24px 20px; margin-bottom: 36px; }
    .channels { grid-template-columns: 1fr; }
    .crm-logos { padding: 16px; }
    .crm-logo { padding: 6px 12px; font-size: 12.5px; }
    .guarantees__grid { grid-template-columns: 1fr; }
    .reviews__counters { grid-template-columns: repeat(2, 1fr); padding: 28px 18px; gap: 22px; }
    .lead-form { padding: 24px; }
    .lead-form--big { padding: 24px; }
    .footer__top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
    .section-head { margin-bottom: 36px; }
    .final-cta__signature { padding: 14px 16px; gap: 12px; }
    .float-msg { bottom: 16px; right: 16px; }
    .float-msg__main { width: 54px; height: 54px; }
}
