/* ===========================================================================
   NotSystem — Стили лендинга
   Композиция компонентов дизайн-системы в обычном CSS (без React).
   =========================================================================== */

/* ============================ УТИЛИТЫ ============================ */
.text-accent { color: var(--accent); }
.ic {
  width: 20px; height: 20px; flex: none; display: block;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Заголовки секций */
.section__head { max-width: 720px; margin: 0 auto var(--space-8); text-align: center; }
.section__title {
  font-size: var(--fs-display-sm);
  margin-top: var(--space-3);
  letter-spacing: var(--ls-tighter);
}
.section__sub { margin-top: var(--space-4); color: var(--text-secondary); font-size: var(--fs-body-lg); }
.section--raised { background: var(--bg-raised); }

/* ============================ КНОПКИ ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: var(--control-md); padding: 0 18px;
  font-family: var(--font-sans); font-size: var(--fs-body); font-weight: var(--fw-semibold);
  line-height: 1; white-space: nowrap; cursor: pointer; border: 1px solid transparent;
  border-radius: var(--radius-lg); text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out), filter var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn .ic { width: 18px; height: 18px; }

.btn--primary { background: var(--accent); color: var(--text-on-accent); box-shadow: var(--shadow-accent); }
.btn--primary:hover { filter: brightness(1.08); color: var(--text-on-accent); }

.btn--secondary { background: var(--surface-raised); color: var(--text-primary); border-color: var(--border-strong); box-shadow: var(--sheen-top); }
.btn--secondary:hover { filter: brightness(1.1); color: var(--text-primary); }

.btn--outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--outline:hover { background: var(--accent-soft); }

.btn--sm { height: var(--control-sm); padding: 0 14px; font-size: var(--fs-sm); border-radius: var(--radius-md); }
.btn--lg { height: var(--control-lg); padding: 0 26px; font-size: var(--fs-body-lg); }
.btn--full { width: 100%; }

/* ============================ БЕЙДЖИ / ТЕГИ ============================ */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  height: 26px; padding: 0 12px; border-radius: var(--radius-pill);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold); line-height: 1;
  font-variant-numeric: tabular-nums; white-space: nowrap;
  background: var(--surface-raised); color: var(--text-secondary);
}
.badge--sm { height: 22px; padding: 0 10px; font-size: var(--fs-xs); }
.badge--accent   { background: var(--accent-soft);   color: var(--accent); }
.badge--positive { background: var(--positive-soft); color: var(--positive); }
.badge--negative { background: var(--negative-soft); color: var(--negative); }
.badge--violet   { background: var(--accent-2-soft); color: var(--violet-300); }
.badge--info     { background: var(--info-soft);     color: var(--info); }

.tag {
  display: inline-flex; align-items: center; height: 32px; padding: 0 14px;
  border-radius: var(--radius-pill); background: var(--surface-inset);
  border: 1px solid var(--border-default); color: var(--text-secondary);
  font-size: var(--fs-sm); font-weight: var(--fw-medium); white-space: nowrap;
}

/* ============================ КАРТОЧКИ ============================ */
.card { position: relative; border-radius: var(--radius-xl); padding: var(--space-5); overflow: hidden; }
.card--solid  { background: var(--surface-card);   border: 1px solid var(--border-subtle);  box-shadow: var(--shadow-sm); }
.card--raised { background: var(--surface-raised);  border: 1px solid var(--border-default); box-shadow: var(--shadow-md), var(--sheen-top); }
.card--glass  {
  background: var(--surface-glass); border: 1px solid var(--border-glass);
  -webkit-backdrop-filter: var(--blur-md); backdrop-filter: var(--blur-md);
  box-shadow: var(--shadow-md), var(--sheen-top);
}
.card--inset  { background: var(--surface-inset); border: 1px solid var(--border-subtle); box-shadow: var(--inset-well); }

/* ============================ НАВИГАЦИЯ ============================ */
.nav {
  position: sticky; top: 0; z-index: 100; height: var(--topbar-h);
  display: flex; align-items: center;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(12, 14, 29, 0.72);
  -webkit-backdrop-filter: var(--blur-md); backdrop-filter: var(--blur-md);
  border-bottom-color: var(--border-subtle);
}
.nav__inner { display: flex; align-items: center; gap: var(--space-5); width: 100%; }
.nav__menu { display: flex; gap: var(--space-5); margin-left: auto; }
.nav__menu a { color: var(--text-secondary); font-weight: var(--fw-medium); font-size: var(--fs-body); }
.nav__menu a:hover { color: var(--text-primary); }
.nav__cta { margin-left: 0; }

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__word { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h3); letter-spacing: var(--ls-tight); color: var(--text-primary); }
.logo__word-accent { color: var(--accent); }

.nav__burger {
  display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px;
  align-items: center; justify-content: center; background: transparent; border: none; cursor: pointer; margin-left: auto;
}
.nav__burger span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================ HERO ============================ */
.hero { padding-top: var(--space-9); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: var(--grad-hero);
}
.hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-8); align-items: center; }
.hero__title {
  font-size: clamp(2.4rem, 5vw, var(--fs-display-lg));
  letter-spacing: var(--ls-tighter); margin: var(--space-4) 0;
}
.hero__lead { color: var(--text-secondary); font-size: var(--fs-body-lg); max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.hero__micro { margin-top: var(--space-4); color: var(--text-muted); font-size: var(--fs-sm); }

.hero__dash { padding: var(--space-5); }
.hero__dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-4); }
.hero__dash-title { font-weight: var(--fw-semibold); color: var(--text-secondary); }
.hero__dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.statcard {
  display: flex; flex-direction: column; gap: 8px; padding: var(--space-4);
  background: var(--surface-inset); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
}
.statcard__label { font-size: var(--fs-sm); color: var(--text-muted); }
.statcard__value { font-family: var(--font-mono); font-size: var(--fs-h2); font-weight: var(--fw-semibold); letter-spacing: -0.02em; }
.statcard .badge { align-self: flex-start; }

/* Подзаголовок секций внутри сводки */
.hero__dash-subhead {
  display: block; margin: var(--space-4) 0 var(--space-2);
  font-size: var(--fs-xs); font-weight: var(--fw-semibold); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--text-muted);
}
.hero__dash-subhead--alert { color: var(--warning); }

/* Автоматические задачи команде */
.dash-tasks, .dash-alerts { display: flex; flex-direction: column; gap: 8px; }
.dash-task, .dash-alert {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  background: var(--surface-inset); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); font-size: var(--fs-sm);
}
.dash-task__check {
  width: 20px; height: 20px; flex: none; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.dash-task__check .ic { width: 13px; height: 13px; stroke-width: 3; }
.dash-task__text { flex: 1; color: var(--text-secondary); }
.dash-task__who {
  font-size: var(--fs-xs); font-weight: var(--fw-semibold); color: var(--violet-300);
  background: var(--accent-2-soft); padding: 3px 9px; border-radius: var(--radius-pill); white-space: nowrap;
}

/* Блок «Важно» — оповещения */
.dash-alert { border-color: color-mix(in srgb, var(--warning) 28%, transparent); }
.dash-alert__dot {
  width: 8px; height: 8px; flex: none; border-radius: 50%;
  background: var(--warning); box-shadow: 0 0 8px var(--warning);
}
.dash-alert__text { color: var(--text-secondary); }
.dash-alert__text b { color: var(--text-primary); font-family: var(--font-mono); }

/* ============================ TRUST-BAR ============================ */
.trustbar { background: var(--bg-raised); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); padding: var(--space-7) 0; }
/* Bento-плитки: широкая акцентная + узкие, зеркальная асимметрия */
.trustbar__inner { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-4); }
.trustbar__item {
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: var(--space-5) var(--space-6);
  background: var(--surface-raised); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); transition: var(--transition);
}
.trustbar__item:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.trustbar__item:nth-child(1) { grid-column: span 4; background: var(--accent-soft); border-color: var(--accent-ring); }
.trustbar__item:nth-child(2) { grid-column: span 2; }
.trustbar__item:nth-child(3) { grid-column: span 2; }
.trustbar__item:nth-child(4) { grid-column: span 4; }
.trustbar__num { display: block; font-family: var(--font-mono); font-size: var(--fs-display-sm); font-weight: var(--fw-semibold); color: var(--accent); letter-spacing: -0.02em; }
.trustbar__label { display: block; margin-top: 2px; color: var(--text-muted); font-size: var(--fs-sm); }

/* ============================ ПАКЕТЫ ============================ */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); align-items: stretch; }
.plan { display: flex; flex-direction: column; padding: var(--space-5); }
.plan--featured { border-color: var(--accent-ring); box-shadow: var(--shadow-lg), var(--shadow-accent); }
.plan--featured::before {
  content: ''; position: absolute; width: 260px; height: 260px; top: -130px; right: -90px;
  border-radius: 50%; background: var(--glow-green); pointer-events: none;
}
.plan__badge {
  align-self: flex-start; margin-bottom: var(--space-3);
  background: var(--accent); color: var(--text-on-accent);
  font-size: var(--fs-xs); font-weight: var(--fw-bold); padding: 5px 12px; border-radius: var(--radius-pill);
  letter-spacing: var(--ls-wide); position: relative; z-index: 1;
}
.plan__name { font-size: var(--fs-h2); position: relative; z-index: 1; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin: var(--space-4) 0; font-family: var(--font-mono); position: relative; z-index: 1; }
.plan__from { font-family: var(--font-sans); font-size: var(--fs-sm); color: var(--text-muted); }
.plan__price .num { font-size: var(--fs-display-sm); font-weight: var(--fw-semibold); color: var(--text-primary); }
.plan__per { font-family: var(--font-sans); font-size: var(--fs-body); color: var(--text-muted); }
.plan__result { color: var(--text-secondary); font-size: var(--fs-sm); margin-bottom: var(--space-5); position: relative; z-index: 1; min-height: 54px; }
.plan__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-6); flex: 1; position: relative; z-index: 1; }
.plan__list li { position: relative; padding-left: 26px; color: var(--text-secondary); font-size: var(--fs-body); }
.plan__list li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 16px; height: 16px;
  background: var(--accent-soft); border-radius: 50%;
  -webkit-mask: no-repeat center / 11px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2351FAAA' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask: no-repeat center / 11px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2351FAAA' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-color: var(--accent);
}
.plan .btn { position: relative; z-index: 1; }

/* Блок допуслуг внутри карточки тарифа */
.plan__addons { position: relative; z-index: 1; margin: 0 0 var(--space-5); padding-top: var(--space-4); border-top: 1px solid var(--border-hairline); }
.plan__addons-title { display: block; font-size: var(--fs-xs); font-weight: var(--fw-semibold); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--space-3); }
.plan__addons-list { display: flex; flex-direction: column; gap: 7px; }
.plan__addons-list li { display: flex; justify-content: space-between; gap: 10px; font-size: var(--fs-sm); color: var(--text-secondary); }
.plan__addons-list li b { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--text-muted); white-space: nowrap; }
.plan__addons-list li b.text-accent { color: var(--accent); }

.addons { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3); margin-top: var(--space-6); justify-content: center; }
.addons__label { color: var(--text-muted); font-size: var(--fs-sm); font-weight: var(--fw-semibold); }
.addons__note { color: var(--text-muted); font-size: var(--fs-sm); text-align: center; margin-top: var(--space-5); }

/* ============================ КАЛЬКУЛЯТОР ============================ */
.calc { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: var(--space-5); align-items: start; }
.calc__config { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-6); }
.calc__group { display: flex; flex-direction: column; gap: var(--space-3); }
.calc__group-title { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--text-secondary); }

.calc__presets { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.preset {
  padding: 8px 16px; border-radius: var(--radius-pill); cursor: pointer;
  background: var(--surface-inset); border: 1px solid var(--border-default); color: var(--text-secondary);
  font-family: var(--font-sans); font-size: var(--fs-sm); font-weight: var(--fw-medium); transition: var(--transition);
}
.preset:hover { border-color: var(--border-strong); color: var(--text-primary); }
.preset.is-active { background: var(--accent-soft); border-color: var(--accent-ring); color: var(--accent); }

.radio, .check {
  display: flex; align-items: center; gap: var(--space-3); padding: 12px 14px; cursor: pointer;
  background: var(--surface-inset); border: 1px solid var(--border-default); border-radius: var(--radius-md);
  transition: var(--transition); font-size: var(--fs-body);
}
.radio:hover, .check:hover { border-color: var(--border-strong); }
.radio input, .check input { accent-color: var(--accent); width: 18px; height: 18px; flex: none; }
.radio span, .check > span:not(.counter) { flex: 1; color: var(--text-primary); }
.radio b, .check b { font-family: var(--font-mono); color: var(--text-muted); font-size: var(--fs-sm); white-space: nowrap; }
.radio:has(input:checked), .check:has(input:checked) { border-color: var(--accent-ring); background: var(--accent-soft); }
.check__note { font-style: normal; font-size: var(--fs-xs); color: var(--accent); font-weight: var(--fw-semibold); margin-left: 4px; }
.calc__hint { color: var(--text-muted); font-size: var(--fs-xs); line-height: var(--lh-normal); margin-top: var(--space-2); }
/* Допуслуга включена в пакет без доплаты */
.check.is-included b { color: var(--accent); }

.counter { display: inline-flex; align-items: center; gap: 8px; }
.counter__btn {
  width: 26px; height: 26px; border-radius: var(--radius-sm); cursor: pointer;
  background: var(--surface-raised); border: 1px solid var(--border-default); color: var(--text-primary);
  font-size: var(--fs-body); line-height: 1; display: inline-flex; align-items: center; justify-content: center;
}
.counter__btn:hover { border-color: var(--accent); color: var(--accent); }
.counter__val { font-family: var(--font-mono); min-width: 18px; text-align: center; }

.calc__terms { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.term {
  padding: 9px 16px; border-radius: var(--radius-md); cursor: pointer;
  background: var(--surface-inset); border: 1px solid var(--border-default); color: var(--text-secondary);
  font-family: var(--font-sans); font-size: var(--fs-sm); font-weight: var(--fw-medium); transition: var(--transition);
}
.term:hover { border-color: var(--border-strong); color: var(--text-primary); }
.term.is-active { background: var(--accent-soft); border-color: var(--accent-ring); color: var(--accent); }

.input { display: flex; flex-direction: column; gap: 7px; }
.input__label { font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--text-secondary); }
.input input, .input select {
  height: var(--control-md); padding: 0 14px; width: 100%;
  background: var(--surface-inset); border: 1px solid var(--border-default); border-radius: var(--radius-md);
  color: var(--text-primary); font-family: var(--font-sans); font-size: var(--fs-body);
  box-shadow: var(--inset-well); transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.input input::placeholder { color: var(--text-faint); }
.input input:focus, .input select:focus { outline: none; border-color: var(--accent); box-shadow: var(--focus-ring); }
.input select { -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23616083' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 38px;
}
.input select option { background: var(--neutral-150); }

/* Итог калькулятора */
.calc__total { padding: var(--space-6); position: sticky; top: calc(var(--topbar-h) + var(--space-4)); display: flex; flex-direction: column; gap: var(--space-3); }
.calc__row { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-3); color: var(--text-secondary); }
.calc__row b { font-family: var(--font-mono); color: var(--text-primary); }
.calc__row--muted { color: var(--text-muted); font-size: var(--fs-sm); }
.calc__row--muted b { color: var(--text-muted); }
.calc__row--big { font-size: var(--fs-body-lg); color: var(--text-primary); font-weight: var(--fw-semibold); }
.calc__row--big b { font-size: var(--fs-h1); }
.calc__divider { height: 1px; background: var(--border-default); margin: var(--space-2) 0; }
.calc__avg { color: var(--text-muted); font-size: var(--fs-sm); text-align: right; font-family: var(--font-mono); }
.calc__note { color: var(--text-faint); font-size: var(--fs-xs); line-height: var(--lh-normal); }
.calc__total .btn { margin-top: var(--space-3); }

/* ============================ О КОМПАНИИ ============================ */
.about__inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--space-8); align-items: center; }
.about__copy .section__title { text-align: left; margin-top: var(--space-3); }
.about__text { color: var(--text-secondary); font-size: var(--fs-body-lg); margin-top: var(--space-4); }
.about__stats { display: flex; flex-wrap: wrap; gap: var(--space-5); margin-top: var(--space-6); }
.ministat { display: flex; flex-direction: column; gap: 4px; }
.ministat b { font-family: var(--font-mono); font-size: var(--fs-h1); color: var(--accent); }
.ministat span { color: var(--text-muted); font-size: var(--fs-sm); max-width: 200px; }

.about__visual { display: flex; justify-content: center; }
.rings { position: relative; width: 260px; height: 260px; display: flex; align-items: center; justify-content: center; }
.rings__ring { position: absolute; border-radius: 50%; border: 1.5px solid var(--border-strong); }
.rings__ring--1 { inset: 0; border-top-color: var(--accent); animation: spin 14s linear infinite; }
.rings__ring--2 { inset: 32px; border-right-color: var(--violet-400); animation: spin 10s linear infinite reverse; }
.rings__ring--3 { inset: 64px; border-bottom-color: var(--magenta-400); animation: spin 7s linear infinite; }
.rings__core {
  width: 110px; height: 110px; border-radius: var(--radius-2xl);
  background: var(--surface-glass); border: 1px solid var(--border-glass);
  -webkit-backdrop-filter: var(--blur-md); backdrop-filter: var(--blur-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: var(--fw-extra); font-size: 2rem; color: var(--accent);
  box-shadow: var(--shadow-accent);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================ 6 БЛОКОВ (bento) ============================ */
.blocks {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(210px, auto);
  grid-auto-flow: dense;
  gap: var(--space-4);
}
.block { display: flex; flex-direction: column; gap: var(--space-3); transition: var(--transition); }
.block:hover { transform: translateY(-3px); border-color: var(--border-strong); }

/* Bento-раскладка: широкая «геройская», высокая на 2 ряда, остальные — разного размера */
.block:nth-child(1) { grid-column: span 4; }               /* Поставки — широкая */
.block:nth-child(2) { grid-column: span 2; grid-row: span 2; } /* Реклама — высокая */
.block:nth-child(3) { grid-column: span 2; }               /* Юнит-экономика */
.block:nth-child(4) { grid-column: span 2; }               /* Банан */
.block:nth-child(5) { grid-column: span 3; }               /* Задачи */
.block:nth-child(6) { grid-column: span 3; }               /* Отчёты */

/* Акцентная «геройская» карточка */
.block--feature { justify-content: space-between; }
.block--feature .block__title { font-size: var(--fs-h2); }
.block--feature .block__text { font-size: var(--fs-body-lg); max-width: 46ch; }

/* Высокая карточка: мини-виз заполняет вертикаль */
.block--tall { justify-content: flex-start; }
.block__spark { display: flex; align-items: flex-end; gap: 6px; height: 72px; margin-top: auto; }
.block__spark span {
  flex: 1; border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--magenta-400), color-mix(in srgb, var(--magenta-400) 20%, transparent));
  height: var(--h, 40%);
}
.block__icon {
  width: 48px; height: 48px; border-radius: var(--radius-lg); display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: var(--space-2);
}
.block__icon .ic { width: 24px; height: 24px; }
.block__icon--green   { background: var(--accent-soft);   color: var(--accent); }
.block__icon--magenta { background: var(--glow-magenta);  color: var(--magenta-400); }
.block__icon--azure   { background: var(--info-soft);     color: var(--info); }
.block__icon--amber   { background: var(--warning-soft);  color: var(--warning); }
.block__icon--violet  { background: var(--accent-2-soft); color: var(--violet-400); }
.block__title { font-size: var(--fs-h3); font-family: var(--font-display); }
.block__text { color: var(--text-secondary); font-size: var(--fs-body); flex: 1; }
.block .badge { align-self: flex-start; }
.block__badges { display: flex; flex-wrap: wrap; gap: 8px; align-self: flex-start; }
.block__badges .badge { align-self: auto; }

.banana { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: var(--space-2); }
.banana__dot { width: 16px; height: 16px; border-radius: 50%; background: var(--c); box-shadow: 0 0 8px color-mix(in srgb, var(--c) 50%, transparent); }
.banana__label { color: var(--text-muted); font-size: var(--fs-xs); margin-left: 6px; }

/* ============================ ШАГИ (вертикальный таймлайн) ============================ */
.steps {
  position: relative; display: flex; flex-direction: column; gap: var(--space-4);
  max-width: 720px; margin: 0 auto; padding-left: 64px;
}
/* Тонкая соединительная линия в фирменном градиенте */
.steps::before {
  content: ''; position: absolute; left: 23px; top: 28px; bottom: 28px; width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--violet-400) 50%, var(--magenta-400) 100%);
  border-radius: 2px; pointer-events: none;
}
.step {
  position: relative; padding: var(--space-5); border-radius: var(--radius-xl);
  background: var(--surface-card); border: 1px solid var(--border-subtle);
}
/* Номер-узел на линии */
.step__num {
  position: absolute; left: -64px; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--surface-raised); border: 1px solid var(--border-strong);
  font-family: var(--font-mono); font-size: var(--fs-body-lg); font-weight: var(--fw-semibold);
  color: var(--accent); box-shadow: var(--shadow-sm); z-index: 1;
}
.step__title { font-size: var(--fs-h3); margin: 0 0 var(--space-2); }
.step__text { color: var(--text-secondary); font-size: var(--fs-sm); }

/* ============================ КЕЙСЫ (bento) ============================ */
/* Крупная флагманская карточка + две узкие в стопке справа */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(180px, auto); gap: var(--space-4); }
.case { display: flex; flex-direction: column; gap: var(--space-3); }
.case:nth-child(1) { grid-column: span 2; grid-row: span 2; justify-content: center; }
.case:nth-child(1) .case__from { font-size: var(--fs-h1); }
.case:nth-child(1) .case__to { font-size: var(--fs-display-md); }
.case:nth-child(1) .case__arrow { width: 30px; height: 30px; }
.case .badge { align-self: flex-start; }
.case__metric { display: flex; align-items: center; gap: var(--space-3); font-family: var(--font-mono); }
.case__from { font-size: var(--fs-h2); color: var(--text-muted); }
.case__to { font-size: var(--fs-display-sm); color: var(--accent); font-weight: var(--fw-semibold); }
.case__arrow { width: 22px; height: 22px; color: var(--accent); }
.case__label { color: var(--text-muted); font-size: var(--fs-sm); }
.case__text { color: var(--text-secondary); font-size: var(--fs-body); }

/* ============================ ОТЗЫВЫ (bento) ============================ */
/* Две узкие в стопке слева + крупная карточка справа */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(150px, auto); gap: var(--space-4); }
.review { display: flex; flex-direction: column; gap: var(--space-5); margin: 0; }
.review:nth-child(1) { grid-column: 1; grid-row: 1; }
.review:nth-child(2) { grid-column: 1; grid-row: 2; }
.review:nth-child(3) { grid-column: 2 / span 2; grid-row: 1 / span 2; justify-content: center; }
.review:nth-child(3) .review__text { font-size: var(--fs-h2); line-height: var(--lh-snug); color: var(--text-primary); }
.review__text { color: var(--text-secondary); font-size: var(--fs-body-lg); line-height: var(--lh-relaxed); flex: 1; }
.review__author { display: flex; align-items: center; gap: var(--space-3); }
.avatar { width: 44px; height: 44px; border-radius: 50%; flex: none; display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-raised); border: 1px solid var(--border-default); color: var(--text-secondary); font-weight: var(--fw-semibold); font-size: var(--fs-sm); }
.review__meta { display: flex; flex-direction: column; }
.review__meta b { color: var(--text-primary); }
.review__meta span { color: var(--text-muted); font-size: var(--fs-sm); }
.reviews__cta { text-align: center; margin-top: var(--space-8); }

/* ============================ ГАРАНТИЯ + FAQ ============================ */
.faq__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-8); align-items: start; }
.guarantee { padding: var(--space-7); display: flex; flex-direction: column; gap: var(--space-4); position: sticky; top: calc(var(--topbar-h) + var(--space-4)); }
.guarantee .badge { align-self: flex-start; }
.guarantee__title { font-size: var(--fs-h1); }
.guarantee__text { color: var(--text-secondary); font-size: var(--fs-body-lg); }
.guarantee__note { color: var(--text-faint); font-size: var(--fs-sm); }

.faq__head { text-align: left; margin: var(--space-3) 0 var(--space-5); }
.acc { border-bottom: 1px solid var(--border-subtle); }
.acc__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) 0; background: transparent; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: var(--fs-body-lg); font-weight: var(--fw-semibold); color: var(--text-primary);
}
.acc__chev { transition: transform var(--dur-base) var(--ease-out); color: var(--text-muted); flex: none; }
.acc.is-open .acc__chev { transform: rotate(180deg); color: var(--accent); }
.acc__a { overflow: hidden; max-height: 0; transition: max-height var(--dur-slow) var(--ease-out); }
.acc__a p { padding-bottom: var(--space-5); color: var(--text-secondary); font-size: var(--fs-body); }

/* ============================ ФОРМА ЗАЯВКИ ============================ */
.lead { overflow: hidden; }
.lead__bg { position: absolute; inset: 0; z-index: -1; background: var(--grad-hero); }
.lead__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
.lead__copy .section__title { text-align: left; margin: var(--space-3) 0; }
.lead__text { color: var(--text-secondary); font-size: var(--fs-body-lg); }
.lead__points { display: flex; flex-direction: column; gap: 10px; margin-top: var(--space-5); }
.lead__points li { position: relative; padding-left: 26px; color: var(--text-secondary); }
.lead__points li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; border-radius: 50%;
  background-color: var(--accent);
  -webkit-mask: no-repeat center / 11px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask: no-repeat center / 11px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.lead__formwrap { padding: var(--space-6); }
.lead__form { display: flex; flex-direction: column; gap: var(--space-4); }
.lead__privacy { color: var(--text-faint); font-size: var(--fs-xs); text-align: center; }

.lead__success { text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--space-3); padding: var(--space-6) 0; }
.lead__success-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-accent); }
.lead__success-ic .ic { width: 32px; height: 32px; stroke-width: 2.5; }
.lead__success h3 { font-size: var(--fs-h1); }
.lead__success p { color: var(--text-secondary); max-width: 360px; }

/* ============================ ФУТЕР ============================ */
.footer { background: var(--bg-void); border-top: 1px solid var(--border-subtle); padding-top: var(--space-8); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-6); padding-bottom: var(--space-7); }
.footer__slogan { color: var(--text-muted); font-size: var(--fs-sm); margin-top: var(--space-3); }
.footer__nav, .footer__contacts { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__nav a, .footer__contacts a { color: var(--text-secondary); font-size: var(--fs-body); }
.footer__nav a:hover, .footer__contacts a:hover { color: var(--accent); }
.footer__bottom { padding: var(--space-5) 0; border-top: 1px solid var(--border-subtle); color: var(--text-faint); font-size: var(--fs-sm); }

/* ============================ REVEAL-АНИМАЦИИ ============================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
/* лёгкая каскадная задержка для сеток */
.blocks .reveal:nth-child(2), .pricing .reveal:nth-child(2), .cases .reveal:nth-child(2),
.reviews .reveal:nth-child(2), .steps .reveal:nth-child(2), .trustbar .reveal:nth-child(2) { transition-delay: 0.08s; }
.blocks .reveal:nth-child(3), .pricing .reveal:nth-child(3), .cases .reveal:nth-child(3),
.reviews .reveal:nth-child(3), .steps .reveal:nth-child(3), .trustbar .reveal:nth-child(3) { transition-delay: 0.16s; }
.blocks .reveal:nth-child(4), .steps .reveal:nth-child(4), .trustbar .reveal:nth-child(4) { transition-delay: 0.24s; }
.blocks .reveal:nth-child(5) { transition-delay: 0.32s; }
.blocks .reveal:nth-child(6) { transition-delay: 0.40s; }

/* ============================ АДАПТИВ ============================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { order: -1; }
  .calc { grid-template-columns: 1fr; }
  .calc__total { position: static; }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  /* Bento → 2 колонки: широкая карточка на всю ширину, остальные парами */
  .blocks, .cases, .reviews, .trustbar__inner {
    grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(180px, auto);
  }
  .blocks .block, .cases .case, .reviews .review, .trustbar__item {
    grid-column: auto; grid-row: auto;
  }
  .blocks .block:nth-child(1),
  .cases .case:nth-child(1),
  .reviews .review:nth-child(3),
  .trustbar__item:nth-child(1) { grid-column: span 2; }
  .trustbar__item { min-height: auto; }
  .about__inner, .faq__inner, .lead__inner { grid-template-columns: 1fr; }
  .guarantee { position: static; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__menu.is-open {
    display: flex; flex-direction: column; gap: var(--space-4);
    position: absolute; top: var(--topbar-h); left: 0; right: 0; padding: var(--space-5);
    background: rgba(12,14,29,0.96); -webkit-backdrop-filter: var(--blur-md); backdrop-filter: var(--blur-md);
    border-bottom: 1px solid var(--border-subtle); margin-left: 0;
  }
  .trustbar__inner, .pricing, .blocks, .cases, .reviews, .steps { grid-template-columns: 1fr; }
  .blocks .block, .blocks .block:nth-child(1),
  .cases .case, .cases .case:nth-child(1),
  .reviews .review, .reviews .review:nth-child(3),
  .trustbar__item, .trustbar__item:nth-child(1) { grid-column: auto; grid-row: auto; }
  .hero__dash-grid { grid-template-columns: 1fr 1fr; }
  .section__title { font-size: var(--fs-display-sm); }
  .footer__inner { grid-template-columns: 1fr; }
  .addons { justify-content: flex-start; }
}

/* ============================ PREFERS-REDUCED-MOTION ============================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
