/* ═══════════════════════════════════════
   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-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(107,180,118,0.3);
  border-radius: 10px;
  padding: 5px 12px;
  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);
}
.section-eyebrow--light {
  color: rgba(107,180,118,0.9);
  border-color: rgba(107,180,118,0.2);
  background: rgba(107,180,118,0.08);
}
.section-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-title--light { color: #fff; }
.section-lead {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 720px;
}
.section-lead--light { color: rgba(255,255,255,0.5); }
.section-header { margin-bottom: 48px; }
.section-header--light .section-title { color: #fff; }
.section-header--light .section-lead  { color: rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════
   КНОПКИ
═══════════════════════════════════════ */
.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;
}
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.05);
}

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

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 64px 0 80px;
  border-bottom: 1px solid var(--nv-border);
}
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(107,180,118,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,180,118,0.08) 1px, transparent 1px),
    linear-gradient(rgba(107,180,118,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,180,118,0.03) 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__glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,180,118,0.08) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}
.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 560px;
  gap: 48px;
  align-items: start;
}
.hero__title {
  font-size: clamp(30px, 3.8vw, 54px);
  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: 14px;
  max-width: 540px;
}
.hero__lead--accent {
  color: #111614;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── Hero Flow Panel ─── */
.hero__flow {
  display: flex;
  gap: 0;
  align-items: stretch;
  border: 1.5px solid var(--nv-border);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.hero__flow-item {
  flex: 1;
  padding: 24px 20px;
}
.hero__flow-item--before { background: #fef9f9; border-right: 1px solid var(--nv-border); }
.hero__flow-item--after  { background: #f9fdf9; }

.hero__flow-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #9ca3af;
}
.hero__flow-item--after .hero__flow-label { color: var(--nv-green-dark); }

.hero__flow-steps { display: flex; flex-direction: column; gap: 8px; }
.hero__flow-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}
.hero__flow-step--loss {
  background: #fef2f2;
  color: #6b7280;
  border: 1px solid rgba(248,113,113,0.15);
}
.hero__flow-step--good {
  background: #f0faf2;
  color: #374151;
  border: 1px solid rgba(107,180,118,0.2);
}
.hero__flow-ico { font-size: 14px; flex-shrink: 0; }
.hero__flow-arrow {
  text-align: center;
  font-size: 12px;
  color: #d1d5db;
  padding: 0 4px;
}
.hero__flow-arrow--green { color: rgba(107,180,118,0.4); }
.hero__flow-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  color: #d1d5db;
  background: #f9fafb;
  border-left: 1px solid var(--nv-border);
  border-right: 1px solid var(--nv-border);
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════
   УЗНАВАНИЕ — ЦИТАТЫ
═══════════════════════════════════════ */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.quote-card {
  background: #fff;
  border: 1.5px solid var(--nv-border);
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.quote-card:hover {
  border-color: var(--nv-green);
  box-shadow: 0 8px 24px rgba(107,180,118,0.1);
}
.quote-card__mark {
  font-size: 48px;
  font-weight: 900;
  color: #f0f0f0;
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}
.quote-card__text {
  font-size: 16px;
  font-weight: 700;
  color: #111614;
  line-height: 1.4;
  margin-bottom: 16px;
}
.quote-card__badge {
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  color: var(--nv-red);
  background: var(--nv-red-bg);
  border: 1px solid rgba(248,113,113,0.2);
  border-radius: 6px;
  padding: 3px 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recognition-conclusion {
  background: #f9fafb;
  border: 1.5px solid var(--nv-border);
  border-radius: 16px;
  padding: 20px 28px;
}
.recognition-conclusion__row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.recognition-conclusion__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}
.recognition-conclusion__item--bad { color: #6b7280; }
.recognition-conclusion__item--insight { color: #111614; }
.recognition-conclusion__ico { font-size: 18px; }
.recognition-conclusion__divider {
  color: #d1d5db;
  font-size: 20px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   KEY THOUGHT
═══════════════════════════════════════ */
.key-thought {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}
.key-thought__label {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.key-thought__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.key-thought__line {
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.key-thought__line--dim {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  color: rgba(255,255,255,0.3);
}
.key-thought__line--main {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: #fff;
}
.key-thought__line--sm {
  font-size: clamp(15px, 1.5vw, 20px);
  margin-top: 16px;
}
.key-thought__line--accent {
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 800;
  color: var(--nv-green);
}

/* ═══════════════════════════════════════
   REASONS
═══════════════════════════════════════ */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.reason-card {
  background: #fff;
  border: 1.5px solid var(--nv-border);
  border-radius: 14px;
  padding: 20px 18px;
  transition: border-color 0.2s;
}
.reason-card:hover { border-color: var(--nv-green); }
.reason-card__num {
  font-size: 10px;
  font-weight: 800;
  color: #d1d5db;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.reason-card p {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  line-height: 1.5;
}

.reasons-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  background: #fff;
  border: 1.5px solid var(--nv-border);
  border-radius: 12px;
}
.reasons-footer__bad  { font-size: 14px; font-weight: 600; color: #9ca3af; }
.reasons-footer__sep  { color: var(--nv-border); font-size: 20px; }
.reasons-footer__good { font-size: 14px; font-weight: 700; color: var(--nv-green-dark); }

/* ═══════════════════════════════════════
   NOW
═══════════════════════════════════════ */
.now-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.now-factors { display: flex; flex-direction: column; gap: 16px; }
.now-factor {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: #fff;
  border: 1.5px solid var(--nv-border);
  border-radius: 14px;
  transition: border-color 0.2s;
}
.now-factor:hover { border-color: var(--nv-green); }
.now-factor__arrow {
  font-size: 22px;
  font-weight: 900;
  color: var(--nv-red);
  flex-shrink: 0;
  line-height: 1;
}
.now-factor__title {
  font-size: 16px;
  font-weight: 700;
  color: #111614;
}

.now-result {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.now-result__item { display: flex; flex-direction: column; gap: 8px; }
.now-result__label { font-size: 14px; font-weight: 700; color: #111614; }
.now-result__bar {
  height: 8px;
  background: #f3f4f6;
  border-radius: 99px;
  overflow: hidden;
}
.now-result__fill {
  height: 100%;
  border-radius: 99px;
  animation: bar-grow 1.2s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-play-state: paused;
}
._active .now-result__fill { animation-play-state: running; }
.now-result__fill--bad { background: var(--nv-red); width: 85%; }
@keyframes bar-grow {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}
.now-result__conclusion {
  margin-top: 8px;
  padding: 18px 20px;
  background: #fef2f2;
  border: 1.5px solid rgba(248,113,113,0.2);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #ef4444;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   SOLUTION HERO
═══════════════════════════════════════ */
.solution-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.solution-result-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(107,180,118,0.2);
  border-radius: 20px;
  overflow: hidden;
}
.solution-result-card__label {
  padding: 14px 24px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.solution-result-card__items {
  display: flex;
  flex-direction: column;
}
.solution-result-card__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.solution-result-card__item:last-child { border-bottom: none; }
.solution-result-card__item:hover { background: rgba(107,180,118,0.05); }
.solution-result-card__ico {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}
.solution-result-card__ico--1 { color: rgba(107,180,118,0.5); }
.solution-result-card__ico--2 { color: rgba(107,180,118,0.7); }
.solution-result-card__ico--3 { color: var(--nv-green); }
.solution-result-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.solution-result-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.55;
}
.solution-result-card__footer {
  padding: 16px 24px;
  background: rgba(107,180,118,0.08);
  border-top: 1px solid rgba(107,180,118,0.15);
  font-size: 14px;
  font-weight: 700;
  color: var(--nv-green);
  text-align: center;
}

/* ═══════════════════════════════════════
   HOW STEPS
═══════════════════════════════════════ */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--nv-border);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--nv-border);
  transition: background 0.2s;
}
.how-step:last-child { border-bottom: none; }
.how-step:hover { background: #f9fdf9; }
.how-step--accent { background: var(--nv-green-light); }
.how-step--accent:hover { background: #dff0e3; }
.how-step__num {
  width: 135px;
  flex-shrink: 0;
  padding: 28px 0 28px 28px;
  font-size: 28px;
  font-weight: 900;
  color: #e5e7eb;
  line-height: 1;
}
.how-step--accent .how-step__num { color: rgba(107,180,118,0.3); }
.how-step__body {
  flex: 1;
  padding: 28px;
  border-left: 1px solid var(--nv-border);
}
.how-step--accent .how-step__body { border-left-color: rgba(107,180,118,0.2); }
.how-step__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111614;
  margin-bottom: 8px;
}
.how-step--accent .how-step__body h3 { color: var(--nv-green-dark); }
.how-step__body p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
}
.how-step__tag {
  display: inline-flex;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #9ca3af;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 7px 14px;
}
.how-step__tag--green {
  color: var(--nv-green-dark);
  background: rgba(107,180,118,0.1);
}
.how-step__outputs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.how-step__output {
  font-size: 13px;
  font-weight: 700;
  color: var(--nv-green-dark);
  background: rgba(107,180,118,0.1);
  border: 1px solid rgba(107,180,118,0.2);
  border-radius: 8px;
  padding: 6px 12px;
}
.how-step-connector {
  display: flex;
  justify-content: center;
  background: #f9fafb;
  border-bottom: 1px solid var(--nv-border);
  padding: 12px 0;
}
.how-step-connector__line {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, var(--nv-border), var(--nv-green));
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   COMPARE SPLIT
═══════════════════════════════════════ */
.compare-split {
  display: flex;
  gap: 0;
  align-items: stretch;
}
.compare-half {
  flex: 1;
  padding: 36px 32px;
  border-radius: 18px;
}
.compare-half--bad {
  background: #fef2f2;
  border: 1.5px solid rgba(248,113,113,0.2);
  border-top: 3px solid var(--nv-red);
}
.compare-half--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-half__head {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.compare-half--bad .compare-half__head  { color: #ef4444; }
.compare-half--good .compare-half__head { color: var(--nv-green-dark); }
.compare-half__subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
  margin-bottom: 24px;
}
.compare-half__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.compare-half__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.compare-half__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
}
.compare-half__list--bad li { color: #6b7280; }
.compare-half__list--bad li::before { background: var(--nv-red); }
.compare-half__list--good li { color: #374151; }
.compare-half__list--good li::before { background: var(--nv-green); }
.compare-half__conclusion {
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}
.compare-half__conclusion--bad  { background: rgba(248,113,113,0.1); color: #ef4444; }
.compare-half__conclusion--good { background: rgba(107,180,118,0.15); color: var(--nv-green-dark); }
.compare-split__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  flex-shrink: 0;
}
.compare-split__vs-inner {
  font-size: 10px;
  font-weight: 800;
  color: #d1d5db;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

/* ═══════════════════════════════════════
   LOSSES
═══════════════════════════════════════ */
.losses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.loss-item {
  background: rgba(248,113,113,0.06);
  border: 1.5px solid rgba(248,113,113,0.15);
  border-radius: 16px;
  padding: 24px 20px;
  transition: background 0.2s;
}
.loss-item:hover { background: rgba(248,113,113,0.1); }
.loss-item__ico {
  font-size: 22px;
  color: var(--nv-red);
  margin-bottom: 12px;
  display: block;
}
.loss-item__text {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.losses-key {
  text-align: center;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}

/* ═══════════════════════════════════════
   WHERE GRID
═══════════════════════════════════════ */
.where-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.where-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1.5px solid var(--nv-border);
  border-radius: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.where-item:hover {
  border-color: var(--nv-green);
  box-shadow: 0 4px 16px rgba(107,180,118,0.1);
}
.where-item__ico {
  font-size: 20px;
  color: var(--nv-green);
  flex-shrink: 0;
}
.where-item__label {
  font-size: 15px;
  font-weight: 700;
  color: #111614;
}

/* ═══════════════════════════════════════
   COMPARE KEY PHRASE
═══════════════════════════════════════ */
.compare-key {
  margin-top: 24px;
  text-align: center;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  color: #111614;
  letter-spacing: -0.02em;
  line-height: 1.4;
  padding: 28px 32px;
  background: var(--nv-green-light);
  border: 1.5px solid rgba(107,180,118,0.25);
  border-radius: 16px;
}
.compare-key span {
  color: var(--nv-green-dark);
}

/* ═══════════════════════════════════════
   EFFECTS LIST (simple)
═══════════════════════════════════════ */
.effect-item {
  padding: 18px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  border-bottom: 1px solid var(--nv-border);
  background: #fff;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s;
}
.effect-item::before {
  content: '→';
  color: var(--nv-green);
  font-weight: 800;
  flex-shrink: 0;
}
.effect-item:last-child { border-bottom: none; }
.effect-item:hover { background: #f9fdf9; }
.effect-item--accent {
  background: var(--nv-green-light);
  color: var(--nv-green-dark);
  font-weight: 700;
}
.effect-item--accent:hover { background: #dff0e3; }
.effects-key {
  margin-top: 24px;
  text-align: center;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--nv-green-dark);
  padding: 20px 28px;
  background: var(--nv-green-light);
  border: 1.5px solid rgba(107,180,118,0.2);
  border-radius: 12px;
}

/* ═══════════════════════════════════════
   NOW CONCLUSIONS
═══════════════════════════════════════ */
.now-conclusions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.now-conclusion {
  padding: 16px 22px;
  background: #fef2f2;
  border: 1.5px solid rgba(248,113,113,0.2);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #ef4444;
}

/* ═══════════════════════════════════════
.effects-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--nv-border);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
.effect-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--nv-border);
  transition: background 0.2s;
}
.effect-row:last-child { border-bottom: none; }
.effect-row:hover { background: #f9fdf9; }
.effect-row--accent { background: var(--nv-green-light); }
.effect-row--accent:hover { background: #dff0e3; }
.effect-row__before {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: line-through;
  text-decoration-color: rgba(248,113,113,0.4);
}
.effect-row__arrow {
  text-align: center;
  font-size: 16px;
  color: var(--nv-green);
  font-weight: 700;
  border-left: 1px solid var(--nv-border);
  border-right: 1px solid var(--nv-border);
  padding: 20px 0;
}
.effect-row--accent .effect-row__arrow {
  border-left-color: rgba(107,180,118,0.2);
  border-right-color: rgba(107,180,118,0.2);
}
.effect-row__after {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--nv-green-dark);
}

/* ═══════════════════════════════════════
   INTEGRATION
═══════════════════════════════════════ */
.integration-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.integration-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.integration-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1.5px solid var(--nv-border);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
}
.integration-item--yes { border-color: rgba(107,180,118,0.25); }
.integration-item__ico { font-size: 16px; color: var(--nv-green); flex-shrink: 0; }
.integration-key {
  padding: 18px 20px;
  background: var(--nv-green-light);
  border: 1.5px solid rgba(107,180,118,0.2);
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--nv-green-dark);
  line-height: 1.4;
}

/* ═══════════════════════════════════════
   START
═══════════════════════════════════════ */
.start-wrap {
  background: #fff;
  border: 1.5px solid var(--nv-border);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
}
.start-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--nv-green-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.start-title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  color: #111614;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.start-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.start-option {
  background: var(--nv-green-light);
  border: 1.5px solid rgba(107,180,118,0.25);
  border-radius: 16px;
  padding: 24px 32px;
  text-align: center;
  min-width: 160px;
}
.start-option__num {
  font-size: 11px;
  font-weight: 800;
  color: var(--nv-green);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.start-option__text {
  font-size: 16px;
  font-weight: 700;
  color: #111614;
}
.start-option__sep {
  font-size: 24px;
  font-weight: 300;
  color: #d1d5db;
}
.start-sub {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   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: 720px; 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(26px, 3vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  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__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 6px;
}
.cta__points li {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  padding-left: 18px;
  position: relative;
  text-align: left;
  display: inline-block;
  align-self: center;
}
.cta__points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--nv-green);
}
.cta__actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.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);
}
.cta__trust-item svg {
  width: 14px; height: 14px;
  fill: var(--nv-green);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   АДАПТИВ
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .reasons-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero__cols          { grid-template-columns: 1fr; gap: 28px; }
  .solution-hero       { grid-template-columns: 1fr; gap: 36px; }
  .integration-wrap    { grid-template-columns: 1fr; gap: 36px; }
  .now-cols            { grid-template-columns: 1fr; gap: 32px; }
  .quotes-grid         { grid-template-columns: repeat(2, 1fr); }
  .losses-grid         { grid-template-columns: repeat(2, 1fr); }
  .where-grid          { grid-template-columns: repeat(2, 1fr); }
  .compare-split       { flex-direction: column; }
  .compare-half--good  { margin-left: 0; margin-top: 12px; }
  .compare-split__vs   { width: 100%; height: 36px; writing-mode: initial; }
  .compare-split__vs-inner { writing-mode: initial; }
}

@media (max-width: 640px) {
  :root { --page-pad: 20px; }
  .section { padding: 56px 0; }
  .hero    { padding: 48px 0 56px; }
  .cta     { padding: 64px 0; }

  .hero__flow { flex-direction: column; }
  .hero__flow-vs { writing-mode: initial; width: 100%; height: 32px; justify-content: center; border-left: none; border-right: none; border-top: 1px solid var(--nv-border); border-bottom: 1px solid var(--nv-border); }

  .quotes-grid  { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .losses-grid  { grid-template-columns: 1fr; }
  .where-grid   { grid-template-columns: 1fr; }
  .reasons-footer { flex-direction: column; align-items: flex-start; gap: 6px; }

  .effect-row { grid-template-columns: 1fr; }
  .effect-row__before { padding: 16px 20px 0; text-decoration: none; color: #9ca3af; }
  .effect-row__arrow  { padding: 6px 20px; text-align: left; border: none; }
  .effect-row__after  { padding: 0 20px 16px; }

  .how-step { flex-direction: column; }
  .how-step__num { width: 100%; padding: 20px 24px 0; }
  .how-step__body { border-left: none; padding: 12px 24px 24px; }

  .start-options { flex-direction: column; align-items: center; }
  .start-option__sep { display: none; }
  .start-wrap { padding: 36px 24px; }

  .key-thought { padding: 0; }
}

/* ═══════════════════════════════════════
   АНИМАЦИИ
═══════════════════════════════════════ */
.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; }