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

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

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: 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;
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
.text-animate-1 { opacity: 0; transform: translate(0, 35px); transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease; }
.text-animate-1._active { opacity: 1; transform: translate(0,0); }
.text-animate-2 { opacity: 0; transform: translate(0, 35px); transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease; }
.text-animate-2._active { opacity: 1; transform: translate(0,0); transition-delay: 0.15s; }
.image-fade-up { transition: all 0.9s cubic-bezier(0.22,1,0.36,1); transform: translateY(40px); opacity: 0; }
.image-fade-up._active { transform: translateY(0); opacity: 1; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.article-hero {
    background: #ffffff;
    min-height: 58vh;
    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%; }
}

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

@media (max-width: 640px) {
    .art-section { padding: 56px 0; }
}

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

/* ═══════════════════════════════════════
   TARIFF HEAD
═══════════════════════════════════════ */
.tariff-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}
.tariff-head__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #edf6ef;
    color: #6bb476;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.tariff-head__icon svg {
    width: 22px;
    height: 22px;
}
.tariff-head__title {
    margin-bottom: 8px;
}
.tariff-head__text {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    max-width: 760px;
}

@media (max-width: 640px) {
    .tariff-head {
        flex-direction: column;
        gap: 14px;
    }
}

/* ═══════════════════════════════════════
   TARIFF CARD / TABLE
═══════════════════════════════════════ */
.tariff-card {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 28px rgba(17, 22, 20, 0.04);
}
.tariff-table {
    display: flex;
    flex-direction: column;
    border: 1px solid #edf0ee;
    border-radius: 16px;
    overflow: hidden;
}
.tariff-row {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 20px;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid #edf0ee;
    background: #fff;
}
.tariff-row:last-child {
    border-bottom: none;
}
.tariff-row:nth-child(even) {
    background: #fafcfb;
}
.tariff-row--free {
    background: #edf6ef !important;
}
.tariff-row__name {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
}
.tariff-row__price {
    font-size: 18px;
    font-weight: 800;
    color: #111614;
    text-align: right;
    white-space: nowrap;
}

.tariff-block-title {
    margin: 28px 0 18px;
    font-size: 22px;
    font-weight: 800;
    color: #111614;
    letter-spacing: -0.02em;
}

.tariff-subgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 20px;
}
.mini-card {
    background: #f8faf9;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px 16px;
}
.mini-card--accent {
    background: #edf6ef;
    border-color: rgba(107,180,118,0.35);
}
.mini-card__title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    color: #374151;
    margin-bottom: 8px;
}
.mini-card__price {
    font-size: 22px;
    font-weight: 900;
    color: #111614;
}

.tariff-note {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 14px;
    background: #111614;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.6;
}
.tariff-note strong {
    color: #fff;
}

.tariff-actions {
    margin-top: 24px;
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 1100px) {
    .tariff-subgrid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .tariff-card {
        padding: 20px;
        border-radius: 18px;
    }
    .tariff-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .tariff-row__price {
        text-align: left;
    }
    .tariff-subgrid {
        grid-template-columns: 1fr;
    }
    .tariff-actions .btn {
        width: 100%;
    }
}

/* ═══════════════════════════════════════
   PACKAGES GRID
═══════════════════════════════════════ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.package-card {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px 18px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.package-card:hover {
    border-color: #6bb476;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(107,180,118,0.12);
}
.package-card--accent {
    background: #edf6ef;
    border-color: rgba(107,180,118,0.35);
}
.package-card__name {
    font-size: 16px;
    font-weight: 800;
    color: #111614;
    margin-bottom: 6px;
}
.package-card__desc {
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 14px;
}
.package-card__price {
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    color: #111614;
}

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

/* ═══════════════════════════════════════
   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__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) {
    :root { --page-pad: 20px; }
}

.tariff-actions {
    margin-top: 30px;
}
@media (min-width: 991px){
    .tariff-note-rows {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.tariff-actions {
    flex: 0 1 50%;
}
.tariff-actions button {
    width: 100%;
}
.tariff-note {
    flex: 1 1 auto;
}
      .tariff-actions button {
    width: 100%;
    height: 54px;
    margin: 0 !important;
}
.tariff-note-rows {
    margin-top: 24px;
}
.tariff-note {
    margin-top: 0px;
}
.tariff-note {
    height: 54px;
}
.tariff-note-rows .tariff-actions {
    margin-top: 0px;
}
}