/* ==========================================================================
   FINSCORE — стили сайта
   Порядок разделов: токены → сброс → типовые элементы → блоки страницы → адаптив
   Все цвета и отступы задаются переменными в :root — меняйте только там.
   ========================================================================== */

/* --- Токены ------------------------------------------------------------- */
:root {
  --ink:      #14263e;   /* основной текст */
  --ink-2:    #3d5573;   /* второстепенный текст */
  --accent:   #2f80ed;   /* акцент: кнопки, иконки */
  --accent-d: #1b62c4;   /* акцент при наведении */
  --soft:     #e9f1fc;   /* светлая подложка */
  --soft-2:   #f5f9ff;   /* очень светлая подложка (карточки) */
  --bg:       #fbfcfe;   /* фон страницы */
  --line:     #dde7f3;   /* границы */
  --glow:     #d7e9ff;   /* свечение за 3D-столбиками */
  --glow-2:   rgba(47,128,237,.22);

  /* Цвета столбиков на первом экране: face — лицо, top — верх, side — бок */
  --bar-1-face: #5aa9ff; --bar-1-top: #a8d6ff; --bar-1-side: #2f80ed;
  --bar-2-face: #2f80ed; --bar-2-top: #6fb4ff; --bar-2-side: #1b62c4;
  --bar-3-face: #14263e; --bar-3-top: #2f5a8f; --bar-3-side: #0d1b30;

  --pad-x: clamp(16px, 4vw, 56px);   /* горизонтальные поля страницы */
  --wrap:  1240px;                    /* максимальная ширина контента */
  --radius: 14px;
}

/* --- Сброс и база ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 15px/1.55 'Golos Text', system-ui, -apple-system, 'Segoe UI', sans-serif;
  overflow-x: hidden;
  text-wrap: pretty;
}

h1, h2, h3 { margin: 0; letter-spacing: -.01em; line-height: 1.2; }
h1 { font-size: clamp(29px, 5vw, 46px); font-weight: 900; line-height: 1.13; text-wrap: balance; }
h2 { font-size: clamp(24px, 3.4vw, 32px); font-weight: 900; }
h3 { font-size: 15.5px; font-weight: 700; line-height: 1.35; }
p  { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-d); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
::selection { background: var(--soft); }

/* Иконки: единый стиль обводки для всех SVG */
.ico {
  flex: none;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ico--light { stroke: #fff; }

/* Отступ при переходе по якорю — чтобы заголовок не уезжал под шапку */
[id] { scroll-margin-top: 84px; }

/* --- Кнопки и поля ------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border: none;
  border-radius: 11px;
  font: 700 15.5px 'Golos Text', sans-serif;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-d); color: #fff; }
.btn--primary:active { background: #14509f; }
.btn--primary .ico { stroke: #fff; }

.btn--ghost {
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  padding: 13px 24px;
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--ink); }

.btn--block { width: 100%; }

.input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: 15px 'Golos Text', sans-serif;
  outline: none;
}
.input:focus { border-color: var(--accent); }
.input::placeholder { color: #9db0c4; }
.input:user-invalid { border-color: #d64545; }

/* Ловушка для ботов: человек это поле не видит и не заполняет */
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* --- Шапка -------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
  padding: 12px var(--pad-x);
  background: #ffffffcc;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav__brand { display: flex; align-items: center; gap: clamp(7px, 1vw, 11px); flex: 1 1 auto; min-width: 0; }
.nav__names { min-width: 0; overflow: hidden; }
.nav__name { display: block; font-weight: 900; font-size: clamp(14px, 1.6vw, 17px); letter-spacing: .04em; white-space: nowrap; }
.nav__tagline { display: block; font-size: clamp(8px, .9vw, 10px); letter-spacing: .12em; color: var(--ink-2); text-transform: uppercase; }

.nav__links { display: flex; gap: clamp(12px, 1.6vw, 22px); margin-left: auto; font-weight: 600; font-size: clamp(12.5px, 1.3vw, 14px); color: var(--ink-2); white-space: nowrap; }
.nav__side { display: flex; align-items: center; gap: clamp(7px, 1.4vw, 14px); margin-left: auto; }
.nav__tel { font-weight: 700; font-size: clamp(12px, 1.3vw, 14px); white-space: nowrap; }
.nav__cta { padding: clamp(9px, 1vw, 10px) clamp(12px, 1.6vw, 18px); font-size: clamp(12.5px, 1.3vw, 14px); white-space: nowrap; }
.nav__cta-short { display: none; align-items: center; gap: 7px; }
.nav__call { display: none; width: 36px; height: 36px; border: 1.5px solid var(--line); border-radius: 11px; background: #fff; place-items: center; flex: none; }

/* Логотип: три столбика в круге */
.logo {
  width: clamp(30px, 3.4vw, 40px);
  height: clamp(30px, 3.4vw, 40px);
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 2.5px;
  padding-bottom: clamp(7px, .8vw, 9px);
  flex: none;
}
.logo__bar { width: clamp(4px, .45vw, 5px); border-radius: 3px; }
.logo__bar--1 { height: clamp(6px, .7vw, 8px);   background: #a8c6ee; }
.logo__bar--2 { height: clamp(10px, 1.15vw, 13px); background: var(--accent); }
.logo__bar--3 { height: clamp(13px, 1.6vw, 18px);  background: var(--ink); }

/* --- Переключатель языка ------------------------------------------------ */
.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 11px; border: none; border-radius: 8px;
  background: var(--soft); color: var(--ink);
  font: 700 13px 'Golos Text', sans-serif; cursor: pointer;
}
.lang__flag { width: 20px; height: 20px; border-radius: 50%; overflow: hidden; display: block; flex: none; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.lang__chev { stroke: var(--ink-2); }
.lang__menu {
  position: absolute; top: calc(100% + 6px); right: 0; z-index: 20;
  display: flex; flex-direction: column; gap: 2px;
  min-width: 168px; padding: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: 11px;
  box-shadow: 0 14px 34px rgba(20,38,62,.14);
}
.lang__menu[hidden] { display: none; }
.lang__opt {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border: none; border-radius: 8px;
  background: none; color: var(--ink); cursor: pointer;
  font: 600 13.5px 'Golos Text', sans-serif; text-align: left;
}
.lang__opt:hover { background: var(--soft-2); }
.lang__opt[aria-selected="true"] { background: var(--soft); font-weight: 700; }
.lang__opt span:nth-child(2) { flex: 1; }

/* --- Секции ------------------------------------------------------------- */
.section { padding: clamp(40px, 6vw, 68px) var(--pad-x); }
.section--white { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--flush { padding-top: 0; }
.wrap { max-width: var(--wrap); margin: 0 auto; }
.wrap--narrow { max-width: 780px; }
.section__sub { color: var(--ink-2); margin-top: 10px; }
.section h2 + .grid, .section__sub + .grid, .section h2 + .steps { margin-top: 34px; }

.grid { display: grid; gap: 18px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* --- Первый экран ------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(34px, 6vw, 68px) var(--pad-x) clamp(30px, 5vw, 56px);
}
.hero__text { animation: fade-up .6s ease both; }
.hero__sub { font-size: 17px; color: var(--ink-2); margin: 20px 0 30px; max-width: 520px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__note { display: flex; align-items: center; gap: 7px; margin-top: 16px; font-size: 13px; color: var(--ink-2); }

.hero__art {
  position: relative;
  height: clamp(300px, 44vw, 420px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(60% 55% at 55% 40%, var(--glow) 0%, rgba(255,255,255,0) 72%);
  animation: fade-up .6s .15s ease both;
}
.hero__glow {
  position: absolute; width: 330px; height: 330px; border-radius: 50%;
  background: radial-gradient(circle, var(--glow-2), transparent 65%);
  animation: pulse 6s ease-in-out infinite;
}

/* 3D-столбики: сцена задаёт перспективу, .bars — наклон, .bar — рост */
.bars__scene { perspective: 1100px; }
.bars { position: relative; width: 300px; height: 268px; transform-style: preserve-3d; animation: tilt 14s ease-in-out infinite; }
.bar { position: absolute; bottom: 0; width: 66px; transform-style: preserve-3d; contain: layout; }
.bar__face, .bar__side, .bar__top, .bar__shadow { position: absolute; backface-visibility: hidden; }
.bar__face  { inset: 0; border-radius: 12px; transform: translateZ(46px); box-shadow: 0 22px 40px rgba(20,38,62,.18); }
.bar__side  { top: 0; left: 100%; width: 46px; height: 100%; transform-origin: left center; transform: rotateY(-90deg); }
.bar__top   { top: 0; left: 0; width: 100%; height: 46px; border-radius: 12px 12px 0 0; transform-origin: top center; transform: rotateX(90deg); }
.bar__shadow{ top: 100%; left: 0; width: 100%; height: 52px; border-radius: 0 0 12px 12px; opacity: .22; transform: translateZ(46px) scaleY(-1); transform-origin: top center; }

.bar--1 { left: 14px;  animation: grow-1 5.2s ease-in-out infinite; }
.bar--2 { left: 112px; animation: grow-2 5.2s ease-in-out infinite .5s; }
.bar--3 { left: 210px; animation: grow-3 5.2s ease-in-out infinite 1s; }

.bar--1 .bar__face { background: linear-gradient(180deg, var(--bar-1-top), var(--bar-1-face)); }
.bar--1 .bar__side { background: var(--bar-1-side); }
.bar--1 .bar__top  { background: var(--bar-1-top); }
.bar--1 .bar__shadow { background: linear-gradient(180deg, var(--bar-1-face), transparent); }

.bar--2 .bar__face { background: linear-gradient(180deg, var(--bar-2-top), var(--bar-2-face)); }
.bar--2 .bar__side { background: var(--bar-2-side); }
.bar--2 .bar__top  { background: var(--bar-2-top); }
.bar--2 .bar__shadow { background: linear-gradient(180deg, var(--bar-2-face), transparent); }

.bar--3 .bar__face { background: linear-gradient(180deg, var(--bar-3-top), var(--bar-3-face)); }
.bar--3 .bar__side { background: var(--bar-3-side); }
.bar--3 .bar__top  { background: var(--bar-3-top); }
.bar--3 .bar__shadow { background: linear-gradient(180deg, var(--bar-3-face), transparent); }

/* --- Цифры -------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { background: var(--soft-2); padding: 24px var(--pad-x); }
.stat__value { font-size: clamp(24px, 3vw, 30px); font-weight: 900; }
.stat__label { font-size: 13.5px; color: var(--ink-2); margin-top: 3px; }

/* --- Карточки ----------------------------------------------------------- */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 10px 28px rgba(20,38,62,.09); transform: translateY(-2px); }
.card--tinted { background: var(--soft-2); }
.card h3 { margin-bottom: 7px; }
.card p { font-size: 13.5px; color: var(--ink-2); }

.card__mark {
  width: 40px; height: 40px; margin-bottom: 12px;
  border-radius: 10px; background: var(--soft);
  display: grid; place-items: center;
  color: var(--accent-d); font-weight: 900; font-size: 22px;
}
.card__icon {
  width: 44px; height: 44px; margin-bottom: 14px;
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
  display: grid; place-items: center;
}
.badge {
  position: absolute; top: 18px; right: 18px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
}
.badge:empty { display: none; }

.bridge {
  display: flex; align-items: center; gap: 13px;
  margin-top: 30px; padding: 18px 24px;
  background: var(--soft); border-radius: 13px;
  font-weight: 600; font-size: 15.5px;
}

/* --- Этапы -------------------------------------------------------------- */
.steps { gap: clamp(18px, 2.4vw, 34px); }
.step { display: flex; flex-direction: column; gap: 18px; }
.step__head { display: flex; align-items: center; gap: 14px; }
.step__num {
  width: 54px; height: 54px; flex: none;
  border-radius: 50%; background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-weight: 900; font-size: 19px;
  box-shadow: 0 8px 22px rgba(20,38,62,.16);
}
.step__line { flex: 1; height: 2px; background: var(--line); }
.step__line--last { background: transparent; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-2); }

/* --- Тёмный блок «почему мы» ------------------------------------------- */
.panel {
  background: var(--ink); color: #fff;
  border-radius: 20px;
  padding: clamp(26px, 4.5vw, 52px) clamp(22px, 4.5vw, 52px) clamp(26px, 4vw, 46px);
}
.panel__top {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 48px); align-items: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.panel__big { font-size: clamp(31px, 4.4vw, 44px); font-weight: 900; line-height: 1.1; }
.panel__text { opacity: .75; margin-top: 10px; font-size: 15px; max-width: 420px; }
.panel__quote { font-size: clamp(19px, 2.4vw, 24px); font-weight: 700; line-height: 1.35; text-wrap: balance; }
.panel__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: 26px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,.15);
}
.feature__icon {
  width: 40px; height: 40px; margin-bottom: 13px;
  border-radius: 11px; background: rgba(255,255,255,.1);
  display: grid; place-items: center;
}
.feature h3 { margin-bottom: 6px; }
.feature p { font-size: 13.5px; opacity: .72; }

/* --- Команда и списки с галочками -------------------------------------- */
.team__photo { margin: 0 0 26px; }
.team__photo img { border-radius: 18px; }

.ticks { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; font-size: 14.5px; }
.ticks li { display: flex; gap: 11px; align-items: start; }
.ticks .ico { margin-top: 2px; }
.ticks--tight { gap: 10px; font-weight: 600; }
.ticks--tight li { align-items: center; }

/* --- Отзывы ------------------------------------------------------------- */
.stars { color: var(--accent); font-size: 17px; letter-spacing: 2px; margin-bottom: 12px; }
blockquote { margin: 0 0 18px; font-size: 14.5px; line-height: 1.6; }
.person { display: flex; gap: 11px; align-items: center; }
.person__init {
  width: 38px; height: 38px; flex: none;
  border-radius: 50%; background: var(--soft);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px; color: var(--accent-d);
}
.person__name { display: block; font-weight: 700; font-size: 14px; }
.person__role { display: block; font-size: 12.5px; color: var(--ink-2); }

/* --- Блок с формой ------------------------------------------------------ */
.offer {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(26px, 4vw, 56px); align-items: center;
  max-width: var(--wrap); margin: 0 auto;
  background: var(--soft); border-radius: 20px;
  padding: clamp(24px, 4vw, 52px);
}
.offer h2 { font-size: clamp(25px, 3.6vw, 34px); }
.offer .section__sub { margin-bottom: 24px; font-size: 15.5px; }
.formbox { background: #fff; border-radius: 16px; padding: 30px; box-shadow: 0 16px 44px rgba(20,38,62,.10); }
.form { display: flex; flex-direction: column; gap: 13px; }
.form[hidden] { display: none; }
.form__note { font-size: 12px; color: var(--ink-2); text-align: center; }

.or { display: flex; align-items: center; gap: 10px; color: var(--ink-2); font-size: 12.5px; }
.or::before, .or::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.thanks { text-align: center; padding: 26px 6px; }
.thanks__mark {
  width: 54px; height: 54px; margin-bottom: 16px;
  border-radius: 50%; background: var(--soft);
  display: inline-grid; place-items: center;
}
.thanks h3 { font-size: 18px; margin-bottom: 8px; }
.thanks p { font-size: 14px; color: var(--ink-2); }
.thanks .btn { margin-top: 22px; }

/* --- Подвал ------------------------------------------------------------- */
.footer {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 26px var(--pad-x);
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-2);
}
.footer__brand { font-weight: 700; color: var(--ink); letter-spacing: .04em; }
.footer__social { display: flex; gap: 10px; margin-left: auto; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; background: var(--soft); display: grid; place-items: center; }

/* --- Модальное окно ----------------------------------------------------- */
.modal {
  position: fixed; inset: 0; z-index: 40;
  display: grid; place-items: center;
  padding: clamp(12px, 3vw, 32px);
  background: rgba(16,28,45,.55);
  backdrop-filter: blur(4px);
  overflow: auto;
  animation: fade-in .2s ease both;
}
.modal[hidden] { display: none; }
.modal__box {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr;
  width: min(940px, 100%);
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(10,22,40,.35);
  animation: modal-up .32s cubic-bezier(.2,.9,.3,1) both;
}
.modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 36px; height: 36px; border: none; border-radius: 50%;
  background: rgba(16,28,45,.07); color: var(--ink-2);
  font: 700 15px 'Golos Text', sans-serif;
  display: grid; place-items: center; cursor: default; opacity: .75;
  transition: background .15s;
}
.modal__close:hover { background: rgba(16,28,45,.14); }
.modal__close[data-ready] { cursor: pointer; opacity: 1; font-size: 19px; }

.modal__offer { position: relative; padding: clamp(28px, 3.4vw, 44px); background: var(--accent-d); color: #fff; overflow: hidden; }
.modal__blob { position: absolute; top: -90px; right: -80px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.22), transparent 68%); animation: pulse 7s ease-in-out infinite; }
.modal__ring { position: absolute; border: 1.5px dashed rgba(255,255,255,.25); border-radius: 50%; }
.modal__ring--1 { bottom: -60px; left: -50px; width: 180px; height: 180px; animation: spin 26s linear infinite; }
.modal__ring--2 { top: -55px; right: -45px; width: 150px; height: 150px; animation: spin 22s linear infinite reverse; }
.modal__offer-in { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 18px; }
.modal__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 13px; border-radius: 999px; background: rgba(255,255,255,.18);
  font-size: 11.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
}
.modal__kicker i { width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.modal__title { font-size: clamp(24px, 2.7vw, 32px); font-weight: 900; line-height: 1.15; letter-spacing: -.02em; text-wrap: balance; }
.modal__dash { width: 46px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.5); }
.modal__sub { font-size: 15px; opacity: .85; line-height: 1.6; max-width: 360px; }

.modal__form { padding: clamp(28px, 3.4vw, 44px); background: var(--soft-2); display: flex; flex-direction: column; justify-content: center; }
.modal__form h3 { font-size: 21px; font-weight: 900; }
.modal__form-sub { font-size: 13.5px; color: var(--ink-2); margin: 6px 0 20px; }
.modal__alt { display: flex; gap: 10px; }
.modal__alt .btn { flex: 1; padding: 12px 14px; font-size: 14px; }

/* --- Анимации ----------------------------------------------------------- */
@keyframes fade-up  { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes fade-in  { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-up { from { opacity: 0; transform: translateY(22px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes spin     { to { transform: rotate(360deg); } }
@keyframes pulse    { 0%, 100% { opacity: .35; transform: scale(1); } 50% { opacity: .7; transform: scale(1.1); } }
@keyframes tilt     { 0%, 100% { transform: rotateX(6deg) rotateY(-24deg); } 50% { transform: rotateX(6deg) rotateY(-14deg); } }
@keyframes grow-1   { 0%, 100% { height: 36%; } 50% { height: 58%; } }
@keyframes grow-2   { 0%, 100% { height: 62%; } 50% { height: 84%; } }
@keyframes grow-3   { 0%, 100% { height: 82%; } 50% { height: 100%; } }

/* Появление блоков при прокрутке. Класс .js-reveal ставит app.js —
   без JS всё видно сразу. */
.js-reveal .reveal { opacity: 0; transform: translateY(20px); }
.js-reveal .reveal.is-visible { opacity: 1; transform: none; transition: opacity .55s ease, transform .6s cubic-bezier(.2,.8,.25,1); }
.js-reveal .reveal-group > .reveal:nth-child(2) { transition-delay: .07s; }
.js-reveal .reveal-group > .reveal:nth-child(3) { transition-delay: .14s; }
.js-reveal .reveal-group > .reveal:nth-child(4) { transition-delay: .21s; }
.js-reveal .reveal-group > .reveal:nth-child(5) { transition-delay: .28s; }
.js-reveal .reveal-group > .reveal:nth-child(6) { transition-delay: .35s; }

/* --- Адаптив ------------------------------------------------------------ */
@media (max-width: 1120px) {
  .nav__links { display: none; }
}
@media (max-width: 820px) {
  .nav__tel { display: none; }
  .nav__call { display: grid; }
}
@media (max-width: 760px) {
  .modal__box { grid-template-columns: 1fr; }
  .modal__offer { padding: 26px 24px; }
  .modal__close { background: rgba(255,255,255,.18); color: #fff; }
  .modal__close:hover { background: rgba(255,255,255,.32); }
}
@media (max-width: 600px) {
  .nav__tagline, .nav__cta-long { display: none; }
  .nav__cta-short { display: flex; }
  .formbox { padding: 22px; }
}
@media (max-width: 560px) {
  .nav__name { font-size: 11px; letter-spacing: 0; }
  .nav__cta-short span:first-child { display: none; }
  .nav__cta-short { gap: 0; }
}
@media (max-width: 400px) {
  .lang__code { display: none; }
}
@media (max-width: 360px) {
  .lang__chev, .nav__call { display: none; }
}

/* Уважаем системную настройку «меньше движения» */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; }
  .js-reveal .reveal { opacity: 1; transform: none; }
}
