/* ═══════════════════════════════════════
   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;
}
.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;
}
/* ═══════════════════════════════════════
   ТИПОГРАФИЯ
═══════════════════════════════════════ */
.h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; }
.h2 { font-size: clamp(26px, 3vw, 44px); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
.lead { font-size: 17px; line-height: 1.8; color: #6b7280; }

@media (max-width: 991px) {
    .lead { font-size: 15px; }
}

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

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

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.article-hero {
    background: #ffffff;
    min-height: 62vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    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;
    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__lead {
    font-size: 18px;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 620px;
}
.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;
}
.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;
    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; }
.art-section--white { background: #ffffff; }
.art-section--gray  { background: #f5f6f5; }
.art-section__title { color: #111614; margin-bottom: 28px; max-width: 860px; }
.art-text { margin-bottom: 32px; }
.art-text .lead { color: #374151; max-width: 860px; }

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

/* ═══════════════════════════════════════
   LAW GRID
═══════════════════════════════════════ */
.law-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.law-card {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px 22px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.law-card:hover {
    border-color: #6bb476;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(107,180,118,0.1);
}
.law-card--accent {
    background: #edf6ef;
    border-color: rgba(107,180,118,0.35);
}
.law-card__title {
    font-size: 16px;
    font-weight: 800;
    color: #111614;
    margin-bottom: 8px;
}
.law-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}
@media (max-width: 1100px) {
    .law-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .law-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   CHANNELS GRID
═══════════════════════════════════════ */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.channels-grid__item {
    background: #fff;
    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;
}
.channels-grid__item:hover {
    border-color: #6bb476;
    box-shadow: 0 8px 24px rgba(107,180,118,0.1);
    transform: translateY(-3px);
}
.channels-grid__item--accent {
    background: #edf6ef;
    border-color: rgba(107,180,118,0.35);
}
.channels-grid__ico {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: #edf6ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6bb476;
}
.channels-grid__item--accent .channels-grid__ico {
    background: rgba(107,180,118,0.15);
}
.channels-grid__ico svg {
    width: 18px;
    height: 18px;
}
.channels-grid__item span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: #374151;
}
@media (max-width: 640px) {
    .channels-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   PROBLEM GRID
═══════════════════════════════════════ */
.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;
    background: #fef2f2;
    border-bottom: 1px solid #fee2e2;
}
.problem-grid__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 22px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    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(2n) { border-right: none; }
.problem-item:nth-last-child(-n+2) { border-bottom: none; }
.problem-item--accent {
    background: #fef2f2;
}
.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: 640px) {
    .problem-grid__items { grid-template-columns: 1fr; }
    .problem-item { border-right: none !important; }
    .problem-item:nth-last-child(-n+2) { border-bottom: 1px solid #f3f4f6; }
    .problem-item:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════
   CONTOUR
═══════════════════════════════════════ */
.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;
}
.med-contour__items {
    display: grid;
    grid-template-columns: repeat(2, 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;
    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: 640px) {
    .med-contour {
        padding: 28px 20px;
    }
    .med-contour__items {
        grid-template-columns: 1fr;
    }
    .med-contour__item--accent {
        grid-column: auto;
    }
}

/* ═══════════════════════════════════════
   CARDS ROW
═══════════════════════════════════════ */
.art-cards-row { display: grid; gap: 14px; margin-top: 20px; }
.art-cards-row--4 { grid-template-columns: repeat(4, 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;
    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: 600;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

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

/* ═══════════════════════════════════════
   QUESTION BOX
═══════════════════════════════════════ */
.question-box {
    background: #111614;
    border-radius: 24px;
    padding: 36px 40px;
    position: relative;
    overflow: hidden;
}
.question-box::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107,180,118,0.18) 0%, transparent 70%);
}
.question-box__eyebrow {
    position: relative;
    z-index: 1;
    font-size: 11px;
    font-weight: 800;
    color: #6bb476;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.question-box__text {
    position: relative;
    z-index: 1;
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #ffffff;
    max-width: 980px;
}
@media (max-width: 640px) {
    .question-box {
        padding: 28px 22px;
        border-radius: 18px;
    }
    .question-box__text {
        font-size: 22px;
        line-height: 1.45;
    }
}

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta {
    padding: 100px 0;
    background: #edf6ef;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(107,180,118,0.2);
}
.cta__glow { display: none; }
.cta__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    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;
}
.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;
}
.cta__trust-item svg {
    width: 14px;
    height: 14px;
    fill: #6bb476;
    opacity: 0.8;
}

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