/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; color: #111614; background: #fff; }

:root {
    --nv-green:       #6bb476;
    --nv-green-dark:  #4d9659;
    --nv-green-light: #edf6ef;
    --nv-black:       #111614;
    --nv-dark:        #0e1512;
    --nv-gray:        #6b7280;
    --nv-gray-light:  #f5f6f5;
    --nv-border:      #e5e7eb;
    --page-width:     1240px;
    --page-pad:       32px;
}


ul.article-toc__list li::before{
    display: none;
}
.main > .container {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width:100% !important;
    padding-inline: 0px !important;
    width: 100% !important;
}
.container {
        margin-left: auto !important;
    margin-right: auto !important;
    max-width: calc(var(--theme-page-width, 1500px) + calc(var(--theme-page-width-padding, 32px) * 2) - var(--theme-page-width-diff, 0px)) !important;
    padding-inline: var(--theme-page-width-padding, 32px) !important;
    width: 100% !important;
}
.main > .container .maxwidth-theme.wide- {
    max-width: 100%;
    padding-inline: 0 !important;
}

/* ═══════════════════════════════════════
   ТИПОГРАФИЯ
═══════════════════════════════════════ */
.section-title {
    font-size: clamp(26px, 3vw, 42px); font-weight: 800; line-height: 1.2;
    letter-spacing: -0.025em; font-family: 'Manrope', sans-serif; margin-bottom: 16px;
}
.section-lead {
    font-size: 17px; line-height: 1.8; color: #6b7280;
    max-width: 680px; font-family: 'Manrope', sans-serif;
}
.section-header { margin-bottom: 40px; }
.section-header--light .section-title { color: #fff; }
.section-header--light .section-lead  { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════
   КНОПКИ
═══════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 32px; border-radius: 12px;
    font-family: 'Manrope', sans-serif; font-size: 15px;
    font-weight: 700; cursor: pointer; border: none;
    transition: all 0.25s ease; white-space: nowrap;
    text-decoration: none; line-height: 1;
}
.btn-green { background: var(--nv-green); color: #fff; }
.btn-green:hover { background: var(--nv-green-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(107,180,118,0.4); color: #fff; }

/* ═══════════════════════════════════════
   ОБЩИЕ СЕКЦИИ
═══════════════════════════════════════ */
.section         { padding: 80px 0; }
.section--white  { background: #fff; }
.section--gray   { background: var(--nv-gray-light); }
.section--dark   { background: var(--nv-dark); }
.section--dark .section-title { color: #fff; }
.section--dark .section-lead  { color: rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
    background: #fff; position: relative; overflow: hidden;
    padding: 64px 0 72px; border-bottom: 1px solid var(--nv-border);
}
.hero__pattern {
    position: absolute; inset: 0; z-index: 0;
    background-image: url(https://new.novotels.ru/local/pattern-01.jpg);
    background-size: cover; background-position: center;
    opacity: 0.5; pointer-events: none;
}
.hero__grid {
    position: absolute; inset: 0; z-index: 1;
    background-image:
        linear-gradient(rgba(107,180,118,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107,180,118,0.1) 1px, transparent 1px),
        linear-gradient(rgba(107,180,118,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107,180,118,0.04) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px, 16px 16px, 16px 16px;
    mask-image: radial-gradient(ellipse 90% 100% at 70% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 90% 100% at 70% 50%, black 20%, transparent 80%);
}
.hero .container { position: relative; z-index: 3; }

.hero__breadcrumb {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 500; color: #9ca3af;
    font-family: 'Manrope', sans-serif; margin-bottom: 20px;
}
.hero__breadcrumb a { color: var(--nv-green); text-decoration: none; transition: color 0.2s; }
.hero__breadcrumb a:hover { color: var(--nv-green-dark); }

.hero__tag {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(107,180,118,0.3); border-radius: 10px;
    padding: 6px 14px; font-size: 11px; font-weight: 700;
    color: var(--nv-green-dark); letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 28px; font-family: 'Manrope', sans-serif;
    background: rgba(107,180,118,0.06);
}
.hero__tag-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--nv-green);
    animation: blink 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero__cols {
    display: grid; grid-template-columns: 1fr 400px;
    gap: 48px; align-items: start;
}

.hero__title {
    font-size: clamp(34px, 4vw, 56px); font-weight: 900; line-height: 1.08;
    letter-spacing: -0.035em; font-family: 'Manrope', sans-serif;
    color: #111614; margin-bottom: 18px;
}
.hero__title em { font-style: normal; color: var(--nv-green-dark); }
.hero__lead {
    font-size: 16px; color: #6b7280; line-height: 1.75;
    margin-bottom: 24px; max-width: 480px; font-family: 'Manrope', sans-serif;
}

/* Мета-параметры */
.hero__meta {
    display: flex; gap: 20px; flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero__meta-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 600; color: #6b7280;
    font-family: 'Manrope', sans-serif;
}
.hero__meta-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--nv-green); }

/* Карточка результата */
.hero__result-card {
    background: #fff; border: 1.5px solid var(--nv-border);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.hero__result-card__label {
    padding: 14px 24px; border-bottom: 1px solid var(--nv-border);
    font-size: 11px; font-weight: 800; color: #6b7280;
    letter-spacing: 0.1em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif; background: var(--nv-gray-light);
}
.hero__result-list {
    padding: 8px 24px; display: flex; flex-direction: column; gap: 0;
}
.hero__result-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 0; border-bottom: 1px solid var(--nv-border);
}
.hero__result-item:last-child { border-bottom: none; }
.hero__result-ico {
    width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.hero__result-ico--green { background: var(--nv-green-light); color: var(--nv-green); }
.hero__result-ico svg { width: 16px; height: 16px; }
.hero__result-title {
    font-size: 14px; font-weight: 700; color: #111614;
    font-family: 'Manrope', sans-serif; margin-bottom: 3px;
}
.hero__result-desc {
    font-size: 12px; color: #6b7280; font-family: 'Manrope', sans-serif; line-height: 1.4;
}
.hero__result-card__footer {
    padding: 14px 24px; border-top: 1px solid var(--nv-border);
    font-size: 13px; color: #9ca3af; font-family: 'Manrope', sans-serif;
    background: var(--nv-gray-light);
}
.hero__result-card__footer strong { color: var(--nv-green-dark); }

@media (max-width: 900px) { .hero__cols { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 640px) { .hero { padding: 48px 0 56px; } }

/* ═══════════════════════════════════════
   КАК ПРОХОДИТ РАБОТА — ВЕРТИКАЛЬНЫЙ ТАЙМЛАЙН
═══════════════════════════════════════ */
.how-steps {
    display: flex; flex-direction: column; gap: 0;
    max-width: 860px;
}

.how-step {
    display: flex; align-items: flex-start; gap: 32px;
}

.how-step__marker {
    display: flex; flex-direction: column; align-items: center;
    flex-shrink: 0; width: 48px;
}
.how-step__num {
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--nv-gray-light); border: 1.5px solid var(--nv-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 900; color: #9ca3af;
    font-family: 'Manrope', sans-serif; flex-shrink: 0; z-index: 1;
}
.how-step__num--accent {
    background: var(--nv-green-light); border-color: rgba(107,180,118,0.35);
    color: var(--nv-green-dark);
}
.how-step__line {
    width: 2px; flex: 1; min-height: 40px;
    background: linear-gradient(to bottom, var(--nv-border), transparent);
    margin: 6px 0;
}

.how-step__body {
    flex: 1; padding-bottom: 48px;
}
.how-step--last .how-step__body { padding-bottom: 0; }
.how-step__body--accent {
    background: var(--nv-green-light);
    border: 1.5px solid rgba(107,180,118,0.25);
    border-radius: 18px; padding: 28px;
    margin-bottom: 0;
}

.how-step__title {
    font-size: 22px; font-weight: 800; color: #111614;
    font-family: 'Manrope', sans-serif; margin-bottom: 10px;
    letter-spacing: -0.02em; padding-top: 10px;
}
.how-step__body--accent .how-step__title { color: var(--nv-green-dark); padding-top: 0; }

.how-step__text {
    font-size: 15px; color: #6b7280; line-height: 1.7;
    font-family: 'Manrope', sans-serif; margin-bottom: 16px;
}

/* Теги */
.how-step__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.how-step__tags span {
    font-size: 12px; font-weight: 700; color: var(--nv-green-dark);
    background: var(--nv-green-light); border: 1px solid rgba(107,180,118,0.2);
    border-radius: 7px; padding: 5px 12px; font-family: 'Manrope', sans-serif;
}

/* Сигналы — что находит система */
.how-step__finds { display: flex; gap: 8px; flex-wrap: wrap; }
.how-step__find {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; font-family: 'Manrope', sans-serif;
    padding: 7px 14px; border-radius: 8px; border: 1px solid;
}
.how-step__find svg { width: 14px; height: 14px; flex-shrink: 0; }
.how-step__find--red    { background: #fef2f2; color: #ef4444; border-color: rgba(248,113,113,0.25); }
.how-step__find--red    svg { color: #f87171; }
.how-step__find--yellow { background: #fffbeb; color: #d97706; border-color: rgba(251,191,36,0.3); }
.how-step__find--yellow svg { color: #f59e0b; }

/* Выходы шага 3 */
.how-step__outputs {
    display: flex; flex-direction: column; gap: 10px; margin-top: 4px;
}
.how-step__output {
    display: flex; align-items: center; gap: 16px;
    background: #fff; border: 1.5px solid rgba(107,180,118,0.2);
    border-radius: 12px; padding: 14px 20px;
    transition: border-color 0.2s;
}
.how-step__output:hover { border-color: rgba(107,180,118,0.5); }
.how-step__output-num {
    font-size: 11px; font-weight: 900; color: var(--nv-green);
    font-family: 'Manrope', sans-serif; min-width: 20px;
    letter-spacing: 0.05em;
}
.how-step__output-text {
    font-size: 14px; font-weight: 600; color: #111614;
    font-family: 'Manrope', sans-serif; line-height: 1.4;
}

@media (max-width: 640px) {
    .how-step { gap: 20px; }
    .how-step__finds { flex-direction: column; }
}

/* ═══════════════════════════════════════
   ВАЖНО — ТЁМНАЯ ПОЛОСА
═══════════════════════════════════════ */
.important-band {
    display: flex; align-items: flex-start; gap: 28px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(107,180,118,0.2);
    border-radius: 20px; padding: 32px 40px;
}
.important-band__icon {
    width: 48px; height: 48px; flex-shrink: 0;
    color: var(--nv-green); margin-top: 2px;
}
.important-band__icon svg { width: 48px; height: 48px; }
.important-band__label {
    font-size: 11px; font-weight: 800; color: var(--nv-green);
    letter-spacing: 0.12em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif; margin-bottom: 8px;
}
.important-band__text {
    font-size: 20px; font-weight: 700; color: #fff;
    line-height: 1.5; font-family: 'Manrope', sans-serif;
    letter-spacing: -0.01em;
}

@media (max-width: 640px) {
    .important-band { flex-direction: column; gap: 16px; padding: 24px; }
    .important-band__text { font-size: 17px; }
}

/* ═══════════════════════════════════════
   ЧТО ДАЛЬШЕ — ДВА ВАРИАНТА
═══════════════════════════════════════ */
.next-wrap {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 64px; align-items: center;
}
.next-options {
    display: flex; align-items: stretch; gap: 0;
}
.next-option {
    flex: 1; border-radius: 18px; padding: 28px 24px;
    display: flex; flex-direction: column; gap: 12px;
}
.next-option--passive {
    background: #fff; border: 1.5px solid var(--nv-border);
    border-top: 3px solid #d1d5db;
}
.next-option--active {
    background: var(--nv-green-light);
    border: 1.5px solid rgba(107,180,118,0.3);
    border-top: 3px solid var(--nv-green);
    margin-left: 16px;
}
.next-option__divider {
    display: flex; align-items: center; justify-content: center;
    width: 48px; flex-shrink: 0;
    font-size: 12px; font-weight: 700; color: #9ca3af;
    font-family: 'Manrope', sans-serif;
}
.next-option__head {
    display: flex; align-items: center; gap: 10px; margin-bottom: 4px;
}
.next-option__ico {
    width: 32px; height: 32px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.next-option--passive .next-option__ico { background: var(--nv-gray-light); color: #9ca3af; }
.next-option--active  .next-option__ico { background: rgba(107,180,118,0.2); color: var(--nv-green-dark); }
.next-option__ico svg { width: 16px; height: 16px; }
.next-option__head span {
    font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
}
.next-option--passive .next-option__head span { color: #9ca3af; }
.next-option--active  .next-option__head span { color: var(--nv-green-dark); }
.next-option__title {
    font-size: 18px; font-weight: 800; color: #111614;
    font-family: 'Manrope', sans-serif; line-height: 1.3;
    letter-spacing: -0.01em;
}
.next-option--active .next-option__title { color: var(--nv-green-dark); }
.next-option__text {
    font-size: 13px; color: #6b7280; line-height: 1.65;
    font-family: 'Manrope', sans-serif;
}

@media (max-width: 1000px) { .next-wrap { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 640px) {
    .next-options { flex-direction: column; }
    .next-option--active { margin-left: 0; margin-top: 12px; }
    .next-option__divider { width: 100%; height: 32px; }
}

/* ═══════════════════════════════════════
   КОМУ ПОДХОДИТ
═══════════════════════════════════════ */
.fit-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.fit-col {
    border-radius: 20px; padding: 32px 28px;
}
.fit-col--yes {
    background: var(--nv-green-light);
    border: 1.5px solid rgba(107,180,118,0.25);
    border-top: 3px solid var(--nv-green);
}
.fit-col--no {
    background: #fef2f2;
    border: 1.5px solid rgba(248,113,113,0.2);
    border-top: 3px solid #f87171;
}
.fit-col__head {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif; margin-bottom: 20px;
}
.fit-col--yes .fit-col__head { color: var(--nv-green-dark); }
.fit-col--no  .fit-col__head { color: #ef4444; }
.fit-col__head svg { width: 16px; height: 16px; flex-shrink: 0; }
.fit-col--yes .fit-col__head svg { fill: var(--nv-green); }
.fit-col--no  .fit-col__head svg { fill: #f87171; }

.fit-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fit-list li {
    font-size: 14px; font-weight: 500; line-height: 1.55;
    font-family: 'Manrope', sans-serif;
    padding-left: 18px; position: relative;
}
.fit-list li::before {
    content: ''; position: absolute; left: 0; top: 6px;
    width: 6px; height: 6px; border-radius: 50%;
}
.fit-list--yes li { color: #374151; }
.fit-list--yes li::before { background: var(--nv-green); }
.fit-list--no  li { color: #6b7280; }
.fit-list--no  li::before { background: #f87171; }

.fit-col__note {
    margin-top: 20px; padding: 14px 16px;
    background: rgba(248,113,113,0.08); border-radius: 10px;
    border: 1px solid rgba(248,113,113,0.15);
    font-size: 13px; font-weight: 500; color: #9b4444;
    font-family: 'Manrope', sans-serif; line-height: 1.5;
}

@media (max-width: 640px) { .fit-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   ИТОГ — СХЕМА
═══════════════════════════════════════ */
.result-wrap {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.result-tag {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(107,180,118,0.3); border-radius: 10px;
    padding: 6px 14px; font-size: 11px; font-weight: 700;
    color: var(--nv-green-dark); letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 16px; font-family: 'Manrope', sans-serif;
    background: rgba(107,180,118,0.06);
}
.result-title { color: #111614; }
.result-lead {
    font-size: 16px; color: #6b7280; line-height: 1.75;
    font-family: 'Manrope', sans-serif;
}

.result-scheme {
    background: #fff; border: 1.5px solid var(--nv-border);
    border-radius: 20px; overflow: hidden;
}
.result-scheme__row {
    padding: 14px 24px; background: var(--nv-gray-light);
    border-bottom: 1px solid var(--nv-border);
}
.result-scheme__label {
    font-size: 11px; font-weight: 800; color: #6b7280;
    letter-spacing: 0.1em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
}
.result-scheme__items { padding: 8px 24px; }
.result-scheme__items--cost { display: flex; flex-direction: column; gap: 0; }
.result-scheme__item {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 0; border-bottom: 1px solid var(--nv-border);
    font-size: 14px; font-weight: 500; color: #374151;
    font-family: 'Manrope', sans-serif;
}
.result-scheme__item:last-child { border-bottom: none; }
.result-scheme__item svg { width: 16px; height: 16px; color: var(--nv-gray); flex-shrink: 0; }

.result-scheme__but {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 18px 24px;
    background: #fef2f2; border-top: 1.5px solid rgba(248,113,113,0.2);
    font-size: 14px; font-weight: 600; color: #ef4444;
    font-family: 'Manrope', sans-serif; line-height: 1.5;
}
.result-scheme__but svg { width: 18px; height: 18px; color: #f87171; flex-shrink: 0; margin-top: 1px; }

@media (max-width: 900px) { .result-wrap { grid-template-columns: 1fr; gap: 32px; } }

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta {
    padding: 100px 0; background: var(--nv-dark);
    position: relative; overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(107,180,118,0.1);
}
.cta__glow {
    position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(107,180,118,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.cta .container { position: relative; z-index: 1; }
.cta__inner { max-width: 680px; margin: 0 auto; }

.cta__eyebrow {
    display: inline-flex; align-items: center;
    border: 1px solid rgba(107,180,118,0.3); border-radius: 10px;
    padding: 6px 14px; font-size: 11px; font-weight: 700;
    color: var(--nv-green); letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 20px; font-family: 'Manrope', sans-serif;
    background: rgba(107,180,118,0.08);
}
.cta__title {
    font-size: clamp(24px, 3vw, 40px); font-weight: 800;
    color: #fff; line-height: 1.2; letter-spacing: -0.025em;
    font-family: 'Manrope', sans-serif; margin-bottom: 20px;
}
.cta__text {
    font-size: 16px; color: rgba(255,255,255,0.45);
    line-height: 1.8; font-family: 'Manrope', sans-serif; margin-bottom: 12px;
}
.cta__text--accent {
    font-size: 14px; font-weight: 600;
    color: rgba(107,180,118,0.7);
    padding: 10px 20px; background: rgba(107,180,118,0.08);
    border: 1px solid rgba(107,180,118,0.2); border-radius: 10px;
    display: inline-block; margin-top: 4px;
}
.cta__actions { margin-top: 32px; }
.cta .btn-green { background: var(--nv-green); }
.cta .btn-green:hover { background: var(--nv-green-dark); }

.cta__trust {
    margin-top: 40px; display: flex; align-items: center;
    justify-content: center; gap: 28px; flex-wrap: wrap;
}
.cta__trust-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 13px; color: rgba(255,255,255,0.3);
    font-family: 'Manrope', sans-serif;
}
.cta__trust-item svg { width: 14px; height: 14px; fill: var(--nv-green); opacity: 0.7; flex-shrink: 0; }

/* ═══════════════════════════════════════
   АДАПТИВ
═══════════════════════════════════════ */
@media (max-width: 640px) {
    .section { padding: 56px 0; }
    .cta { padding: 64px 0; }
    :root { --page-pad: 20px; }
    .hero { padding: 52px 0 60px; }
    .hero__meta { gap: 12px; }
    .important-band { padding: 24px; }
    .cta__text--accent { display: block; }
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
.text-animate-1 { opacity: 0; transform: translate(0, 35px); transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease; }
.text-animate-1._active { opacity: 1; transform: translate(0,0); }
.text-animate-2 { opacity: 0; transform: translate(0, 35px); transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease; }
.text-animate-2._active { opacity: 1; transform: translate(0,0); transition-delay: 0.15s; }
.image-fade-up { transition: all 0.9s cubic-bezier(0.22,1,0.36,1); transform: translateY(40px); opacity: 0; }
.image-fade-up._active { transform: translateY(0); opacity: 1; }
