/* ═══════════════════════════════════════
   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;
    --nv-red:         #f87171;
    --nv-red-bg:      #fef2f2;
    --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;
    margin-bottom: 16px;
}
.section-lead {
    font-size: 17px;
    line-height: 1.8;
    color: #6b7280;
    max-width: 760px;
}
.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-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.35);
    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: #ffffff;
    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;
    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;
    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 420px;
    gap: 48px;
    align-items: start;
}
.hero__title {
    font-size: clamp(30px, 3.8vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    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: 28px;
    max-width: 560px;
}
.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero__right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero__panel {
    border-radius: 14px;
    padding: 18px 20px;
    border: 1.5px solid;
}
.hero__panel--bad {
    background: #fef9f9;
    border-color: rgba(248,113,113,0.25);
}
.hero__panel--good {
    background: #f9fdf9;
    border-color: rgba(107,180,118,0.3);
}
.hero__panel-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.hero__panel--bad .hero__panel-label { color: #ef4444; }
.hero__panel--good .hero__panel-label { color: var(--nv-green-dark); }

.hero__panel-label svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.hero__panel--bad .hero__panel-label svg { fill: #f87171; }
.hero__panel--good .hero__panel-label svg { fill: var(--nv-green); }

.hero__panel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hero__panel-list li {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    padding-left: 14px;
    position: relative;
}
.hero__panel-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}
.hero__panel--bad .hero__panel-list li { color: #6b7280; }
.hero__panel--bad .hero__panel-list li::before { background: #f87171; }
.hero__panel--good .hero__panel-list li { color: #374151; }
.hero__panel--good .hero__panel-list li::before { background: var(--nv-green); }

/* ═══════════════════════════════════════
   PROBLEM GRID
═══════════════════════════════════════ */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    align-items: start;
    border: 1.5px solid var(--nv-border);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}
.problem-col { padding: 32px 28px; }
.problem-col--see { border-right: 1px solid var(--nv-border); }

.problem-col__head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.problem-col--see .problem-col__head { color: var(--nv-gray); }
.problem-col--miss .problem-col__head { color: #ef4444; }
.problem-col__head svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.problem-col--see .problem-col__head svg { fill: var(--nv-gray); }
.problem-col--miss .problem-col__head svg { fill: #f87171; }

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

.problem-col__conclusion {
    margin-top: 20px;
    padding: 14px 16px;
    background: #fef2f2;
    border-radius: 10px;
    border: 1px solid rgba(248,113,113,0.2);
    font-size: 13px;
    font-weight: 600;
    color: #ef4444;
    line-height: 1.5;
}
.problem-col__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border-left: 1px solid var(--nv-border);
    border-right: 1px solid var(--nv-border);
}
.problem-col__divider-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--nv-border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.problem-col__divider-icon svg {
    width: 16px;
    height: 16px;
    fill: #9ca3af;
}

/* ═══════════════════════════════════════
   REALITY FLOW
═══════════════════════════════════════ */
.reality-flow {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 32px;
}
.reality-step {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.25s;
}
.reality-step:hover { border-color: rgba(107,180,118,0.25); }
.reality-step--end {
    background: rgba(248,113,113,0.06);
    border-color: rgba(248,113,113,0.2);
}
.reality-step__num {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.reality-step--end .reality-step__num { color: rgba(248,113,113,0.5); }

.reality-step__body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}
.reality-step--end .reality-step__body h3 { color: #f87171; }

.reality-step__body p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
}
.reality-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    flex-shrink: 0;
    font-size: 22px;
    color: rgba(255,255,255,0.15);
    font-weight: 300;
    margin-top: 40px;
}
.reality-conclusion {
    background: rgba(248,113,113,0.08);
    border: 1px solid rgba(248,113,113,0.2);
    border-radius: 16px;
    padding: 24px 32px;
}
.reality-conclusion__accent {
    font-size: 11px;
    font-weight: 800;
    color: #f87171;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.reality-conclusion p {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   SOLUTION STEPS
═══════════════════════════════════════ */
.solution-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid var(--nv-border);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}
.solution-step {
    display: flex;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--nv-border);
    transition: background 0.2s;
}
.solution-step:last-child { border-bottom: none; }
.solution-step:hover { background: #f9fdf9; }
.solution-step--accent {
    background: var(--nv-green-light);
}
.solution-step--accent:hover {
    background: #dff0e3;
}
.solution-step__num {
    width: 72px;
    flex-shrink: 0;
    padding: 24px 0 24px 28px;
    font-size: 26px;
    font-weight: 900;
    color: #e5e7eb;
    line-height: 1;
}
.solution-step--accent .solution-step__num {
    color: rgba(107,180,118,0.3);
}
.solution-step__body {
    flex: 1;
    padding: 24px 28px;
    border-left: 1px solid var(--nv-border);
}
.solution-step--accent .solution-step__body {
    border-left-color: rgba(107,180,118,0.2);
}
.solution-step__body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111614;
    margin-bottom: 8px;
    line-height: 1.3;
}
.solution-step--accent .solution-step__body h3 {
    color: var(--nv-green-dark);
}
.solution-step__body p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
}
.solution-step__tags,
.solution-step__signals,
.solution-step__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
}
.solution-step__tags span {
    font-size: 11px;
    font-weight: 700;
    color: var(--nv-green-dark);
    background: var(--nv-green-light);
    border: 1px solid rgba(107,180,118,0.2);
    border-radius: 6px;
    padding: 4px 10px;
}
.solution-step__signal {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid;
}
.solution-step__signal svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.solution-step__signal--red {
    background: #fef2f2;
    color: #ef4444;
    border-color: rgba(248,113,113,0.25);
}
.solution-step__signal--yellow {
    background: #fffbeb;
    color: #d97706;
    border-color: rgba(251,191,36,0.3);
}
.solution-step__action {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--nv-border);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    transition: border-color 0.2s;
}
.solution-step__action:hover { border-color: var(--nv-green); }
.solution-step__action svg {
    width: 16px;
    height: 16px;
    fill: var(--nv-green);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   COMPARE
═══════════════════════════════════════ */
.compare-row {
    display: flex;
    gap: 0;
    align-items: stretch;
}
.compare-col {
    flex: 1;
    border-radius: 18px;
    padding: 32px 28px;
}
.compare-col--bad {
    background: #fef2f2;
    border: 1.5px solid #fee2e2;
    border-top: 3px solid #f87171;
}
.compare-col--good {
    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;
}
.compare-col__head { margin-bottom: 20px; }
.compare-col__label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.compare-col--bad .compare-col__label { color: #ef4444; }
.compare-col--good .compare-col__label { color: var(--nv-green-dark); }

.compare-col__hero-text {
    font-size: 20px;
    font-weight: 800;
    color: #111614;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}
.compare-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}
.compare-list--bad li { color: #6b7280; }
.compare-list--bad li::before { background: #f87171; }
.compare-list--good li { color: #374151; }
.compare-list--good li::before { background: var(--nv-green); }

/* ═══════════════════════════════════════
   IMPORTANT
═══════════════════════════════════════ */
.important-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.important-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;
    background: rgba(107,180,118,0.06);
}
.important-title { color: #111614; margin-bottom: 16px; }
.important-lead {
    font-size: 20px;
    font-weight: 700;
    color: #111614;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}
.important-sub {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}
.important-results {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.important-result {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--nv-border);
    transition: padding-left 0.2s;
}
.important-result:last-child { border-bottom: none; }
.important-result:hover { padding-left: 6px; }

.important-result__ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.important-result__ico--green {
    background: var(--nv-green-light);
    color: var(--nv-green);
}
.important-result__ico svg {
    width: 20px;
    height: 20px;
}
.important-result__title {
    font-size: 15px;
    font-weight: 700;
    color: #111614;
    margin-bottom: 5px;
}
.important-result__desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.55;
}

/* ═══════════════════════════════════════
   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: 760px;
    margin: 0 auto;
}
.cta__eyebrow {
    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);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    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;
    margin-bottom: 20px;
}
.cta__text {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin-bottom: 12px;
}
.cta__actions { margin-top: 32px; }

.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.32);
}
.cta__trust-item svg {
    width: 14px;
    height: 14px;
    fill: var(--nv-green);
    opacity: 0.7;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   ADAPTIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
    .hero__cols {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .important-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .compare-row {
        flex-direction: column;
    }

    .compare-col--good {
        margin-left: 0;
        margin-top: 12px;
    }
}

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

    .problem-col--see {
        border-right: none;
        border-bottom: 1px solid var(--nv-border);
    }

    .problem-col__divider {
        padding: 20px;
        border: none;
        border-top: 1px solid var(--nv-border);
        border-bottom: 1px solid var(--nv-border);
    }

    .reality-flow {
        flex-direction: column;
        gap: 4px;
    }

    .reality-arrow {
        padding: 8px 0;
        align-self: center;
        transform: rotate(90deg);
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    :root { --page-pad: 20px; }

    .section { padding: 56px 0; }
    .hero { padding: 48px 0 56px; }
    .cta { padding: 64px 0; }

    .solution-step {
        flex-direction: column;
    }

    .solution-step__num {
        width: 100%;
        padding: 20px 24px 0;
    }

    .solution-step__body {
        border-left: none;
        padding: 14px 24px 24px;
    }

    .solution-step__signals,
    .solution-step__actions {
        flex-direction: column;
    }

    .important-result {
        padding: 16px 0;
    }
}

/* ═══════════════════════════════════════
   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; }
