/* ═══════════════════════════════════════
   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-gray: #6b7280;
    --nv-gray-light: #f5f6f5;
    --nv-border: #e5e7eb;
    --page-width: 1240px;
    --page-pad: 32px;
}
ul.article-toc__list li::before{
    display: none;
}
.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;
}

/* ═══════════════════════════════════════
   ТИПОГРАФИЯ
═══════════════════════════════════════ */
.h1 { font-size: clamp(32px, 4vw, 52px); 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; }
.lead { font-size: 17px; line-height: 1.8; color: #6b7280; font-family: 'Manrope', sans-serif; }
@media (max-width: 991px) { .lead { font-size: 15px; } }

/* ═══════════════════════════════════════
   КНОПКИ
═══════════════════════════════════════ */
.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; }
.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; }

/* ═══════════════════════════════════════
   АНИМАЦИИ
═══════════════════════════════════════ */
@keyframes nv-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

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

/* ═══════════════════════════════════════
   ARTICLE HERO
═══════════════════════════════════════ */
.article-hero {
    background: #ffffff; min-height: 62vh;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    font-family: 'Manrope', sans-serif;
    border-bottom: 1px solid #e5e7eb;
}
.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.1) 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; }

.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; }
.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; }
.article-hero__lead { font-size: 16px; color: #6b7280; line-height: 1.8; margin-bottom: 32px; max-width: 560px; font-family: 'Manrope', sans-serif; }
.article-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* TOC */
.article-toc { background: rgba(255,255,255,0.92); border: 1.5px solid #e5e7eb; border-radius: 20px; padding: 24px 24px 28px; backdrop-filter: blur(4px); }
.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: 8px 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: 28px; max-width: 800px; }
.art-text { margin-bottom: 32px; }
.art-text .lead { color: #374151; max-width: 760px; }

/* ═══════════════════════════════════════
   БЛОК «В РЕЗУЛЬТАТЕ»
═══════════════════════════════════════ */
.art-result {
    background: #111614; border-radius: 14px;
    padding: 18px 28px; display: flex;
    align-items: center; gap: 20px; margin-top: 32px;
}
.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; }
}

/* ═══════════════════════════════════════
   КАРТОЧКИ В РЯД
═══════════════════════════════════════ */
.art-cards-row { display: grid; gap: 14px; margin-top: 20px; }
.art-cards-row--3 { grid-template-columns: repeat(3, 1fr); }
.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;
    color: #6bb476;
}
.art-card--accent .art-card__ico { background: rgba(107,180,118,0.15); }
.art-card__ico svg { width: 18px; height: 18px; }
.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--3 { grid-template-columns: repeat(2, 1fr); }
    .art-cards-row--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .art-cards-row--3,
    .art-cards-row--5 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   SPLIT — две колонки
═══════════════════════════════════════ */
.art-split { display: flex; align-items: stretch; gap: 0; margin-bottom: 0; }
.art-split__col {
    flex: 1; background: #ffffff;
    border: 1.5px solid #e5e7eb; border-radius: 18px; padding: 28px;
}
.art-split__col--ok { border-top: 3px solid #6bb476; }
.art-split__col--neutral { border-top: 3px solid #fcd34d; }
.art-split__head { font-size: 13px; font-weight: 700; color: #6b7280; margin-bottom: 16px; font-family: 'Manrope', sans-serif; }
.art-split__text { font-size: 14px; color: #374151; line-height: 1.7; font-family: 'Manrope', sans-serif; }
.art-split__arrow { display: flex; align-items: center; justify-content: center; padding: 0 14px; flex-shrink: 0; font-size: 22px; color: #d1d5db; }
.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--ok li::before { background: #6bb476; }
@media (max-width: 640px) {
    .art-split { flex-direction: column; }
    .art-split__arrow { padding: 8px 0; align-self: center; transform: rotate(90deg); }
}

/* ═══════════════════════════════════════
   ПРОБЛЕМА
═══════════════════════════════════════ */
.problem-grid {
    background: #ffffff; border: 1.5px solid #e5e7eb;
    border-radius: 18px; border-top: 3px solid #f87171; overflow: hidden;
}
.problem-grid__label {
    padding: 16px 28px;
    font-size: 11px; font-weight: 800; color: #ef4444;
    letter-spacing: 0.1em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    background: #fef2f2; border-bottom: 1px solid #fee2e2;
}
.problem-grid__items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.problem-item {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 18px 22px; font-size: 14px; font-weight: 500; color: #374151;
    font-family: 'Manrope', sans-serif; line-height: 1.4;
    border-right: 1px solid #f3f4f6; border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
}
.problem-item:hover { background: #fef9f9; }
.problem-item:nth-child(3n) { border-right: none; }
.problem-item:nth-child(4),
.problem-item:nth-child(5) { border-bottom: none; }
.problem-item--accent { background: #fef2f2; grid-column: 1 / -1; border-right: none; border-bottom: none; }
.problem-item--accent:hover { background: #fee2e2; }
.problem-item__dot { width: 7px; height: 7px; border-radius: 50%; background: #f87171; flex-shrink: 0; margin-top: 5px; }
.problem-item--accent .problem-item__dot { background: #ef4444; }

@media (max-width: 900px) {
    .problem-grid__items { grid-template-columns: repeat(2, 1fr); }
    .problem-item:nth-child(3n) { border-right: 1px solid #f3f4f6; }
    .problem-item:nth-child(2n) { border-right: none; }
    .problem-item--accent { grid-column: auto; }
}
@media (max-width: 640px) {
    .problem-grid__items { grid-template-columns: 1fr; }
    .problem-item { border-right: none !important; }
    .problem-item--accent { grid-column: auto; }
}

/* ═══════════════════════════════════════
   КОНТУР РОБОТЕЛС
═══════════════════════════════════════ */
.med-contour {
    border: 2px solid rgba(107,180,118,0.35);
    border-radius: 18px; padding: 36px 40px;
    background: #f9fdf9; position: relative;
}
.med-contour__label {
    position: absolute; top: -13px; left: 24px;
    background: #ffffff; padding: 0 12px;
    font-size: 11px; font-weight: 700; color: #4d9659;
    letter-spacing: 0.1em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
}
.med-contour__items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.med-contour__item {
    display: flex; align-items: flex-start; gap: 12px;
    background: #ffffff; border: 1.5px solid #e5e7eb;
    border-radius: 14px; padding: 16px 18px;
    font-size: 14px; font-weight: 500; color: #374151;
    font-family: 'Manrope', sans-serif; line-height: 1.4;
    transition: border-color 0.2s, transform 0.2s;
}
.med-contour__item:hover { border-color: #6bb476; transform: translateY(-2px); }
.med-contour__item--accent { background: #edf6ef; border-color: rgba(107,180,118,0.35); grid-column: 1 / -1; }
.med-contour__item-ico {
    width: 32px; height: 32px; border-radius: 9px;
    background: #edf6ef; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: #6bb476;
}
.med-contour__item--accent .med-contour__item-ico { background: rgba(107,180,118,0.15); }
.med-contour__item-ico svg { width: 15px; height: 15px; }

@media (max-width: 900px) { .med-contour__items { grid-template-columns: repeat(2, 1fr); } .med-contour__item--accent { grid-column: auto; } }
@media (max-width: 640px) { .med-contour { padding: 28px 20px; } .med-contour__items { grid-template-columns: 1fr; } .med-contour__item--accent { grid-column: auto; } }

/* ═══════════════════════════════════════
   СТАТИСТИКА РЕЗУЛЬТАТОВ
═══════════════════════════════════════ */
.med-stats {
    margin-top: 32px; border: 1.5px solid rgba(107,180,118,0.3);
    border-radius: 18px; background: #edf6ef; overflow: hidden;
}
.med-stats__label {
    padding: 14px 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);
}
.med-stats__items { display: flex; align-items: stretch; }
.med-stat {
    flex: 1; padding: 24px 36px;
    display: flex; flex-direction: column; gap: 6px;
}
.med-stat__num {
    font-size: 52px; font-weight: 900; color: #111614;
    line-height: 1; letter-spacing: -0.04em; font-family: 'Manrope', sans-serif;
}
.med-stat__num span { color: #6bb476; font-size: 0.6em; }
.med-stat__label { font-size: 14px; color: #6b7280; font-family: 'Manrope', sans-serif; line-height: 1.4; }
.med-stats__divider { width: 1px; background: rgba(107,180,118,0.2); margin: 12px 0; }

@media (max-width: 640px) {
    .med-stats__items { flex-direction: column; }
    .med-stats__divider { width: auto; height: 1px; margin: 0; }
    .med-stat { padding: 20px 24px; }
    .med-stat__num { font-size: 40px; }
}

/* ═══════════════════════════════════════
   ШАГИ — КАК РАБОТАЕТ
═══════════════════════════════════════ */
.med-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.med-step {
    background: #f5f6f5; border: 1.5px solid #e5e7eb;
    border-right: none; padding: 28px 24px;
    display: flex; flex-direction: column; gap: 14px;
    border-top: 3px solid transparent;
    transition: border-top-color 0.3s, background 0.3s, transform 0.25s;
    position: relative;
}
.med-step:first-child { border-radius: 18px 0 0 18px; }
.med-step:last-child { border-right: 1.5px solid #e5e7eb; border-radius: 0 18px 18px 0; }
.med-step:hover { border-top-color: #6bb476; transform: translateY(-3px); z-index: 1; }
.med-step--accent { background: #111614; border-color: rgba(107,180,118,0.3); border-top-color: #6bb476; }
.med-step--accent:hover { border-color: rgba(107,180,118,0.5); }

.med-step__num {
    font-size: 11px; font-weight: 800; color: rgba(0,0,0,0.15);
    letter-spacing: 0.14em; font-family: 'Manrope', sans-serif;
}
.med-step--accent .med-step__num { color: rgba(255,255,255,0.2); }
.med-step__title { font-size: 15px; font-weight: 800; color: #111614; line-height: 1.3; font-family: 'Manrope', sans-serif; }
.med-step--accent .med-step__title { color: #fff; }
.med-step__text { font-size: 13px; color: #6b7280; line-height: 1.6; font-family: 'Manrope', sans-serif; }
.med-step--accent .med-step__text { color: rgba(255,255,255,0.45); }

@media (max-width: 1100px) {
    .med-steps { grid-template-columns: repeat(3, 1fr); }
    .med-step { border-right: none; border-bottom: none; }
    .med-step:first-child { border-radius: 18px 0 0 0; }
    .med-step:last-child { border-radius: 0 0 18px 0; border-right: 1.5px solid #e5e7eb; border-bottom: 1.5px solid #e5e7eb; }
    .med-step:nth-child(3n) { border-right: 1.5px solid #e5e7eb; }
    .med-step:nth-child(n+4) { border-top-color: transparent; border-top-width: 1.5px; }
    .med-step--accent { border-top-color: #6bb476 !important; border-top-width: 3px !important; }
}
@media (max-width: 640px) {
    .med-steps { grid-template-columns: 1fr; }
    .med-step, .med-step:first-child, .med-step:last-child { border-radius: 0; border-right: 1.5px solid #e5e7eb; border-bottom: none; }
    .med-step:first-child { border-radius: 18px 18px 0 0; }
    .med-step:last-child { border-radius: 0 0 18px 18px; border-bottom: 1.5px solid #e5e7eb; }
    .med-step:nth-child(3n) { border-right: 1.5px solid #e5e7eb; }
}

/* ═══════════════════════════════════════
   INFRA-CAN
═══════════════════════════════════════ */
.infra-can { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.infra-can__item {
    background: #ffffff; border: 1.5px solid #e5e7eb;
    border-radius: 16px; padding: 20px 18px;
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; font-weight: 500; color: #374151;
    font-family: 'Manrope', sans-serif; line-height: 1.4;
    transition: border-color 0.25s, transform 0.25s;
}
.infra-can__item:hover { border-color: #6bb476; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(107,180,118,0.1); }
.infra-can__item--accent { background: #edf6ef; border-color: rgba(107,180,118,0.35); }
.infra-can__num { font-size: 11px; font-weight: 800; color: #6bb476; opacity: 0.7; letter-spacing: 0.1em; flex-shrink: 0; font-family: 'Manrope', sans-serif; padding-top: 1px; }
@media (max-width: 900px) { .infra-can { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .infra-can { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   ПОДЗАГОЛОВОК
═══════════════════════════════════════ */
.med-subtitle {
    font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; color: #111614;
    font-family: 'Manrope', sans-serif; letter-spacing: -0.02em;
    margin-top: 56px; margin-bottom: 24px;
}

/* ═══════════════════════════════════════
   ВНЕДРЕНИЕ — ГОРИЗОНТАЛЬНЫЙ ТАЙМЛАЙН
═══════════════════════════════════════ */
.med-deploy {
    display: flex; align-items: center;
    background: #fff; border: 1.5px solid #e5e7eb;
    border-radius: 18px; padding: 28px 32px;
    gap: 0;
}
.med-deploy__item {
    display: flex; align-items: center; gap: 14px; flex: 1;
}
.med-deploy__item--accent .med-deploy__body { }
.med-deploy__dot {
    width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
    background: rgba(107,180,118,0.2); border: 2px solid rgba(107,180,118,0.3);
}
.med-deploy__dot--accent { background: #6bb476; border-color: #6bb476; box-shadow: 0 0 0 5px rgba(107,180,118,0.15); }
.med-deploy__title { font-size: 14px; font-weight: 700; color: #374151; font-family: 'Manrope', sans-serif; }
.med-deploy__item--accent .med-deploy__title { color: #111614; }
.med-deploy__sub { font-size: 12px; color: #6b7280; font-family: 'Manrope', sans-serif; margin-top: 2px; }
.med-deploy__line { flex: 1; height: 1px; background: linear-gradient(to right, rgba(107,180,118,0.3), rgba(107,180,118,0.1)); margin: 0 8px; min-width: 20px; }

@media (max-width: 900px) {
    .med-deploy { flex-direction: column; align-items: flex-start; padding: 24px 28px; gap: 0; }
    .med-deploy__item { flex-direction: row; width: 100%; padding: 12px 0; }
    .med-deploy__line { width: 1px; height: 24px; background: linear-gradient(to bottom, rgba(107,180,118,0.3), rgba(107,180,118,0.1)); margin: 0 0 0 6px; min-width: auto; }
}

/* ═══════════════════════════════════════
   АРХИТЕКТУРА
═══════════════════════════════════════ */
.art-arch { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.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; color: #6bb476; }
.art-arch__item--accent .art-arch__ico { background: rgba(107,180,118,0.12); }
.art-arch__ico svg { width: 20px; height: 20px; }
.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; } }

/* ═══════════════════════════════════════
   SUMMARY STRIP
═══════════════════════════════════════ */
.summary-strip {
    border: 1.5px solid rgba(107,180,118,0.3);
    border-radius: 18px; background: #edf6ef;
    overflow: hidden; margin-top: 32px;
}
.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: 20px 22px; font-size: 14px; font-weight: 600;
    color: #111614; font-family: 'Manrope', sans-serif; line-height: 1.4;
}
.summary-strip__ico { width: 18px; height: 18px; color: #6bb476; flex-shrink: 0; }
.summary-strip__divider { width: 1px; background: rgba(107,180,118,0.2); flex-shrink: 0; margin: 10px 0; }

@media (max-width: 900px) {
    .summary-strip__items { flex-wrap: wrap; }
    .summary-strip__item { min-width: 45%; }
    .summary-strip__divider { display: none; }
}
@media (max-width: 640px) {
    .summary-strip__items { flex-direction: column; }
    .summary-strip__item { padding: 14px 20px; border-bottom: 1px solid rgba(107,180,118,0.15); }
    .summary-strip__item:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta {
    padding: 100px 0; background: #edf6ef;
    position: relative; overflow: hidden; text-align: center;
    font-family: 'Manrope', sans-serif;
    border-top: 1px solid rgba(107,180,118,0.2);
}
.cta__glow { display: none; }
@media (max-width: 991px) { .cta { padding: 56px 0; } }
.cta__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta__title { color: #111614 !important; margin-bottom: 20px; }
.cta__text { font-size: 17px; color: #6b7280; line-height: 1.8; margin-bottom: 40px; font-family: 'Manrope', sans-serif; }
.cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.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; }
.cta__trust { 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; }

/* ═══════════════════════════════════════
   ОБЩИЙ АДАПТИВ
═══════════════════════════════════════ */
@media (max-width: 640px) {
    .art-section { padding: 56px 0; }
    :root { --page-pad: 20px; }
}