
/* ═══════════════════════════════════════
   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;
    margin-bottom: 16px;
}
.section-lead {
    font-size: 17px; line-height: 1.8;
    color: #6b7280;
    max-width: 680px;
}

/* ═══════════════════════════════════════
   КНОПКИ
═══════════════════════════════════════ */
.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: #f5f6f5; }
.section--dark  { background: var(--nv-dark); }
.section--dark .section-title { color: #fff; }
.section--dark .section-lead  { color: rgba(255,255,255,0.45); }
.section-header { margin-bottom: 40px; }
.section-header--light .section-title { color: #fff; }
.section-header--light .section-lead  { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════
   HERO — ЭКРАН 1: ПРОБЛЕМА
═══════════════════════════════════════ */
.hero {
    background: #ffffff;
    position: relative; overflow: hidden;
    padding: 64px 0 72px;
    border-bottom: 1px solid #e5e7eb;
}
.hero__pattern {
    position: absolute; inset: 0; z-index: 0;
    opacity: 0.5; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(248,113,113,0.03) 0%, rgba(107,180,118,0.03) 100%);
}
.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;
    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;
    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;
    color: #111614; margin-bottom: 18px;
}
.hero__title em { font-style: normal; color: var(--nv-red); }
.hero__lead {
    font-size: 16px; color: #6b7280;
    line-height: 1.75; margin-bottom: 28px;
    max-width: 480px;
}

/* Timeline визуал в правой колонке */
.hero__right {
    display: flex; flex-direction: column; gap: 0;
}
.hero__timeline {
    position: relative;
    display: flex; flex-direction: column; gap: 0;
}
.hero__tl-step {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 16px 0;
    position: relative;
}
.hero__tl-step::before {
    content: '';
    position: absolute;
    left: 17px; top: 44px; bottom: -16px;
    width: 2px;
    background: #e5e7eb;
}
.hero__tl-step:last-child::before { display: none; }
.hero__tl-step--break::before {
    background: repeating-linear-gradient(to bottom, var(--nv-red) 0, var(--nv-red) 4px, transparent 4px, transparent 8px);
}

.hero__tl-dot {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 14px; font-weight: 900;
}
.hero__tl-dot--ok { background: var(--nv-green-light); color: var(--nv-green-dark); }
.hero__tl-dot--break { background: var(--nv-red-bg); color: var(--nv-red); }
.hero__tl-dot--lost { background: #fef2f2; color: #ef4444; }

.hero__tl-content h4 {
    font-size: 14px; font-weight: 700; color: #111614;
    margin-bottom: 4px; line-height: 1.4;
}
.hero__tl-content p {
    font-size: 12px; color: #9ca3af; line-height: 1.5;
}
.hero__tl-step--break .hero__tl-content h4 { color: var(--nv-red); }
.hero__tl-step--lost .hero__tl-content h4 { color: #ef4444; }

.hero__tl-lost-tag {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 8px; padding: 5px 12px;
    background: #fef2f2; border: 1px solid rgba(248,113,113,0.2);
    border-radius: 8px;
    font-size: 11px; font-weight: 700; color: #ef4444;
    letter-spacing: 0.05em; text-transform: uppercase;
}

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

/* ═══════════════════════════════════════
   ЭКРАН 2 — РЕШЕНИЕ
═══════════════════════════════════════ */
.solution-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.solution-card {
    background: #fff; border: 1.5px solid var(--nv-border);
    border-radius: 16px; padding: 28px 24px;
    transition: border-color 0.25s, transform 0.25s;
}
.solution-card:hover { border-color: var(--nv-green); transform: translateY(-2px); }
.solution-card__ico {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--nv-green-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.solution-card__ico svg { width: 20px; height: 20px; fill: var(--nv-green); }
.solution-card__label {
    font-size: 11px; font-weight: 800; color: var(--nv-green-dark);
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 8px;
}
.solution-card h3 {
    font-size: 18px; font-weight: 700; color: #111614;
    margin-bottom: 8px; line-height: 1.3;
}
.solution-card p {
    font-size: 14px; color: #6b7280; line-height: 1.6;
}
.solution-auto {
    margin-top: 20px;
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--nv-green-light); border: 1px solid rgba(107,180,118,0.3);
    border-radius: 10px; padding: 10px 18px;
    font-size: 14px; font-weight: 700; color: var(--nv-green-dark);
}
.solution-auto svg { width: 16px; height: 16px; fill: var(--nv-green); flex-shrink: 0; }

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

/* ═══════════════════════════════════════
   ЭКРАН 3 — SMS-ВИЗИТКА
═══════════════════════════════════════ */
.vizitka-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
.vizitka-features {
    display: flex; flex-direction: column; gap: 14px;
}
.vizitka-feat {
    display: flex; align-items: flex-start; gap: 14px;
    background: #fff; border: 1.5px solid var(--nv-border);
    border-radius: 14px; padding: 18px 20px;
    transition: border-color 0.2s;
}
.vizitka-feat:hover { border-color: var(--nv-green); }
.vizitka-feat__ico {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--nv-green-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.vizitka-feat__ico svg { width: 16px; height: 16px; fill: var(--nv-green); }
.vizitka-feat span {
    font-size: 14px; font-weight: 600; color: #374151;
    line-height: 1.5; padding-top: 7px;
}

.vizitka-accent {
    background: #111614; border-radius: 14px;
    padding: 20px 24px; margin-top: 8px;
}
.vizitka-accent p {
    font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.65);
    line-height: 1.65;
}
.vizitka-accent strong { color: #fff; }
.vizitka-accent .vizitka-accent__arrow {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 10px;
    font-size: 13px; font-weight: 700; color: var(--nv-green);
}

/* SMS-превью */
.sms-preview {
    background: #f5f6f5;
    border: 1.5px solid var(--nv-border);
    border-radius: 18px;
    padding: 24px;
    position: relative;
}
.sms-preview__label {
    font-size: 10px; font-weight: 800; color: #9ca3af;
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 16px;
}
.sms-bubble {
    background: #fff;
    border: 1.5px solid var(--nv-border);
    border-radius: 14px 14px 14px 4px;
    padding: 18px 20px;
    font-size: 14px; color: #374151; line-height: 1.7;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.sms-bubble strong { color: #111614; font-weight: 700; }
.sms-bubble .sms-line { margin-bottom: 4px; }
.sms-bubble .sms-line:last-child { margin-bottom: 0; }
.sms-time {
    text-align: right; margin-top: 10px;
    font-size: 11px; color: #9ca3af;
}

@media (max-width: 800px) {
    .vizitka-wrap { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   ЭКРАН 5 — SMS-ИЗВИНЕНИЕ
═══════════════════════════════════════ */
.apology-wrap {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}
.apology-right {
    display: flex; flex-direction: column; gap: 16px;
}
.apology-point {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 15px; font-weight: 500; color: #374151; line-height: 1.55;
}
.apology-point__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--nv-green); flex-shrink: 0;
    margin-top: 6px;
}

@media (max-width: 800px) {
    .apology-wrap { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   ЭКРАН 6 — КЛЮЧЕВОЕ УСИЛЕНИЕ
═══════════════════════════════════════ */
.accent-block {
    background: #111614; border-radius: 18px;
    padding: 48px;
    text-align: center;
    position: relative; overflow: hidden;
}
.accent-block::before {
    content: '';
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(107,180,118,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.accent-block__sub {
    font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.3);
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 16px; position: relative;
}
.accent-block h2 {
    font-size: clamp(22px, 2.5vw, 34px); font-weight: 800;
    color: #fff; line-height: 1.25; letter-spacing: -0.02em;
    margin-bottom: 16px; position: relative;
}
.accent-block h2 em { font-style: normal; color: var(--nv-green); }
.accent-block p {
    font-size: 16px; color: rgba(255,255,255,0.45);
    line-height: 1.7; max-width: 560px; margin: 0 auto;
    position: relative;
}

/* ═══════════════════════════════════════
   ЭКРАН 7 — ВНУТРИ КОМПАНИИ
═══════════════════════════════════════ */
.internal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}
.internal-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 24px 22px;
    transition: border-color 0.25s, background 0.25s;
}
.internal-card:hover {
    border-color: rgba(107,180,118,0.35);
    background: rgba(107,180,118,0.06);
}
.internal-card__ico {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(107,180,118,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.internal-card__ico svg { width: 20px; height: 20px; fill: var(--nv-green); }
.internal-card h4 {
    font-size: 15px; font-weight: 700; color: #fff;
    margin-bottom: 6px; line-height: 1.3;
}
.internal-card p {
    font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.55;
}

.internal-results {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    margin-bottom: 20px;
}
.internal-result {
    display: flex; align-items: center; gap: 12px;
    background: rgba(107,180,118,0.08);
    border: 1px solid rgba(107,180,118,0.2);
    border-radius: 12px; padding: 14px 18px;
    font-size: 14px; font-weight: 600; color: #fff;
}
.internal-result svg { width: 16px; height: 16px; fill: var(--nv-green); flex-shrink: 0; }

.internal-note {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 16px 20px;
    font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6;
}
.internal-note strong { color: rgba(255,255,255,0.65); }

@media (max-width: 760px) {
    .internal-grid { grid-template-columns: 1fr; }
    .internal-results { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   ЭКРАН 8 — ПЕРЕЛИНКОВКА
═══════════════════════════════════════ */
.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.link-card {
    background: #fff; border: 1.5px solid var(--nv-border);
    border-radius: 16px; padding: 24px 22px;
    text-decoration: none;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex; flex-direction: column; gap: 12px;
}
.link-card:hover {
    border-color: var(--nv-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(107,180,118,0.12);
}
.link-card__ico {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--nv-green-light);
    display: flex; align-items: center; justify-content: center;
}
.link-card__ico svg { width: 20px; height: 20px; fill: var(--nv-green); }
.link-card h4 {
    font-size: 15px; font-weight: 700; color: #111614; line-height: 1.3;
}
.link-card p {
    font-size: 13px; color: #6b7280; line-height: 1.5;
}
.link-card__arrow {
    margin-top: auto;
    font-size: 13px; font-weight: 700; color: var(--nv-green-dark);
    display: flex; align-items: center; gap: 6px;
}
.link-card__arrow::after {
    content: '→'; transition: transform 0.2s;
}
.link-card:hover .link-card__arrow::after { transform: translateX(4px); }

@media (max-width: 900px) { .links-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .links-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   ЭКРАН 9 — БИЗНЕС-ЭФФЕКТ
═══════════════════════════════════════ */
.effect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}
.effect-item {
    background: #fff; border: 1.5px solid var(--nv-border);
    border-radius: 16px; padding: 24px 22px;
    transition: border-color 0.2s;
}
.effect-item:hover { border-color: var(--nv-green); }
.effect-item__ico {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--nv-green-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.effect-item__ico svg { width: 18px; height: 18px; fill: var(--nv-green); }
.effect-item h4 {
    font-size: 15px; font-weight: 700; color: #111614;
    margin-bottom: 6px; line-height: 1.3;
}
.effect-item p {
    font-size: 13px; color: #6b7280; line-height: 1.55;
}
.effect-conclusion {
    background: #111614; border-radius: 14px;
    padding: 20px 32px; font-size: 16px; font-weight: 600;
    color: rgba(255,255,255,0.65); line-height: 1.6;
}
.effect-conclusion strong { color: #fff; }
.effect-conclusion em { font-style: normal; color: var(--nv-green); }

@media (max-width: 900px) { .effect-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .effect-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   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__title {
    font-size: clamp(24px, 3vw, 38px); font-weight: 800;
    color: #fff; line-height: 1.2; letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.cta__text {
    font-size: 16px; color: rgba(255,255,255,0.45);
    line-height: 1.8; margin-bottom: 0;
}
.cta__actions { margin-top: 32px; margin-bottom: 0; }
.cta .btn-green { background: var(--nv-green); }
.cta .btn-green:hover { background: var(--nv-green-dark); }
.cta__sub {
    margin-top: 16px;
    font-size: 13px; color: rgba(255,255,255,0.3);
}
.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);
}
.cta__trust-item svg {
    width: 14px; height: 14px; fill: var(--nv-green); opacity: 0.7; flex-shrink: 0;
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-list {
    display: flex; flex-direction: column; gap: 0;
    border: 1.5px solid #e5e7eb; border-radius: 18px; overflow: hidden;
}
.faq-item { border-bottom: 1px solid #f3f4f6; }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
    list-style: none; cursor: pointer;
    padding: 20px 28px;
    font-size: 15px; font-weight: 600; color: #111614;
    line-height: 1.5;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    transition: background 0.2s, color 0.2s;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; flex-shrink: 0;
    width: 28px; height: 28px; border-radius: 8px;
    background: #f5f6f5; display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 300; color: #9ca3af;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-align: center; line-height: 28px;
}
.faq-item[open] summary { color: var(--nv-green-dark); background: #f9fdf9; }
.faq-item[open] summary::after { content: '−'; background: #edf6ef; color: var(--nv-green-dark); }
.faq-item summary:hover { background: #f9fdf9; }
.faq-item__a {
    padding: 0 28px 20px 28px;
    font-size: 14px; color: #6b7280; line-height: 1.7;
    background: #f9fdf9;
}

/* ═══════════════════════════════════════
   АДАПТИВ
═══════════════════════════════════════ */
@media (max-width: 640px) {
    .section { padding: 56px 0; }
    .cta { padding: 64px 0; }
    :root { --page-pad: 20px; }
    .hero { padding: 52px 0 60px; }
    .accent-block { padding: 32px 20px; }
}