/* ============================================================
   Qadamio — чистый CSS (без Tailwind)
   Токены перенесены один в один из tailwind.config.js
   ============================================================ */

:root {
  /* палитра */
  --ink: #13221B;
  --graphite: #536158;
  --canvas: #F7F9F5;
  --mint: #E8F8ED;

  --brand-50: #EEFDF2;
  --brand-100: #D8F9E1;
  --brand-200: #B4F1C5;
  --brand-300: #82E4A1;
  --brand-400: #48CE77;
  --brand-500: #20B45A;
  --brand-600: #159447;
  --brand-700: #14763C;
  --brand-800: #145F35;
  --brand-900: #124E2E;

  /* тени */
  --shadow-soft: 0 18px 60px rgba(32, 91, 57, 0.10);
  --shadow-card: 0 12px 35px rgba(26, 57, 39, 0.08);
  --shadow-glow: 0 18px 55px rgba(32, 180, 90, 0.22);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

  /* фоны-паттерны */
  --soft-grid: linear-gradient(rgba(22, 84, 48, 0.055) 1px, transparent 1px),
               linear-gradient(90deg, rgba(22, 84, 48, 0.055) 1px, transparent 1px);
  --hero-glow: radial-gradient(circle at 78% 15%, rgba(130, 228, 161, 0.28), transparent 35%),
               radial-gradient(circle at 15% 0%, rgba(216, 249, 225, 0.8), transparent 34%);

  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ---------- база ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
}

::selection { background: var(--brand-200); color: var(--brand-900); }

h1, h2, h3, p, blockquote, figure { margin: 0; }

a { text-decoration: none; color: inherit; }

svg { display: block; }

.page {
  min-height: 100vh;
  background: var(--canvas);
  color: var(--ink);
  padding-bottom: 72px; /* место под мобильный sticky-CTA */
}

/* ---------- служебные ---------- */
.container {
  margin-inline: auto;
  width: 100%;
  max-width: 80rem;
  padding-inline: 20px;
}

.section { padding-block: 64px; }

.section--divider {
  position: relative;
  border-top: 1px solid rgba(180, 241, 197, 0.72);
}

.section--divider::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: min(150px, 42vw);
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--brand-400), transparent);
}

.icon { width: 1.25rem; height: 1.25rem; }
.icon--xs { width: 0.875rem; height: 0.875rem; }
.icon--sm { width: 1rem; height: 1rem; }
.icon--lg { width: 1.5rem; height: 1.5rem; }
.icon--xl { width: 1.75rem; height: 1.75rem; }

.focus-ring:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--canvas), 0 0 0 6px var(--brand-200);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--brand-200);
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 12px;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-700);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-500);
  flex-shrink: 0;
}

.eyebrow--dark {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-200);
  box-shadow: none;
}

.eyebrow__dot--dark { background: var(--brand-300); }

.section-title {
  margin-top: 16px;
  max-width: 48rem;
  font-size: 1.875rem;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.section-title--center { margin-inline: auto; }

.section-copy {
  margin-top: 20px;
  max-width: 48rem;
  font-size: 1rem;
  line-height: 1.75rem;
  color: var(--graphite);
}

.section-copy--center { margin-inline: auto; }

.section-head-center {
  margin-inline: auto;
  max-width: 48rem;
  text-align: center;
}

/* ---------- кнопка ---------- */
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid var(--brand-400);
  background: linear-gradient(to right, var(--brand-500), var(--brand-600));
  padding: 14px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 14px 36px rgba(32, 180, 90, 0.30), inset 0 0 0 1px rgba(130, 228, 161, 0.4);
  transition: transform .3s, box-shadow .3s, background .3s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(to right, var(--brand-600), var(--brand-700));
  box-shadow: 0 20px 60px rgba(32, 180, 90, 0.36), inset 0 0 0 1px rgba(130, 228, 161, 0.4);
}

.btn__arrow { transition: transform .3s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--sm {
  min-height: 0;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 10px 28px rgba(32, 180, 90, 0.28), inset 0 0 0 1px rgba(130, 228, 161, 0.4);
}

.btn--sm:hover {
  box-shadow: 0 16px 40px rgba(32, 180, 90, 0.34), inset 0 0 0 1px rgba(130, 228, 161, 0.4);
}

.btn--full-mobile { width: 100%; }

.btn--sticky {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  padding-block: 12px;
}

/* ---------- логотип ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
}

.logo__mark {
  position: relative;
  display: grid;
  place-items: center;
  height: 36px;
  width: 36px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.logo__dot {
  position: absolute;
  right: -4px;
  top: -4px;
  height: 16px;
  width: 16px;
  border-radius: 999px;
  background: rgba(130, 228, 161, 0.7);
}

.logo__glyph { position: relative; height: 20px; width: 20px; }

.logo__img {
  display: block;
  flex-shrink: 0;
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.logo__text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 40;
}

.header__inner {
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: space-between;
}

.header__cta { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-glow);
  padding-top: 112px;
  padding-bottom: 80px;
}

.hero__grid-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: var(--soft-grid);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 80%);
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero__ring {
  pointer-events: none;
  position: absolute;
  border-radius: 999px;
}

.hero__ring--1 {
  left: -96px;
  top: 128px;
  height: 288px;
  width: 288px;
  border: 1px solid rgba(180, 241, 197, 0.5);
}

.hero__ring--2 {
  left: -48px;
  top: 176px;
  height: 192px;
  width: 192px;
  border: 1px solid rgba(180, 241, 197, 0.4);
}

.hero__inner {
  position: relative;
  display: grid;
  align-items: center;
  gap: 56px;
}

.hero__copy { max-width: 42rem; }

.hero__title {
  margin-top: 24px;
  font-size: 2.6rem;
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.055em;
  color: var(--ink);
}

.hero__title-accent { color: var(--brand-600); }

.quote {
  margin-top: 28px;
  border-left: 2px solid var(--brand-400);
  padding-left: 16px;
}

.quote__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75rem;
  color: var(--ink);
}

.quote__author {
  margin-top: 6px;
  font-size: 0.875rem;
  color: var(--graphite);
}

.hero__lead {
  margin-top: 28px;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.75rem;
  color: var(--graphite);
}

.hero__actions { margin-top: 32px; }

.hero__timer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--graphite);
}

.hero__timer-icon { color: var(--brand-600); }

.hero__note {
  margin-top: 16px;
  max-width: 36rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: rgba(83, 97, 88, 0.9);
}

.hero__perks {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(19, 34, 27, 0.8);
}

.perk { display: flex; align-items: center; gap: 8px; }

.perk__check {
  display: grid;
  place-items: center;
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--brand-100);
  color: var(--brand-700);
}

/* ---------- HERO DASHBOARD ---------- */
.dash {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 590px;
}

.dash__halo {
  position: absolute;
  inset: -32px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(180, 241, 197, 0.4);
  filter: blur(64px);
}

.dash__frame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.dash__screen {
  border-radius: 22px;
  border: 1px solid var(--brand-100);
  background: var(--canvas);
  padding: 16px;
}

.dash__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--brand-100);
  padding-bottom: 16px;
}

.dash__brand { display: flex; align-items: center; gap: 8px; }

.dash__brand-icon {
  display: grid;
  place-items: center;
  height: 36px;
  width: 36px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--brand-600);
  color: #fff;
}

.dash__brand-name { font-size: 0.75rem; font-weight: 600; color: var(--ink); }
.dash__brand-sub { font-size: 0.625rem; color: var(--graphite); }

.dash__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: var(--brand-100);
  padding: 4px 10px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--brand-800);
  white-space: nowrap;
}

.dash__badge-dot {
  height: 6px;
  width: 6px;
  border-radius: 999px;
  background: var(--brand-500);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.dash__cards {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.dash__card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--brand-100);
  background: #fff;
  padding: 16px;
}

.dash__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.dash__card--wait .dash__card-top { align-items: center; }

.dash__label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-700);
}

.dash__value-row {
  margin-top: 4px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.dash__value {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.dash__value--sm { font-size: 1.5rem; line-height: 2rem; }

.dash__value-sub { padding-bottom: 4px; font-size: 0.625rem; color: var(--graphite); }

.dash__chip {
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--brand-50);
  padding: 4px 8px;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--brand-700);
}

.dash__icon-box {
  display: grid;
  place-items: center;
  height: 32px;
  width: 32px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand-700);
}

.dash__wait-label {
  margin-top: 16px;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--graphite);
}

.dash__wait-title { margin-top: 4px; font-size: 0.875rem; font-weight: 600; color: var(--ink); }

.progress {
  margin-top: 12px;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--brand-100);
}

.progress__bar { height: 100%; width: 38%; border-radius: 999px; background: var(--brand-500); }

.dash__card--stage {
  background: var(--brand-900);
  color: #fff;
  border-color: var(--brand-900);
}

.dash__stage-ring { position: absolute; border-radius: 999px; }
.dash__stage-ring--1 { right: -16px; top: -16px; height: 80px; width: 80px; border: 1px solid rgba(130, 228, 161, 0.25); }
.dash__stage-ring--2 { right: 8px; top: 8px; height: 48px; width: 48px; border: 1px solid rgba(130, 228, 161, 0.15); }

.dash__stage-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-200);
}

.dash__stage-head span {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dash__stage-title { margin-top: 16px; font-size: 0.875rem; font-weight: 600; }
.dash__stage-sub { margin-top: 4px; font-size: 0.625rem; line-height: 1rem; color: rgba(255, 255, 255, 0.6); }

.dash__mini {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini {
  border-radius: 12px;
  border: 1px solid var(--brand-100);
  background: #fff;
  padding: 10px 12px;
}

.mini__label { font-size: 0.5625rem; color: var(--graphite); }

.mini__value {
  margin-top: 4px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---------- график активности ---------- */
.chart { margin-top: 16px; }

.chart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chart__title { font-size: 0.75rem; font-weight: 600; color: var(--ink); }
.chart__sub { margin-top: 2px; font-size: 0.625rem; color: var(--graphite); }

.chart__growth {
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--brand-50);
  padding: 4px 10px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--brand-700);
  white-space: nowrap;
}

.chart__svg {
  margin-top: 12px;
  height: 9rem;
  width: 100%;
  overflow: visible;
}

.chart__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.chart__day { font-size: 0.5625rem; color: var(--graphite); }
.chart__day-value { margin-top: 2px; font-size: 0.5625rem; font-weight: 600; color: var(--ink); }

/* ---------- плавающие карточки ---------- */
.dash__float {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.float-card {
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow-card);
  animation: float 6s ease-in-out infinite;
}

.float-card--a {
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.float-card--b {
  border: 1px solid var(--brand-200);
  background: #fff;
  animation-delay: 1.2s;
}

.float-card__row { display: flex; align-items: center; gap: 12px; }

.float-card__icon {
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--brand-100);
  color: var(--brand-700);
}

.float-card__label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--graphite);
}

.float-card__title { font-size: 0.875rem; font-weight: 600; color: var(--ink); }

.donut {
  position: relative;
  display: grid;
  place-items: center;
  height: 44px;
  width: 44px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--brand-50);
}

.donut__svg { height: 36px; width: 36px; transform: rotate(-90deg); }

.donut__label {
  position: absolute;
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--brand-800);
}

/* ============================================================
   ПОЧЕМУ ЭТО ВАЖНО
   ============================================================ */
.importance { position: relative; overflow: hidden; background: #fff; }

.importance__grid-bg {
  position: absolute;
  inset-block: 0;
  right: 0;
  display: none;
  width: 50%;
  background-image: var(--soft-grid);
  background-size: 40px 40px;
  opacity: 0.6;
  -webkit-mask-image: linear-gradient(to left, black, transparent);
  mask-image: linear-gradient(to left, black, transparent);
}

.importance__inner { position: relative; display: grid; gap: 48px; }

.importance__cta { margin-top: 32px; }

.importance__list-wrap { position: relative; }

.importance__line {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 19px;
  width: 1px;
  background: linear-gradient(to bottom, var(--brand-300), var(--brand-200), transparent);
}

.importance__list { display: flex; flex-direction: column; gap: 12px; }

.imp-item {
  position: relative;
  display: flex;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: rgba(247, 249, 245, 0.8);
  padding: 16px;
  transition: border-color .3s, background .3s, box-shadow .3s;
}

.imp-item:hover {
  border-color: var(--brand-200);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.imp-item__num {
  position: relative;
  z-index: 10;
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 4px solid #fff;
  background: var(--brand-100);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-700);
  box-shadow: var(--shadow-sm);
}

.imp-item__body { padding-top: 4px; }

.imp-item__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75rem;
  color: var(--ink);
}

.imp-item__arrow {
  margin-left: auto;
  margin-top: 8px;
  flex-shrink: 0;
  transform: rotate(-45deg);
  color: var(--brand-400);
  opacity: 0;
  transition: transform .3s, opacity .3s;
}

.imp-item:hover .imp-item__arrow { transform: rotate(0); opacity: 1; }

/* ============================================================
   ИНФОРМАЦИОННЫЙ ШУМ
   ============================================================ */
.chaos { position: relative; overflow: hidden; background: #F1F6F2; }

.chaos__blur {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 96px;
  height: 384px;
  width: 384px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(216, 249, 225, 0.8);
  filter: blur(64px);
}

.chaos__inner { position: relative; }

.chaos__wrap {
  position: relative;
  margin-inline: auto;
  margin-top: 48px;
  max-width: 72rem;
}

.chaos__cross-v,
.chaos__cross-h { display: none; }

.chaos__cards { display: grid; gap: 16px; align-items: start; }

.chaos-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform .3s, border-color .3s;
}

.chaos-card:hover { transform: translateY(-4px); border-color: var(--brand-200); }

.chaos-card__num {
  position: absolute;
  right: 20px;
  top: 16px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--brand-100);
}

.chaos-card__body { position: relative; }

.chaos-card__icon {
  display: grid;
  place-items: center;
  height: 44px;
  width: 44px;
  border-radius: 16px;
  background: var(--brand-50);
  color: var(--brand-700);
  transition: background .3s, color .3s;
}

.chaos-card:hover .chaos-card__icon { background: var(--brand-600); color: #fff; }

.chaos-card__title {
  margin-top: 24px;
  padding-right: 56px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.chaos-card__text {
  margin-top: 12px;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: var(--graphite);
}

.chaos__note {
  margin-inline: auto;
  margin-top: 40px;
  max-width: 64rem;
  border-radius: 28px;
  border: 1px solid rgba(180, 241, 197, 0.8);
  background: rgba(255, 255, 255, 0.85);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.chaos__note-inner { display: grid; gap: 20px; }

.chaos__note-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: start;
  border-radius: 999px;
  border: 1px solid var(--brand-200);
  background: var(--brand-50);
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-700);
}

.chaos__note-dot { height: 8px; width: 8px; border-radius: 999px; background: var(--brand-500); flex-shrink: 0; }

.chaos__note-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.chaos__note-text {
  margin-top: 12px;
  max-width: 42rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: var(--graphite);
}

/* ============================================================
   ЧТО ТАКОЕ QADAMIO
   ============================================================ */
.about { background: #fff; }

.about__grid { display: grid; gap: 48px; }

/* таймлайн */
.timeline { position: relative; margin-top: 40px; padding-left: 8px; }

.timeline__line {
  position: absolute;
  top: 28px;
  bottom: 32px;
  left: 21px;
  width: 1px;
  background: var(--brand-200);
}

.timeline__items { display: flex; flex-direction: column; gap: 32px; }

.tl-item { position: relative; display: flex; gap: 16px; }

.tl-item__num {
  position: relative;
  z-index: 10;
  margin-top: 4px;
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 4px solid #fff;
  background: var(--brand-100);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-700);
  box-shadow: var(--shadow-sm);
}

.tl-item__num--active { background: var(--brand-600); color: #fff; }

.tl-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--brand-700);
}

.tl-item__title { margin-top: 6px; font-size: 1.125rem; font-weight: 600; color: var(--ink); }

.tl-item__text {
  margin-top: 8px;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: var(--graphite);
}

/* панель анализа */
.panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--brand-100);
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.panel__blur {
  position: absolute;
  right: -80px;
  top: -80px;
  height: 224px;
  width: 224px;
  border-radius: 999px;
  background: var(--brand-100);
  filter: blur(64px);
}

.panel__inner {
  position: relative;
  border-radius: 22px;
  background: var(--brand-900);
  padding: 20px;
  color: #fff;
}

.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel__label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-300);
}

.panel__title { margin-top: 4px; font-size: 1.125rem; font-weight: 600; }

.panel__icon {
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-200);
}

.panel__callout {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid rgba(130, 228, 161, 0.2);
  background: rgba(32, 180, 90, 0.1);
  padding: 16px;
}

.panel__callout-icon {
  display: grid;
  place-items: center;
  height: 32px;
  width: 32px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(32, 180, 90, 0.2);
  color: var(--brand-200);
}

.panel__callout-title { font-size: 0.875rem; font-weight: 600; }

.panel__callout-text {
  margin-top: 4px;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

.stages { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }

.stage {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
}

.stage--active {
  border-color: rgba(72, 206, 119, 0.45);
  background: rgba(32, 180, 90, 0.12);
}

.stage__connector {
  position: absolute;
  bottom: -12px;
  left: 30px;
  height: 12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stage__num {
  display: grid;
  place-items: center;
  height: 32px;
  width: 32px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.625rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
}

.stage__num--active { background: var(--brand-500); color: #fff; }

.stage__title {
  min-width: 0;
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.stage__title--active { color: #fff; }

.stage__status {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 8px;
  font-size: 0.5625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.stage__status--active { background: rgba(72, 206, 119, 0.2); color: var(--brand-200); }

.panel__bottom {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.panel__box { border-radius: 16px; background: rgba(255, 255, 255, 0.07); padding: 16px; }

.panel__box-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}

.panel__box-value { margin-top: 8px; font-size: 1.5rem; font-weight: 600; }

.panel__bars {
  margin-top: 20px;
  display: flex;
  height: 40px;
  align-items: flex-end;
  gap: 6px;
}

.panel__bars span {
  width: 100%;
  height: 10%;
  border-radius: 4px 4px 0 0;
  background: rgba(255, 255, 255, 0.1);
}

.panel__next {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--brand-500);
  padding: 16px;
}

.panel__next-ring { position: absolute; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.2); }
.panel__next-ring--1 { bottom: -40px; right: -32px; height: 112px; width: 112px; }
.panel__next-ring--2 { bottom: -16px; right: -4px; height: 64px; width: 64px; }

.panel__next-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.panel__next-title { margin-top: 8px; font-size: 1.125rem; font-weight: 600; }

.panel__next-text {
  margin-top: 4px;
  font-size: 0.625rem;
  line-height: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.panel__next-icon { margin-top: 20px; }

/* карточки процесса */
.process { margin-top: 56px; display: grid; gap: 16px; }

.proc-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--brand-100);
  background: var(--canvas);
  padding: 24px;
  transition: transform .3s, background .3s, box-shadow .3s;
}

.proc-card:hover { transform: translateY(-4px); background: #fff; box-shadow: var(--shadow-card); }

.proc-card__icon {
  display: grid;
  place-items: center;
  height: 44px;
  width: 44px;
  border-radius: 16px;
  background: #fff;
  color: var(--brand-700);
  box-shadow: var(--shadow-sm);
  transition: background .3s, color .3s;
}

.proc-card:hover .proc-card__icon { background: var(--brand-600); color: #fff; }

.proc-card__num {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-300);
}

.proc-card__title {
  margin-top: 24px;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.proc-card__text { margin-top: 12px; font-size: 0.875rem; line-height: 1.5rem; color: var(--graphite); }

.about__cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 26px;
  border: 1px solid var(--brand-200);
  background: var(--brand-50);
  padding: 24px;
}

.about__cta-text {
  max-width: 56rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75rem;
  color: var(--ink);
}

.about__cta-btn { flex-shrink: 0; }

/* ============================================================
   ПРОФИЛЬ
   ============================================================ */
.profile { position: relative; overflow: hidden; background: #EEF5F0; }

.profile__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

.profile__ring--1 { height: 520px; width: 520px; border: 1px solid rgba(180, 241, 197, 0.6); }
.profile__ring--2 { height: 340px; width: 340px; border: 1px solid rgba(180, 241, 197, 0.5); }

.profile__inner { position: relative; }

.profile__wrap { position: relative; margin-inline: auto; margin-top: 48px; max-width: 72rem; }

.profile__links { display: none; }

.profile__grid { display: grid; gap: 16px; }

.prof-node {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--brand-100);
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: transform .3s, border-color .3s;
}

.prof-node:hover { transform: translateY(-4px); border-color: var(--brand-300); }

.prof-node__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.prof-node__icon {
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  border-radius: 16px;
  background: var(--brand-50);
  color: var(--brand-700);
}

.prof-node__accent {
  border-radius: 999px;
  background: var(--canvas);
  padding: 4px 10px;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--graphite);
}

.prof-node__title { margin-top: 20px; font-size: 1.125rem; font-weight: 600; color: var(--ink); }
.prof-node__text { margin-top: 8px; font-size: 0.875rem; line-height: 1.5rem; color: var(--graphite); }

.prof-core {
  position: relative;
  order: -1;
  display: grid;
  min-height: 245px;
  place-items: center;
  overflow: hidden;
  border-radius: 30px;
  background: var(--brand-900);
  padding: 28px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.prof-core__grid {
  position: absolute;
  inset: 0;
  background-image: var(--soft-grid);
  background-size: 28px 28px;
  opacity: 0.08;
}

.prof-core__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
}

.prof-core__ring--1 {
  height: 208px;
  width: 208px;
  border: 1px solid rgba(130, 228, 161, 0.2);
  animation: pulseSoft 3.5s ease-in-out infinite;
}

.prof-core__ring--2 { height: 144px; width: 144px; border: 1px solid rgba(130, 228, 161, 0.3); }

.prof-core__body { position: relative; }

.prof-core__icon {
  margin-inline: auto;
  display: grid;
  place-items: center;
  height: 56px;
  width: 56px;
  border-radius: 20px;
  background: var(--brand-500);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.prof-core__label {
  margin-top: 20px;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-300);
}

.prof-core__title { margin-top: 8px; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.03em; }

.prof-core__text {
  margin-inline: auto;
  margin-top: 12px;
  max-width: 210px;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
}

.prof-core__dashes { margin-top: 24px; display: flex; justify-content: center; gap: 6px; }

.prof-core__dashes span {
  height: 6px;
  width: 32px;
  border-radius: 999px;
  background: var(--brand-400);
}

.profile__foot { margin-inline: auto; margin-top: 40px; max-width: 56rem; text-align: center; }

.profile__foot-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75rem;
  color: var(--ink);
}

.profile__foot-cta { margin-top: 28px; }

/* ============================================================
   ДО / ПОСЛЕ
   ============================================================ */
.compare { background: #fff; }

.compare__head { max-width: 56rem; }

.compare__table {
  margin-top: 48px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--brand-100);
  background: var(--canvas);
  box-shadow: var(--shadow-card);
}

.compare__thead { display: none; border-bottom: 1px solid var(--brand-100); }

.compare__th { display: flex; align-items: center; gap: 12px; padding: 20px 28px; }
.compare__th--before { background: rgba(19, 34, 27, 0.035); }
.compare__th--after { background: var(--brand-50); }

.compare__th-dot { height: 10px; width: 10px; border-radius: 999px; }
.compare__th-dot--before { background: #cbd5e1; }
.compare__th-dot--after { background: var(--brand-500); }

.compare__th-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--graphite);
}

.compare__th-label--after { color: var(--brand-800); }

.compare__rows > .compare__row + .compare__row { border-top: 1px solid var(--brand-100); }

.compare__row { display: grid; }

.compare__cell { position: relative; padding: 20px; }
.compare__cell--before { background: rgba(255, 255, 255, 0.5); }
.compare__cell--after { border-top: 1px solid var(--brand-100); background: rgba(238, 253, 242, 0.7); }

.compare__mobile-head {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.compare__mobile-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--graphite);
}

.compare__mobile-label--after { color: var(--brand-700); }

.compare__mobile-num { font-size: 0.75rem; font-weight: 600; color: #cbd5e1; }

.compare__mobile-check {
  display: grid;
  place-items: center;
  height: 24px;
  width: 24px;
  border-radius: 999px;
  background: var(--brand-100);
  color: var(--brand-700);
}

.compare__text { font-size: 0.875rem; line-height: 1.5rem; color: var(--graphite); }
.compare__text--after { font-weight: 500; color: var(--ink); }

.compare__note {
  margin-top: 32px;
  border-radius: 26px;
  border: 1px solid var(--brand-200);
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.compare__note-inner { display: flex; flex-direction: column; gap: 20px; }

.compare__note-icon {
  display: grid;
  place-items: center;
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  border-radius: 16px;
  background: var(--brand-100);
  color: var(--brand-700);
}

.compare__note-title { font-size: 1.125rem; font-weight: 600; color: var(--ink); }

.compare__note-text {
  margin-top: 8px;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: var(--graphite);
}

/* ============================================================
   ФИНАЛЬНЫЙ CTA
   ============================================================ */
.final { background: #fff; padding-top: 64px; padding-bottom: 112px; }

.final__box {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: var(--brand-900);
  padding: 48px 24px;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.final__grid-bg {
  position: absolute;
  inset: 0;
  background-image: var(--soft-grid);
  background-size: 34px 34px;
  opacity: 0.08;
}

.final__blur { position: absolute; border-radius: 999px; filter: blur(64px); }

.final__blur--1 {
  right: -128px;
  top: -160px;
  height: 430px;
  width: 430px;
  background: rgba(32, 180, 90, 0.25);
}

.final__blur--2 {
  bottom: -144px;
  left: -112px;
  height: 320px;
  width: 320px;
  background: rgba(130, 228, 161, 0.1);
}

.final__inner { position: relative; display: grid; align-items: center; gap: 40px; }

.final__title {
  margin-top: 20px;
  font-size: 2.25rem;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.final__text {
  margin-top: 20px;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.final__actions { margin-top: 32px; }

.final__meta {
  margin-top: 12px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* карточка отчёта */
.report { position: relative; margin-inline: auto; width: 100%; max-width: 24rem; }

.report__ring { position: absolute; border-radius: 999px; }
.report__ring--1 { inset: -24px; border: 1px solid rgba(130, 228, 161, 0.1); }
.report__ring--2 { inset: 16px; border: 1px solid rgba(130, 228, 161, 0.15); }

.report__card {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  backdrop-filter: blur(8px);
}

.report__head { display: flex; align-items: center; justify-content: space-between; }

.report__label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-300);
}

.report__title { margin-top: 4px; font-size: 1rem; font-weight: 600; }

.report__icon {
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  border-radius: 16px;
  background: var(--brand-500);
  color: #fff;
}

.report__rows { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

.report__row { display: flex; align-items: center; gap: 12px; }

.report__bullet {
  height: 24px;
  width: 24px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.report__row-name { flex: 1; font-size: 0.875rem; color: rgba(255, 255, 255, 0.55); }
.report__row-state { font-size: 0.625rem; font-weight: 500; color: rgba(255, 255, 255, 0.35); }

.report__next { margin-top: 24px; border-radius: 16px; background: rgba(255, 255, 255, 0.06); padding: 16px; }
.report__next-label { font-size: 0.625rem; color: rgba(255, 255, 255, 0.45); }
.report__next-title { margin-top: 4px; font-size: 0.875rem; font-weight: 500; }

/* ============================================================
   FOOTER + STICKY CTA
   ============================================================ */
.footer { border-top: 1px solid var(--brand-100); background: var(--canvas); padding-block: 32px; }

.footer__inner { display: flex; flex-direction: column; gap: 20px; }

.footer__legal {
  max-width: 36rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: var(--graphite);
}

.sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  border-top: 1px solid var(--brand-100);
  background: rgba(255, 255, 255, 0.92);
  padding: 12px;
  box-shadow: 0 -12px 35px rgba(24, 67, 42, 0.12);
  backdrop-filter: blur(16px);
}

/* ============================================================
   АНИМАЦИИ
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseSoft {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   АДАПТИВ — sm (640px)
   ============================================================ */
@media (min-width: 640px) {
  .container { padding-inline: 28px; }

  .page { padding-bottom: 0; }

  .section { padding-block: 80px; }

  .section-title { font-size: 2.25rem; }
  .section-copy { font-size: 1.125rem; line-height: 2rem; }

  .btn { font-size: 1rem; }
  .btn--full-mobile { width: auto; }

  .header__cta { display: inline-flex; }

  .hero { padding-top: 128px; padding-bottom: 96px; }
  .hero__title { font-size: 3.75rem; }
  .quote__text { font-size: 1.125rem; }
  .hero__lead { font-size: 1.125rem; line-height: 2rem; }
  .hero__note { font-size: 0.875rem; }
  .hero__perks { font-size: 0.875rem; }

  .hero__actions { display: flex; align-items: center; gap: 16px; }
  .hero__timer { margin-top: 0; justify-content: flex-start; }

  .dash__frame { border-radius: 36px; padding: 16px; }
  .dash__screen { border-radius: 28px; padding: 20px; }

  .dash__cards { grid-template-columns: repeat(12, 1fr); }
  .dash__card--main { grid-column: span 8; grid-row: span 2; }
  .dash__card--wait { grid-column: span 4; }
  .dash__card--stage { grid-column: span 4; }

  .mini__value { font-size: 0.75rem; }

  .dash__float { grid-template-columns: repeat(2, 1fr); }
  .float-card { padding: 16px; }

  .imp-item { gap: 20px; padding: 20px; }
  .imp-item__num { height: 48px; width: 48px; }
  .imp-item__body { padding-top: 8px; }
  .imp-item__text { font-size: 1.125rem; }
  .importance__line { left: 25px; }

  .chaos-card { padding: 28px; }
  .chaos-card__num { font-size: 3rem; }
  .chaos-card__text { font-size: 1rem; line-height: 1.75rem; }
  .chaos__wrap { margin-top: 56px; }
  .chaos__note { margin-top: 56px; padding: 32px; }
  .chaos__note-title { font-size: 1.5rem; line-height: 2.25rem; }
  .chaos__note-text { font-size: 1rem; line-height: 1.75rem; }

  .tl-item { gap: 20px; }
  .tl-item__text { font-size: 1rem; line-height: 1.75rem; }

  .panel { padding: 24px; }
  .panel__inner { padding: 24px; }

  .proc-card__text { font-size: 1rem; line-height: 1.75rem; }
  .about__cta { padding: 32px; }
  .about__cta-text { font-size: 1.125rem; }

  .prof-node { padding: 24px; }
  .profile__foot-text { font-size: 1.125rem; }

  .compare__cell { padding: 24px; }
  .compare__text { font-size: 1rem; line-height: 1.75rem; }
  .compare__note { padding: 32px; }
  .compare__note-inner { flex-direction: row; align-items: flex-start; }
  .compare__note-text { font-size: 1rem; line-height: 1.75rem; }

  .final { padding-top: 80px; padding-bottom: 80px; }
  .final__box { padding: 64px 40px; }
  .final__title { font-size: 3rem; }
  .final__text { font-size: 1.125rem; line-height: 2rem; }
  .final__actions { display: flex; align-items: center; gap: 16px; }
  .final__meta { margin-top: 0; text-align: left; }

  .footer__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer__legal { text-align: right; }

  .sticky-cta { display: none; }
}

/* ============================================================
   АДАПТИВ — md (768px)
   ============================================================ */
@media (min-width: 768px) {
  .chaos__cards { grid-template-columns: repeat(2, 1fr); }

  .process { grid-template-columns: repeat(3, 1fr); }

  .compare__thead { display: grid; grid-template-columns: repeat(2, 1fr); }
  .compare__row { grid-template-columns: repeat(2, 1fr); }
  .compare__cell { padding: 24px 28px; }
  .compare__cell--after { border-top: 0; border-left: 1px solid var(--brand-100); }
  .compare__mobile-head { display: none; }
}

/* ============================================================
   АДАПТИВ — lg (1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .container { padding-inline: 40px; }

  .section { padding-block: 112px; }

  .section-title { font-size: 3rem; }

  /* hero */
  .hero { min-height: 820px; padding-top: 144px; padding-bottom: 112px; }
  .hero__inner { grid-template-columns: 0.94fr 1.06fr; gap: 48px; }
  .hero__title { font-size: 4.3rem; }
  .dash { margin-inline: 0; }

  /* важно */
  .importance__grid-bg { display: block; }
  .importance__inner { grid-template-columns: 0.9fr 1.1fr; gap: 80px; }

  /* хаос */
  .chaos__wrap { margin-top: 64px; }
  .chaos__cards { grid-template-columns: repeat(12, 1fr); gap: 24px; }
  .chaos-card--1 { grid-column: span 5; align-self: start; }
  .chaos-card--2 { grid-column: span 7; margin-top: 24px; }
  .chaos-card--3 { grid-column: span 7; margin-top: -8px; }
  .chaos-card--4 { grid-column: span 5; margin-top: 24px; }

  .chaos__cross-v {
    display: block;
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 46%;
    height: 56%;
    width: 1px;
    transform: translate(-50%, -50%);
    background: linear-gradient(to bottom, transparent, var(--brand-200), transparent);
  }

  .chaos__cross-h {
    display: block;
    pointer-events: none;
    position: absolute;
    left: 16%;
    right: 16%;
    top: 46%;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(to right, transparent, var(--brand-200), transparent);
  }

  .chaos__note-inner { grid-template-columns: auto 1fr; align-items: start; gap: 28px; }

  /* about */
  .about__grid { grid-template-columns: 0.92fr 1.08fr; align-items: start; gap: 80px; }
  .process { margin-top: 80px; }

  .about__cta { flex-direction: row; align-items: center; justify-content: space-between; }

  /* профиль */
  .profile__wrap { margin-top: 64px; }
  .profile__links { display: block; pointer-events: none; position: absolute; inset: 0; height: 100%; width: 100%; }

  .profile__grid {
    grid-template-columns: 1fr 280px 1fr;
    grid-template-rows: 1fr 220px 1fr;
    gap: 28px;
  }

  .prof-node--1 { grid-column-start: 1; grid-row-start: 1; }
  .prof-node--2 { grid-column-start: 3; grid-row-start: 1; }
  .prof-node--3 { grid-column-start: 1; grid-row-start: 3; }
  .prof-node--4 { grid-column-start: 3; grid-row-start: 3; }

  .prof-core {
    order: 0;
    grid-column-start: 2;
    grid-row: 1 / span 3;
    min-height: 0;
  }

  /* сравнение */
  .compare__table { margin-top: 64px; }

  /* финал */
  .final { padding-bottom: 96px; }
  .final__box { padding: 80px 64px; }
  .final__title { font-size: 3.75rem; }
  .final__inner { grid-template-columns: 1fr 0.72fr; gap: 64px; }
}
