/* ═══════════════════════════════════════
   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; }
.text_after_items {
    margin: 0;
}
section ul li:before{
    top: 0 !important;

}
/* ═══════════════════════════════════════
   CSS-ПЕРЕМЕННЫЕ
═══════════════════════════════════════ */
:root {
    --nv-green: #6bb476;
    --nv-green-dark: #4d9659;
    --nv-green-light: #edf6ef;
    --nv-black: #111614;
    --nv-dark: #0d1f1a;
    --nv-gray: #6b7280;
    --nv-gray-light: #f5f6f5;
    --nv-border: #e5e7eb;
    --nv-white: #ffffff;
    --nv-r: 20px;
    --page-width: 1240px;
    --page-pad: 32px;
}
section.article-hero ul li::before {
    display: none;
}

/* ═══════════════════════════════════════
   CONTAINER
═══════════════════════════════════════ */
._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;
}
@media (max-width: 991px) {
    ._container {
        padding: 0 !important;
    }
}

/* ═══════════════════════════════════════
   ТИПОГРАФИЯ
═══════════════════════════════════════ */
.h1 {
    font-size: clamp(28px, 4.5vw, 54px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-family: 'Manrope', sans-serif;
}
.h2 {
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: 'Manrope', sans-serif;
}
.h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Manrope', sans-serif;
}
.lead {
    font-size: 17px;
    line-height: 1.8;
    color: #6b7280;
    font-family: 'Manrope', sans-serif;
}
@media (max-width: 991px) { .lead { font-size: 16px; } }

/* ═══════════════════════════════════════
   SECTION-TAG
═══════════════════════════════════════ */
.section-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: #4d9659;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: transparent;
    font-family: 'Manrope', sans-serif;
    line-height: 1;
    text-decoration: none;
}
.section-tag--dark {
    background: rgba(107,180,118,0.15);
    border-color: rgba(107,180,118,0.3);
    color: #6bb476;
}
.section-tag__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: nv-blink 2s ease-in-out infinite;
    flex-shrink: 0;
    display: inline-block;
}
@keyframes nv-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ═══════════════════════════════════════
   КНОПКИ
═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    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;
    box-shadow: none;
}
.btn-green { background: #6bb476; color: #fff; }
.btn-green:hover { background: #4d9659; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(107,180,118,0.35); color: #fff; }
.btn-outline-dark { background: transparent; color: #111614; border: 1.5px solid #e5e7eb; }
.btn-outline-dark:hover { border-color: #6bb476; color: #4d9659; }

/* ═══════════════════════════════════════
   АНИМАЦИИ
═══════════════════════════════════════ */
.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;
    will-change: transform, opacity;
}
.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;
    will-change: transform, opacity;
}
.text-animate-2._active { opacity: 1; transform: translate(0, 0); transition-delay: 0.15s; }

.text-animate-3 {
    opacity: 0;
    transform: translate(-35px, 0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
    will-change: transform, opacity;
}
.text-animate-3._active { opacity: 1; transform: translate(0, 0); transition-delay: 0.3s; }

.text-animate-4 {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}
.text-animate-4._active { opacity: 1; transform: scale(1) translateY(0); transition-delay: 0.2s; }

.text-animate-right {
    opacity: 0;
    transform: translate(-35px, 0);
    transition: all 0.4s ease-in-out 0s;
}
.text-animate-right._active { opacity: 1; transform: translate(0, 0); transition: all 0.4s ease-in-out 0.2s; }

.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; }

/* ═══════════════════════════════════════
   ARTICLE HERO
═══════════════════════════════════════ */
.article-hero {
    background: #ffffff;
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    font-family: 'Manrope', sans-serif;
    border-bottom: 1px solid #e5e7eb;
}
@media (max-width: 991px) {
    .article-hero {
        margin-top: 20px !important;
    }
}
.article-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(107, 180, 118, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 180, 118, 0.09) 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 80% 100% at 60% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 100% at 60% 50%, black 30%, transparent 100%);
}
.article-hero__glow {
    position: absolute; top: -200px; right: -150px;
    width: 700px; height: 700px; border-radius: 50%; z-index: 1;
    background: radial-gradient(circle, rgba(107,180,118,0.07) 0%, transparent 60%);
}
.article-hero ._container {
    position: relative; z-index: 2; flex: 1;
    display: flex; align-items: center;
    padding-top: 56px; padding-bottom: 56px;
}
.article-hero__inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    align-items: center;
}

/* Breadcrumb */
.article-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;
    text-decoration: none;
}
.article-hero__breadcrumb a {
    color: #6bb476; text-decoration: none; transition: color 0.2s;
}
.article-hero__breadcrumb a:hover { color: #4d9659; }
.article-hero__breadcrumb-sep { color: #d1d5db; }

.article-hero__title {
    color: #111614 !important;
    margin-bottom: 20px;
}
.article-hero__title em {
    font-style: normal;
    color: #4d9659;
    display: block;
    font-size: clamp(20px, 2.5vw, 34px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-top: 10px;
}

/* Hero subtitle & features */
.article-hero__subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    line-height: 1.5;
    font-family: 'Manrope', sans-serif;
}
.article-hero__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 28px;
}
.article-hero__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    font-family: 'Manrope', sans-serif;
}
.article-hero__features li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #6bb476;
    flex-shrink: 0;
}

.article-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* TOC */
.article-toc {
    background: #f5f6f5;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px 24px 28px;
}
.article-toc__title {
    font-size: 11px; font-weight: 800; color: #4d9659;
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 14px; font-family: 'Manrope', sans-serif;
}
.article-toc__list { list-style: none; }
.article-toc__list li a {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 9px 0; border-bottom: 1px solid #e5e7eb;
    font-size: 13px; font-weight: 600; color: #374151;
    text-decoration: none; transition: color 0.2s;
    font-family: 'Manrope', sans-serif; line-height: 1.4;
}
.article-toc__list li:last-child a { border-bottom: none; }
.article-toc__list li a:hover { color: #4d9659; }
.article-toc__num {
    font-size: 10px; font-weight: 800; color: #6bb476;
    opacity: 0.6; flex-shrink: 0; margin-top: 2px;
}

@media (max-width: 900px) {
    .article-hero__inner { grid-template-columns: 1fr; gap: 36px; }
    .article-toc { display: none; }
    .article-hero ._container { padding-top: 40px; padding-bottom: 44px; }
}
@media (max-width: 640px) {
    .article-hero { min-height: auto; }
    .article-hero__actions { flex-direction: column; }
    .article-hero__actions .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════
   ОБЩИЕ СТИЛИ СЕКЦИЙ СТАТЬИ
═══════════════════════════════════════ */
.art-section {
    padding: 80px 0;
    font-family: 'Manrope', sans-serif;
}
.art-section--white { background: #ffffff; }
.art-section--gray  { background: #f5f6f5; }

.art-section__title {
    color: #111614;
    margin-bottom: 24px;
    max-width: 800px;
}

.art-text { margin-bottom: 32px; }
.art-text .lead { color: #374151; max-width: 760px; }

/* ═══════════════════════════════════════
   АКЦЕНТНЫЙ ТЁМНЫЙ БЛОК (после раздела 02)
═══════════════════════════════════════ */
.art-section--accent-dark {
    background: #0d1f1a;
    padding: 64px 0;
}

.accent-block {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.accent-block__title {
    font-size: clamp(22px, 2.5vw, 36px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 28px;
}
.accent-block__lead {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
}
.accent-block__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.accent-block__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    font-family: 'Manrope', sans-serif;
}
.accent-block__list li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #6bb476;
    flex-shrink: 0;
    top: 0;
}

@media (max-width: 640px) {
    .accent-block { text-align: left; }
    .accent-block__list { align-items: flex-start; }
}

/* ═══════════════════════════════════════
   ДВЕ КОЛОНКИ БЫЛО/СТАЛО (секция 01)
═══════════════════════════════════════ */
.art-cols {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 24px;
}
.art-col-block {
    flex: 1;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px 28px 28px;
}
.art-col-block--past { border-top: 3px solid #fca5a5; }
.art-col-block--now  { border-top: 3px solid #6bb476; background: #f9fdf9; }

.art-col-block__label {
    font-size: 14px; font-weight: 500; color: #6b7280;
    line-height: 1.6; margin-bottom: 16px;
    font-family: 'Manrope', sans-serif;
}
.art-cols__arrow {
    display: flex; align-items: center;
    justify-content: center;
    padding: 0 12px; flex-shrink: 0;
}
.art-cols__arrow svg { width: 22px; height: 22px; fill: #6bb476; }

/* ═══════════════════════════════════════
   СПИСКИ
═══════════════════════════════════════ */
.art-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 8px;
}
.art-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; font-weight: 500; color: #374151;
    line-height: 1.5; font-family: 'Manrope', sans-serif;
}
.art-list li::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    flex-shrink: 0; margin-top: 5px;
}
.art-list--dot li::before  { background: #6bb476; }
.art-list--ok  li::before  { background: #6bb476; }
.art-list--bad li::before  { background: #f87171; }
.art-list--bad li { color: #6b7280; }

/* ═══════════════════════════════════════
   ДВЕ КОЛОНКИ ЧТО РЕШАЕТ / ЧТО НЕ ВИДИТ (секция 02)
═══════════════════════════════════════ */
.art-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.art-two-col__item {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px;
}
.art-two-col__item--ok  { border-top: 3px solid #6bb476; }
.art-two-col__item--bad { border-top: 3px solid #f87171; }

.art-two-col__label {
    font-size: 14px; font-weight: 500; color: #6b7280;
    line-height: 1.6; margin-bottom: 16px;
    font-family: 'Manrope', sans-serif;
}
@media (max-width: 640px) { .art-two-col { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   СХЕМА-КОНТУР FMC (секция 03)
═══════════════════════════════════════ */
.fmc-contour {
    border: 2px solid rgba(107,180,118,0.35);
    border-radius: 18px;
    padding: 28px 32px;
    background: #f9fdf9;
    position: relative;
    margin-bottom: 0;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}
.fmc-contour__label {
    position: absolute; top: -13px; left: 20px;
    background: #ffffff; padding: 0 10px;
    font-size: 11px; font-weight: 700; color: #4d9659;
    letter-spacing: 0.1em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
}
.fmc-contour__nodes {
    display: flex; align-items: center;
    justify-content: center; flex-wrap: wrap; gap: 0;
}
.fmc-node {
    display: flex; align-items: center; gap: 8px;
    background: #ffffff; border: 1.5px solid #e5e7eb;
    border-radius: 12px; padding: 12px 24px;
    transition: all 0.2s; flex: 1; min-width: 160px;
    justify-content: center;
}
.fmc-node:hover { border-color: #6bb476; background: #edf6ef; }
.fmc-node__dot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.fmc-node__dot--1 { background: #6bb476; }
.fmc-node__dot--2 { background: #4d9659; }
.fmc-node span {
    font-size: 14px; font-weight: 600; color: #374151;
    font-family: 'Manrope', sans-serif;
}
.fmc-contour__sep {
    font-size: 20px; font-weight: 300; color: #d1d5db;
    padding: 0 16px; flex-shrink: 0;
}
@media (max-width: 640px) {
    .fmc-contour__nodes { flex-direction: column; align-items: stretch; }
    .fmc-contour__sep { display: none; }
    .fmc-node { justify-content: flex-start; min-width: auto; }
}

/* ═══════════════════════════════════════
   КАРТОЧКИ В РЯД (секции 03, 04)
═══════════════════════════════════════ */
.art-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.art-cards-row--5 { grid-template-columns: repeat(5, 1fr); }

.art-card {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px 18px;
    display: flex; flex-direction: column; gap: 12px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.art-card:hover {
    border-color: #6bb476;
    box-shadow: 0 8px 24px rgba(107,180,118,0.1);
    transform: translateY(-3px);
}
.art-card--accent {
    background: #edf6ef;
    border-color: rgba(107,180,118,0.35);
}
.art-card__ico {
    width: 40px; height: 40px; border-radius: 11px;
    background: #edf6ef;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.art-card--accent .art-card__ico { background: rgba(107,180,118,0.15); }
.art-card__ico svg { width: 18px; height: 18px; fill: #6bb476; }
.art-card__text {
    font-size: 13px; font-weight: 500; color: #374151;
    line-height: 1.5; margin: 0; font-family: 'Manrope', sans-serif;
}

@media (max-width: 1100px) {
    .art-cards-row { grid-template-columns: repeat(2, 1fr); }
    .art-cards-row--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .art-cards-row,
    .art-cards-row--5 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   БЛОК «В РЕЗУЛЬТАТЕ»
═══════════════════════════════════════ */
.art-result {
    background: #111614;
    border-radius: 14px;
    padding: 18px 28px;
    display: flex; align-items: center; gap: 20px;
    margin-top: 24px;
}
.art-result__label {
    font-size: 10px; font-weight: 800; color: #6bb476;
    letter-spacing: 0.14em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap; flex-shrink: 0;
    padding-right: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.art-result__text {
    font-size: 15px; font-weight: 600;
    color: rgba(255,255,255,0.8); line-height: 1.5;
    font-family: 'Manrope', sans-serif;
}
@media (max-width: 640px) {
    .art-result { flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px 20px; }
    .art-result__label { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-right: 0; padding-bottom: 10px; }
}

/* ═══════════════════════════════════════
   БЛОК ВВОДНЫЙ ДЛЯ АРХИТЕКТУРЫ (секция 06)
═══════════════════════════════════════ */
.arch-intro {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px 32px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 48px;
    align-items: start;
}
.arch-intro__lead,
.arch-intro__emphasis {
    font-size: 13px;
    font-weight: 700;
    color: #4d9659;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 10px;
}
.arch-intro__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.arch-intro__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    line-height: 1.5;
    font-family: 'Manrope', sans-serif;
}
.arch-intro__list li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #6bb476;
    flex-shrink: 0;
    margin-top: 6px;
}
.arch-intro__list--dark li { color: #374151; }
.arch-intro__list--dark li::before { background: #4d9659; }

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

/* ═══════════════════════════════════════
   АРХИТЕКТУРА (секция 06)
═══════════════════════════════════════ */
.art-arch {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 0;
}
.art-arch__item {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px 24px;
    display: flex; flex-direction: column; gap: 16px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.art-arch__item:hover {
    border-color: #6bb476;
    box-shadow: 0 8px 24px rgba(107,180,118,0.1);
    transform: translateY(-3px);
}
.art-arch__item--accent {
    background: #edf6ef;
    border-color: rgba(107,180,118,0.35);
}
.art-arch__ico {
    width: 44px; height: 44px; border-radius: 12px;
    background: #f5f6f5;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.art-arch__item--accent .art-arch__ico { background: rgba(107,180,118,0.12); }
.art-arch__ico svg { width: 20px; height: 20px; fill: #6bb476; }
.art-arch__title {
    font-size: 16px; font-weight: 700; color: #111614;
    line-height: 1.3; margin: 0;
    font-family: 'Manrope', sans-serif;
}
.art-arch__text {
    font-size: 14px; color: #6b7280; line-height: 1.6;
    margin: 0; font-family: 'Manrope', sans-serif;
}
@media (max-width: 900px) { .art-arch { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   АДАПТИВ ОБЩИЙ
═══════════════════════════════════════ */
@media (max-width: 640px) {
    .art-section { padding: 56px 0; }
    .art-cols { flex-direction: column; }
    .art-cols__arrow { padding: 8px 0; transform: rotate(90deg); align-self: flex-start; margin-left: 16px; }
}

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta {
    padding: 100px 0 !important;
    background: #edf6ef !important;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    border-top: 1px solid rgba(107,180,118,0.2);
}
@media (max-width: 991px) {
    .cta {
        padding: 35px 0 !important;
    }
}
.cta__bg-contour { display: none; }
.cta__bg-box { display: none; }
.cta__bg-box::before { display: none; }
.cta__bg-box::after { display: none; }
.cta__glow { display: none; }

.cta__inner {
    position: relative; z-index: 1;
    max-width: 680px; margin: 0 auto;
}

.cta__title { color: #111614 !important; margin-bottom: 20px; }

/* Pre-text перед кнопкой */
.cta__pre-text {
    margin-bottom: 24px;
}
.cta__pre-text p {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    line-height: 1.7;
    font-family: 'Manrope', sans-serif;
}

.cta__text {
    font-size: 17px; color: #6b7280;
    line-height: 1.8; margin-bottom: 28px;
    font-family: 'Manrope', sans-serif;
}
.cta__text li::before{
    display: none;
}

.cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.cta .btn-green {
    background: #4d9659 !important;
    color: #fff !important;
}
.cta .btn-green:hover {
    background: #3d7a48 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(77,150,89,0.25) !important;
    color: #fff !important;
}

.cta .btn-outline-dark {
    border-color: rgba(107,180,118,0.4) !important;
    color: #4d9659 !important;
}
.cta .btn-outline-dark:hover {
    border-color: #4d9659 !important;
    background: rgba(107,180,118,0.08) !important;
    color: #4d9659 !important;
}

.cta__trust {
    margin-top: 48px;
    display: flex; align-items: center; justify-content: center;
    gap: 32px; flex-wrap: wrap;
}
.cta__trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: #6b7280;
    font-family: 'Manrope', sans-serif;
}
.cta__trust-item svg { width: 14px; height: 14px; fill: #6bb476; opacity: 0.8; }

.cta__text li {
    width: max-content;
    margin: 0 auto;
}

/* ═══════════════════════════════════════
   СЕКЦИЯ 05 — ПРИЧИНЫ ВНЕДРЕНИЯ FMC
═══════════════════════════════════════ */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.reason-tile {
    background: #f5f6f5;
    border: 1.5px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.reason-tile:hover {
    border-color: #6bb476;
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(107,180,118,0.1);
}
.reason-tile--accent {
    background: #edf6ef;
    border-color: rgba(107,180,118,0.35);
}
.reason-tile--accent:hover {
    background: #e4f2e6;
    border-color: #6bb476;
}
.reason-tile__num {
    font-size: 11px;
    font-weight: 800;
    color: #6bb476;
    letter-spacing: 0.12em;
    opacity: 0.7;
    font-family: 'Manrope', sans-serif;
    line-height: 1;
}
.reason-tile__title {
    font-size: 15px;
    font-weight: 700;
    color: #111614;
    line-height: 1.3;
    margin: 0;
    font-family: 'Manrope', sans-serif;
}
.reason-tile__text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-family: 'Manrope', sans-serif;
}
.reason-tile__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 4px 0 0;
    padding: 0;
}
.reason-tile__list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
    font-family: 'Manrope', sans-serif;
}
.reason-tile__list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #6bb476;
    flex-shrink: 0;
    margin-top: 5px;
}
@media (max-width: 1100px) {
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .reasons-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   СЕКЦИЯ 07 — ЧТО ПОЛУЧАЕТ КОМПАНИЯ
═══════════════════════════════════════ */
.summary-strip {
    border: 1.5px solid rgba(107,180,118,0.3);
    border-radius: 18px;
    background: #edf6ef;
    overflow: hidden;
}
.summary-strip__label {
    padding: 16px 28px;
    font-size: 11px;
    font-weight: 800;
    color: #4d9659;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    border-bottom: 1px solid rgba(107,180,118,0.2);
    background: rgba(107,180,118,0.06);
}
.summary-strip__items {
    display: flex;
    align-items: stretch;
}
.summary-strip__item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #111614;
    font-family: 'Manrope', sans-serif;
    line-height: 1.4;
}
.summary-strip__ico {
    width: 18px;
    height: 18px;
    fill: #6bb476;
    flex-shrink: 0;
}
.summary-strip__divider {
    width: 1px;
    background: rgba(107,180,118,0.2);
    flex-shrink: 0;
    margin: 12px 0;
}
@media (max-width: 900px) {
    .summary-strip__items { flex-direction: column; }
    .summary-strip__divider { width: auto; height: 1px; margin: 0 28px; }
    .summary-strip__item { padding: 16px 28px; }
}
@media (max-width: 640px) {
    .summary-strip__label { padding: 14px 20px; }
    .summary-strip__item { padding: 14px 20px; font-size: 14px; }
    .summary-strip__divider { margin: 0 20px; }
}

@media (max-width: 991px) {
    section#contour, section#problem-classic, section#architecture, section.cta {
        padding: 56px 20px;
        margin: 0 -20px;
    }
}