/* ═══════════════════════════════════════
   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-title {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 800; line-height: 1.2;
    letter-spacing: -0.025em;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 16px;
}
.section-lead {
    font-size: 17px; line-height: 1.8;
    color: #6b7280;
    max-width: 680px;
    font-family: 'Manrope', sans-serif;
}
.section-header { margin-bottom: 40px; }
.section-header--light .section-title { color: #fff; }
.section-header--light .section-lead  { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════
   КНОПКИ
═══════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 32px; 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: 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.4); color: #fff; }

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

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
    background: #ffffff;
    position: relative; overflow: hidden;
    padding: 64px 0 72px;
    border-bottom: 1px solid var(--nv-border);
}
.hero__pattern {
    position: absolute; inset: 0; z-index: 0;
    background-image: url(https://new.novotels.ru/local/pattern-01.jpg);
    background-size: cover; background-position: center;
    opacity: 0.5; pointer-events: none;
}
.hero__grid {
    position: absolute; inset: 0; z-index: 1;
    background-image:
        linear-gradient(rgba(107,180,118,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107,180,118,0.1) 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 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 .container { position: relative; z-index: 3; }

.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;
}
.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; font-family: 'Manrope', sans-serif;
    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 420px;
    gap: 48px; align-items: start;
}
.hero__title {
    font-size: clamp(30px, 3.8vw, 52px);
    font-weight: 900; line-height: 1.1;
    letter-spacing: -0.03em;
    font-family: 'Manrope', sans-serif;
    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: 28px;
    max-width: 480px; font-family: 'Manrope', sans-serif;
}
.hero__right { display: flex; flex-direction: column; gap: 10px; }
.hero__panel {
    border-radius: 14px; padding: 18px 20px; border: 1.5px solid;
}
.hero__panel--bad  { background: #fef9f9; border-color: rgba(248,113,113,0.25); }
.hero__panel--good { background: #f9fdf9; border-color: rgba(107,180,118,0.3); }
.hero__panel-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif; margin-bottom: 12px;
}
.hero__panel--bad  .hero__panel-label { color: #ef4444; }
.hero__panel--good .hero__panel-label { color: var(--nv-green-dark); }
.hero__panel-label svg { width: 14px; height: 14px; flex-shrink: 0; }
.hero__panel--bad  .hero__panel-label svg { fill: #f87171; }
.hero__panel--good .hero__panel-label svg { fill: var(--nv-green); }
.hero__panel-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.hero__panel-list li {
    font-size: 13px; font-weight: 500; line-height: 1.45;
    font-family: 'Manrope', sans-serif;
    padding-left: 14px; position: relative;
}
.hero__panel-list li::before {
    content: ''; position: absolute; left: 0; top: 5px;
    width: 5px; height: 5px; border-radius: 50%;
}
.hero__panel--bad  .hero__panel-list li { color: #6b7280; }
.hero__panel--bad  .hero__panel-list li::before { background: #f87171; }
.hero__panel--good .hero__panel-list li { color: #374151; }
.hero__panel--good .hero__panel-list li::before { background: var(--nv-green); }

@media (max-width: 900px) {
    .hero__cols { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
    .hero { padding: 48px 0 56px; }
}

/* ═══════════════════════════════════════
   ПРОБЛЕМА — 2 КОЛОНКИ
═══════════════════════════════════════ */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    gap: 0;
    align-items: start;
    border: 1.5px solid var(--nv-border);
    border-radius: 20px; overflow: hidden;
    background: #fff;
}

.problem-col { padding: 32px 28px; }
.problem-col--see  { border-right: 1px solid var(--nv-border); }
.problem-col--miss { }

.problem-col__head {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 800;
    letter-spacing: 0.08em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif; margin-bottom: 20px;
}
.problem-col--see  .problem-col__head { color: var(--nv-gray); }
.problem-col--miss .problem-col__head { color: #ef4444; }
.problem-col__head svg { width: 16px; height: 16px; flex-shrink: 0; }
.problem-col--see  .problem-col__head svg { fill: var(--nv-gray); }
.problem-col--miss .problem-col__head svg { fill: #f87171; }

.problem-col__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.problem-col__list li {
    font-size: 14px; font-weight: 500; line-height: 1.5;
    font-family: 'Manrope', sans-serif;
    padding-left: 16px; position: relative;
}
.problem-col__list li::before {
    content: ''; position: absolute; left: 0; top: 5px;
    width: 6px; height: 6px; border-radius: 50%;
}
.problem-col__list--yes li { color: #374151; }
.problem-col__list--yes li::before { background: var(--nv-green); }
.problem-col__list--no  li { color: #6b7280; }
.problem-col__list--no  li::before { background: #f87171; }

.problem-col__conclusion {
    margin-top: 20px; padding: 14px 16px;
    background: #fef2f2; border-radius: 10px;
    border: 1px solid rgba(248,113,113,0.2);
    font-size: 13px; font-weight: 600; color: #ef4444;
    font-family: 'Manrope', sans-serif; line-height: 1.5;
}

/* Разделитель с иконкой */
.problem-col__divider {
    display: flex; align-items: center; justify-content: center;
    background: #f9fafb;
    border-left: 1px solid var(--nv-border);
    border-right: 1px solid var(--nv-border);
}
.problem-col__divider-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: #fff; border: 1.5px solid var(--nv-border);
    display: flex; align-items: center; justify-content: center;
}
.problem-col__divider-icon svg { width: 16px; height: 16px; fill: #9ca3af; }

@media (max-width: 760px) {
    .problem-grid { grid-template-columns: 1fr; }
    .problem-col--see  { border-right: none; border-bottom: 1px solid var(--nv-border); }
    .problem-col__divider { padding: 20px; border: none; border-top: 1px solid var(--nv-border); border-bottom: 1px solid var(--nv-border); }
}

/* ═══════════════════════════════════════
   КАК ЖИВЁТ БОЛЬШИНСТВО
═══════════════════════════════════════ */
.reality-flow {
    display: flex; align-items: flex-start; gap: 0;
    margin-bottom: 32px;
}
.reality-step {
    flex: 1; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px; padding: 28px 24px;
    display: flex; flex-direction: column; gap: 14px;
    transition: border-color 0.25s;
}
.reality-step:hover { border-color: rgba(248,113,113,0.3); }
.reality-step--end {
    background: rgba(248,113,113,0.06);
    border-color: rgba(248,113,113,0.2);
}
.reality-step__num {
    font-size: 11px; font-weight: 800;
    color: rgba(255,255,255,0.2); opacity: 1;
    letter-spacing: 0.12em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
}
.reality-step--mid .reality-step__num { color: rgba(255,255,255,0.2); }
.reality-step--end .reality-step__num { color: rgba(248,113,113,0.5); }
.reality-step__body h3 {
    font-size: 17px; font-weight: 700; color: #fff;
    line-height: 1.3; font-family: 'Manrope', sans-serif; margin-bottom: 8px;
}
.reality-step--end .reality-step__body h3 { color: #f87171; }
.reality-step__body p {
    font-size: 13px; color: rgba(255,255,255,0.45);
    line-height: 1.65; font-family: 'Manrope', sans-serif;
}
.reality-arrow {
    display: flex; align-items: center; justify-content: center;
    padding: 0 16px; flex-shrink: 0;
    font-size: 22px; color: rgba(255,255,255,0.15); font-weight: 300;
    margin-top: 40px;
}

.reality-conclusion {
    background: rgba(248,113,113,0.08);
    border: 1px solid rgba(248,113,113,0.2);
    border-radius: 16px; padding: 24px 32px;
}
.reality-conclusion__accent {
    font-size: 11px; font-weight: 800; color: #f87171;
    letter-spacing: 0.12em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif; margin-bottom: 8px;
}
.reality-conclusion p {
    font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.6);
    line-height: 1.7; font-family: 'Manrope', sans-serif;
}

@media (max-width: 760px) {
    .reality-flow { flex-direction: column; gap: 4px; }
    .reality-arrow { padding: 8px 0; align-self: center; transform: rotate(90deg); margin-top: 0; }
}

/* ═══════════════════════════════════════
   ШАГИ РЕШЕНИЯ
═══════════════════════════════════════ */
.solution-steps {
    display: flex; flex-direction: column; gap: 0;
    border: 1.5px solid var(--nv-border); border-radius: 20px; overflow: hidden;
}
.solution-step {
    display: flex; align-items: flex-start; gap: 0;
    border-bottom: 1px solid var(--nv-border);
    transition: background 0.2s;
}
.solution-step:last-child { border-bottom: none; }
.solution-step:hover { background: #f9fdf9; }
.solution-step--accent { background: var(--nv-green-light); }
.solution-step--accent:hover { background: #dff0e3; }

.solution-step__num {
    width: 72px; flex-shrink: 0;
    padding: 24px 0 24px 28px;
    font-size: 26px; font-weight: 900; color: #e5e7eb;
    font-family: 'Manrope', sans-serif; line-height: 1;
}
.solution-step--accent .solution-step__num { color: rgba(107,180,118,0.3); }

.solution-step__body {
    flex: 1; padding: 24px 28px;
    border-left: 1px solid var(--nv-border);
}
.solution-step--accent .solution-step__body { border-left-color: rgba(107,180,118,0.2); }
.solution-step__body h3 {
    font-size: 17px; font-weight: 700; color: #111614;
    font-family: 'Manrope', sans-serif; margin-bottom: 8px; line-height: 1.3;
}
.solution-step--accent .solution-step__body h3 { color: var(--nv-green-dark); }
.solution-step__body p {
    font-size: 14px; color: #6b7280; line-height: 1.65;
    font-family: 'Manrope', sans-serif;
}

/* Теги в шаге */
.solution-step__tags {
    display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px;
}
.solution-step__tags span {
    font-size: 11px; font-weight: 700; color: var(--nv-green-dark);
    background: var(--nv-green-light); border: 1px solid rgba(107,180,118,0.2);
    border-radius: 6px; padding: 4px 10px;
    font-family: 'Manrope', sans-serif;
}

/* Сигналы */
.solution-step__signals {
    display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px;
}
.solution-step__signal {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600;
    font-family: 'Manrope', sans-serif; line-height: 1.3;
    padding: 6px 12px; border-radius: 8px; border: 1px solid;
}
.solution-step__signal svg { width: 14px; height: 14px; flex-shrink: 0; }
.solution-step__signal--red {
    background: #fef2f2; color: #ef4444; border-color: rgba(248,113,113,0.25);
}
.solution-step__signal--red svg { color: #f87171; }
.solution-step__signal--yellow {
    background: #fffbeb; color: #d97706; border-color: rgba(251,191,36,0.3);
}
.solution-step__signal--yellow svg { color: #f59e0b; }

/* Действия в шаге */
.solution-step__actions {
    display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px;
}
.solution-step__action {
    display: flex; align-items: center; gap: 8px;
    background: #fff; border: 1.5px solid var(--nv-border);
    border-radius: 10px; padding: 10px 16px;
    font-size: 13px; font-weight: 600; color: #374151;
    font-family: 'Manrope', sans-serif;
    transition: border-color 0.2s;
}
.solution-step__action:hover { border-color: var(--nv-green); }
.solution-step__action svg { width: 16px; height: 16px; fill: var(--nv-green); flex-shrink: 0; }

/* ═══════════════════════════════════════
   СРАВНЕНИЕ (как в page-3)
═══════════════════════════════════════ */
.compare-row { display: flex; gap: 0; align-items: stretch; }
.compare-col { flex: 1; border-radius: 18px; padding: 32px 28px; }
.compare-col--bad {
    background: #fef2f2; border: 1.5px solid #fee2e2;
    border-top: 3px solid #f87171;
}
.compare-col--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-col__head { margin-bottom: 20px; }
.compare-col__label {
    font-size: 12px; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
}
.compare-col--bad  .compare-col__label { color: #ef4444; }
.compare-col--good .compare-col__label { color: var(--nv-green-dark); }
.compare-col__hero-text {
    font-size: 20px; font-weight: 800;
    color: #111614; line-height: 1.3;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 20px; letter-spacing: -0.01em;
}
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.compare-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; font-weight: 500; line-height: 1.5;
    font-family: 'Manrope', sans-serif;
}
.compare-list li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    flex-shrink: 0; margin-top: 5px;
}
.compare-list--bad li  { color: #6b7280; }
.compare-list--bad li::before  { background: #f87171; }
.compare-list--good li { color: #374151; }
.compare-list--good li::before { background: var(--nv-green); }

@media (max-width: 640px) {
    .compare-row { flex-direction: column; }
    .compare-col--good { margin-left: 0; margin-top: 12px; }
}

/* ═══════════════════════════════════════
   ВАЖНО — ГОРИЗОНТАЛЬНЫЙ LAYOUT
═══════════════════════════════════════ */
.important-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.important-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: 16px; font-family: 'Manrope', sans-serif;
    background: rgba(107,180,118,0.06);
}
.important-title { color: #111614; margin-bottom: 16px; }
.important-lead {
    font-size: 20px; font-weight: 700; color: #111614;
    line-height: 1.4; font-family: 'Manrope', sans-serif;
    letter-spacing: -0.01em; margin-bottom: 14px;
}
.important-sub {
    font-size: 15px; color: #6b7280;
    line-height: 1.7; font-family: 'Manrope', sans-serif;
}

.important-results { display: flex; flex-direction: column; gap: 0; }
.important-result {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--nv-border);
    transition: padding-left 0.2s;
}
.important-result:last-child { border-bottom: none; }
.important-result:hover { padding-left: 6px; }
.important-result__ico {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.important-result__ico--green {
    background: var(--nv-green-light); color: var(--nv-green);
}
.important-result__ico svg { width: 20px; height: 20px; }
.important-result__title {
    font-size: 15px; font-weight: 700; color: #111614;
    font-family: 'Manrope', sans-serif; margin-bottom: 5px;
}
.important-result__desc {
    font-size: 13px; color: #6b7280;
    font-family: 'Manrope', sans-serif; line-height: 1.55;
}

@media (max-width: 900px) {
    .important-wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════
   АРХИТЕКТУРА (как в page-3)
═══════════════════════════════════════ */
.section--arch-grid { position: relative; }
.section--arch-grid::before {
    content: '';
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    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;
}
.section--arch-grid .container { position: relative; z-index: 1; }

.arch-wrap { display: flex; gap: 40px; align-items: flex-start; }

.arch-flow-h {
    display: flex; flex-direction: column; align-items: center;
    gap: 0; flex-shrink: 0; width: 260px;
}
.arch-node {
    width: 100%; border-radius: 14px; padding: 18px 20px; text-align: center;
    position: relative;
}
.arch-node--mobile  { background: #fff; border: 1.5px solid var(--nv-border); }
.arch-node--platform { background: #edf6ef; border: 2px solid rgba(107,180,118,0.4); }
.arch-node--pbx     { background: #fff; border: 1.5px solid var(--nv-border); }
.arch-node__badge {
    position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
    background: var(--nv-green-dark); color: #fff;
    font-size: 10px; font-weight: 800; font-family: 'Manrope', sans-serif;
    letter-spacing: 0.08em; padding: 3px 12px; border-radius: 20px; white-space: nowrap;
}
.arch-node__ico {
    width: 40px; height: 40px; border-radius: 12px; background: #edf6ef;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 10px;
}
.arch-node__ico svg { width: 18px; height: 18px; fill: var(--nv-green); }
.arch-node--platform .arch-node__ico { background: rgba(107,180,118,0.2); }
.arch-node__title {
    font-size: 13px; font-weight: 700; color: #111614;
    font-family: 'Manrope', sans-serif; margin-bottom: 3px; line-height: 1.3;
}
.arch-node__sub { font-size: 11px; color: #9ca3af; font-family: 'Manrope', sans-serif; }
.arch-arrow {
    display: flex; align-items: center; justify-content: center;
    height: 32px; font-size: 16px; color: rgba(107,180,118,0.5); width: 100%;
}
.arch-side { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.arch-side__label {
    font-size: 11px; font-weight: 800; color: #6b7280;
    letter-spacing: 0.12em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif; margin-bottom: 4px;
}
.arch-cap-col { display: flex; flex-direction: column; gap: 8px; }
.arch-cap {
    display: flex; align-items: center; gap: 10px;
    background: #fff; border: 1.5px solid var(--nv-border);
    border-radius: 10px; padding: 12px 16px;
    font-size: 14px; font-weight: 500; color: #374151;
    font-family: 'Manrope', sans-serif; line-height: 1.4;
    transition: border-color 0.2s;
}
.arch-cap:hover { border-color: var(--nv-green); }
.arch-cap--accent { background: #edf6ef; border-color: rgba(107,180,118,0.3); color: #111614; }
.arch-cap svg { width: 16px; height: 16px; fill: var(--nv-green); flex-shrink: 0; }

.arch-security {
    background: var(--nv-gray-light); border: 1.5px solid var(--nv-border); border-radius: 14px; overflow: hidden;
}
.arch-security__label {
    padding: 12px 20px;
    font-size: 11px; font-weight: 800; color: #6b7280;
    letter-spacing: 0.1em; text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    border-bottom: 1px solid var(--nv-border); background: #fff;
}
.arch-security__cols { display: flex; }
.arch-security__col { flex: 1; padding: 16px 20px; }
.arch-security__col--no  { border-right: 1px solid #f3f4f6; }
.arch-security__col-head {
    font-size: 11px; font-weight: 700; font-family: 'Manrope', sans-serif; margin-bottom: 10px;
}
.arch-security__col--no  .arch-security__col-head { color: #9ca3af; }
.arch-security__col--yes .arch-security__col-head { color: var(--nv-green-dark); }
.arch-security__col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.arch-security__col ul li {
    font-size: 13px; font-weight: 500; font-family: 'Manrope', sans-serif;
    line-height: 1.4; padding-left: 13px; position: relative;
}
.arch-security__col--no  ul li { color: #9ca3af; }
.arch-security__col--yes ul li { color: #374151; }
.arch-security__col ul li::before {
    content: ''; position: absolute; left: 0; top: 5px;
    width: 5px; height: 5px; border-radius: 50%;
}
.arch-security__col--no  ul li::before { background: #d1d5db; }
.arch-security__col--yes ul li::before { background: var(--nv-green); }

@media (max-width: 900px) {
    .arch-wrap { flex-direction: column; }
    .arch-flow-h { width: 100%; flex-direction: row; align-items: center; }
    .arch-node { flex: 1; }
    .arch-arrow { height: auto; width: 32px; transform: rotate(-90deg); flex-shrink: 0; }
}
@media (max-width: 640px) {
    .arch-flow-h { flex-direction: column; }
    .arch-arrow { transform: none; width: 100%; height: 28px; }
    .arch-security__cols { flex-direction: column; }
    .arch-security__col--no { border-right: none; border-bottom: 1px solid #f3f4f6; }
}

/* ═══════════════════════════════════════
   7 ПРИЗНАКОВ (как в page-3)
═══════════════════════════════════════ */
.signs-list {
    display: flex; flex-direction: column; gap: 0;
    border: 1.5px solid var(--nv-border); border-radius: 18px; overflow: hidden;
}
.sign-item {
    display: flex; align-items: flex-start; gap: 0;
    border-bottom: 1px solid #f3f4f6; transition: background 0.2s;
}
.sign-item:last-child { border-bottom: none; }
.sign-item:hover { background: #f9fdf9; }
.sign-item--accent { background: var(--nv-green-light); }
.sign-item--accent:hover { background: #e5f5e8; }
.sign-item__num {
    width: 64px; flex-shrink: 0;
    padding: 20px 0 20px 24px;
    font-size: 22px; font-weight: 900; color: #e5e7eb;
    font-family: 'Manrope', sans-serif; line-height: 1;
}
.sign-item--accent .sign-item__num { color: rgba(107,180,118,0.3); }
.sign-item__text {
    flex: 1; padding: 20px 24px;
    font-size: 15px; font-weight: 500; color: #374151;
    font-family: 'Manrope', sans-serif; line-height: 1.55;
    border-left: 1px solid #f3f4f6;
}
.sign-item--accent .sign-item__text {
    color: #111614; font-weight: 600; border-left-color: rgba(107,180,118,0.2);
}

/* ═══════════════════════════════════════
   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: 680px; 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; font-family: 'Manrope', sans-serif;
    background: rgba(107,180,118,0.08);
}
.cta__title {
    font-size: clamp(24px, 3vw, 40px); font-weight: 800;
    color: #fff; line-height: 1.2; letter-spacing: -0.025em;
    font-family: 'Manrope', sans-serif; margin-bottom: 20px;
}
.cta__text {
    font-size: 16px; color: rgba(255,255,255,0.45);
    line-height: 1.8; font-family: 'Manrope', sans-serif; margin-bottom: 12px;
}
.cta__actions { margin-top: 32px; }
.cta .btn-green { background: var(--nv-green); }
.cta .btn-green:hover { background: var(--nv-green-dark); }

.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);
    font-family: 'Manrope', sans-serif;
}
.cta__trust-item svg { width: 14px; height: 14px; fill: var(--nv-green); opacity: 0.7; flex-shrink: 0; }

/* ═══════════════════════════════════════
   АДАПТИВ
═══════════════════════════════════════ */
@media (max-width: 640px) {
    .section { padding: 56px 0; }
    .cta { padding: 64px 0; }
    :root { --page-pad: 20px; }
    .hero { padding: 52px 0 60px; }
    .solution-step__signals { flex-direction: column; }
    .solution-step__actions { flex-direction: column; }
    .important-result { padding: 16px 0; }
}


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