/* EvalCar — лендинг (LAND-1).
   Палитра и размеры — ТЗ (разделы 3–4), вёрстка — по эталону
   docs/design-reference/ (desktop 1160px, mobile 360px), mobile-first.
   Микродвижения по событию — здесь; бесконечные анимации (пульс
   индикатора, idle-дыхание поля) и reveal-логика — в js/landing.js. */

:root {
  --ec-green-900: #14532D;
  --ec-green-600: #0F6E56;
  --ec-green-400: #1D9E75;
  --ec-green-050: #E9F5EF;
  --ec-bg:        #F7FAF8;
  --ec-surface:   #FFFFFF;
  --ec-text:      #1A2B24;
  --ec-text-2:    #4A5A52;
  --ec-text-3:    #6B7A72;
  --ec-border:    #C7D9D0;
  --ec-disabled:  #A9BFB3;
  --ec-status-err:#A32D2D;
}

/* ── База ─────────────────────────────────────────────────────────── */

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ec-bg);
  font-family: 'Golos Text', sans-serif;
  color: var(--ec-text);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1240px;   /* 1160 контента + 2×40 полей */
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

h1, h2 {
  font-family: 'PT Serif', serif;
  font-weight: 700;
  color: var(--ec-text);
  margin: 0;
  text-wrap: balance;
}

a {
  color: var(--ec-green-600);
  text-decoration: none;
}
a:hover {
  color: var(--ec-green-900);
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--ec-green-400);
  outline-offset: 2px;
}

::placeholder { color: var(--ec-text-3); opacity: 1; }

/* ── Блок 1 · Hero ────────────────────────────────────────────────── */

.hero { padding-top: 48px; }

.hero-top {
  display: flex;
  flex-direction: column-reverse; /* мобильный: статус строкой НАД надзаголовком */
  align-items: flex-start;
  gap: 16px;
}

.overline {
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ec-green-600);
  font-weight: 600;
  margin: 0;
}

/* Индикатор статуса сервиса (ТЗ п. 5) */
.status { display: flex; align-items: center; gap: 8px; }

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  display: inline-block;
}
.status-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(29, 158, 117, 0.2);
  animation: statusRing 3s ease-out infinite;
}
.status-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--ec-green-400);
  animation: statusBreath 3s ease-in-out infinite;
}
/* Пульс индикатора — одна из двух разрешённых бесконечных анимаций
   (ТЗ п. 8); ритм 3s синхронен idle-дыханию поля VIN. */
@keyframes statusBreath {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}
@keyframes statusRing {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(3.2); opacity: 0; }
}
/* Технический перерыв: статичный красный круг, без кольца */
.status--err .status-core { background: var(--ec-status-err); animation: none; }
.status--err .status-ring { display: none; }

.status-text { font-size: 13px; line-height: 1.4; color: var(--ec-text-2); }

.hero h1 {
  font-size: 34px;
  line-height: 1.2;
  margin-top: 18px;
  max-width: 980px;
}
.hero h1 .accent { color: var(--ec-green-900); }

.hero-sub {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ec-text-2);
  margin: 16px 0 0;
  max-width: 680px;
  text-wrap: pretty;
}

/* Форма VIN — общий вид для hero и карточки цены */
.vin-form {
  position: relative; /* якорь всплывающей подсказки о раскладке */
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

/* Всплывающая подсказка НАД полем (решение PO 10.08.2026): молчаливый
   фильтр VIN сбивает людей с русской раскладкой; строка под полем на
   телефоне закрыта клавиатурой, поэтому подсказка — сверху. */
.vin-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  max-width: min(100%, 420px);
  background: var(--ec-surface);
  border: 1px solid var(--ec-status-err);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ec-status-err);
  box-shadow: 0 6px 20px rgba(26, 43, 36, 0.12);
  z-index: 10;
}
.vin-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 24px;
  border: 6px solid transparent;
  border-top-color: var(--ec-status-err);
}

.vin-input {
  font-family: 'Golos Text', sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--ec-text);
  background: var(--ec-surface);
  border: 1px solid var(--ec-border);
  border-radius: 8px;
  padding: 0 16px;
  height: 54px;
  width: 100%;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.vin-input:focus {
  border-color: var(--ec-green-400);
  box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.15);
  /* Вход в фокус: свечение 6px с усадкой до статичных 3px за ~350ms */
  animation: vinFocusIn 350ms ease-out;
}
.vin-input:disabled { background: #F0F4F1; }

/* Idle-приглашение: дышит только пустое, ни разу не тронутое поле —
   вторая разрешённая бесконечная анимация; класс снимает JS при первом
   focus/input и при mode=maintenance. */
.vin-input.idle { animation: vinBreath 3s ease-in-out infinite; }

/* Однократный импульс на 17-м знаке (ставится JS одновременно
   с активацией кнопки). Правило ниже :focus — при равной
   специфичности побеждает и перекрывает vinFocusIn. */
.vin-input.pulse { animation: vinPulse 400ms ease; }

@keyframes vinBreath {
  0%, 100% { box-shadow: 0 0 0 0   rgba(29, 158, 117, 0); }
  50%      { box-shadow: 0 0 0 5px rgba(29, 158, 117, 0.12); }
}
@keyframes vinFocusIn {
  0%   { box-shadow: 0 0 0 6px rgba(29, 158, 117, 0.18); }
  100% { box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.15); }
}
@keyframes vinPulse {
  0%   { box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.15); }
  50%  { box-shadow: 0 0 0 6px rgba(29, 158, 117, 0.18); }
  100% { box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.15); }
}

.vin-submit {
  font-family: 'Golos Text', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  height: 54px;
  width: 100%;
  padding: 0 24px;
  background: var(--ec-disabled);
  cursor: default;
  transition: background 200ms ease, transform 150ms ease, box-shadow 200ms ease;
}
/* Кнопка активируется на 17-м знаке (класс ставит JS) */
.vin-submit.ready {
  background: var(--ec-green-900);
  cursor: pointer;
}
.vin-submit.ready:hover {
  background: var(--ec-green-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(20, 83, 45, 0.18);
}
.vin-submit.ready:active { transform: scale(0.98); }

.vin-note {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin: 10px 0 36px;
}
/* text-2, не text-3: аудитория 40–70 лет, подсказка про СТС — самая
   важная строка для них; text-3 на подложках даёт контраст <4,5 AA
   (решение PO 09.08.2026). */
.vin-hint { font-size: 13px; line-height: 1.5; color: var(--ec-text-2); }
.vin-count {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  /* text-2, как у .vin-hint в той же строке (решение PO 09.08.2026);
     сигнал 17-го знака — переход в green-400 классом .full. */
  color: var(--ec-text-2);
  transition: opacity 120ms ease;
}
.vin-count.full { color: var(--ec-green-400); }

/* Лента фактов */
.facts {
  background: var(--ec-green-050);
  border-top: 1px solid var(--ec-border);
}
.facts-grid { display: flex; flex-direction: column; }
.fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ec-border);
}
.fact:last-child { border-bottom: none; }
.fact-value {
  font-family: 'PT Serif', serif;
  font-size: 20px;
  color: var(--ec-green-900);
}
.fact-label { font-size: 13px; color: var(--ec-text-2); }

/* Зачёркнутая базовая цена рядом с промо-ценой (PRICE-1).
   em-размер: масштабируется и в ленте фактов, и в h2 ценового раздела. */
.price-old {
  font-size: 0.72em;
  font-weight: 400;
  color: var(--ec-text-3);
}
/* «промо-цена» не рвётся по дефису (PRICE-1, доп.) */
.nowrap { white-space: nowrap; }

/* ── Секции: общее ────────────────────────────────────────────────── */

.section { padding: 56px 0; }
.section-white { background: var(--ec-surface); }

h2 { font-size: 27px; line-height: 1.25; }

.section-sub {
  font-size: 16px;
  color: var(--ec-text-2);
  margin: 8px 0 0;
}

/* ── Блок 2 · Как это работает ────────────────────────────────────── */

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

/* Карточки некликабельны, но hover-подъём возвращён решением PO
   10.08.2026 (пересмотр LAND-1): подъём читается как «здесь я сейчас
   читаю», а не как кнопка. Только на hover-устройствах; при
   reduced-motion эффект снят целиком (блок в конце файла). */
.step-card {
  background: var(--ec-bg);
  border: 1px solid var(--ec-border);
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(20, 83, 45, 0.10);
  }
}
.step-num {
  font-family: 'PT Serif', serif;
  font-size: 28px;
  color: var(--ec-green-400);
}
.step-title { font-size: 17px; font-weight: 600; }
.step-text { font-size: 15px; line-height: 1.6; color: var(--ec-text-2); }

/* ── Блок 3 · Официальный документ ───────────────────────────────── */

.legal-grid {
  display: flex;
  flex-direction: column-reverse; /* мобильный: титульная страница НАД текстом */
  gap: 36px;
}

.legal-text p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ec-text-2);
  margin: 16px 0 0;
  text-wrap: pretty;
}
.legal-text h2 + p { margin-top: 16px; }

.report-cover {
  display: block;
  width: 240px;
  height: auto;
  aspect-ratio: 210 / 297; /* А4 портрет */
  margin: 0 auto;
  /* Тень и скругление не нужны: композиция «стопка листов» с тенями
     нарисована в самом report-titul.webp (прозрачный фон). */
}

.appraiser-card {
  background: var(--ec-surface);
  border: 1px solid var(--ec-border);
  border-radius: 12px;
  padding: 20px;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.appraiser-photo {
  display: block;
  width: 100%;
  /* Потолок размера задан по ШИРИНЕ (294px × 3/4 = 220px высоты), а не по
     высоте: max-height при width:100% ломал пропорцию 4:3, и object-fit
     срезал макушку/подбородок на ширинах 376–959px (IMG-1). */
  max-width: 294px;
  margin-left: auto;
  margin-right: auto;
  height: auto; /* глушит атрибут height="900", иначе aspect-ratio не работает */
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover; /* кадр не искажается при фикс-размерах десктопа */
}
.appraiser-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ec-text-2);
  margin: 0 !important;
}
.appraiser-text strong { color: var(--ec-text); }

/* Ссылка на /documents в карточке оценщика (LAND-4d) */
.appraiser-docs-link {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ec-text-2);
  margin: 0;
}

/* Компактная строка «фото + текст» включается задолго до десктопа:
   зона 640–959px (landscape-телефоны, промежуточные окна) иначе
   показывала раздутое фото на всю ширину карточки (IMG-1). */
@media (min-width: 640px) {
  .appraiser-card {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    /* LAND-4d: третий ребёнок карточки (.appraiser-docs-link) уходит
       на собственную строку под «фото + текст», а не в третью колонку */
    flex-wrap: wrap;
  }
  .appraiser-photo { width: 160px; height: 120px; flex-shrink: 0; max-width: none; margin-left: 0; margin-right: 0; }
  /* при flex-wrap текст обязан остаться в строке с фото, а не уехать
     на свою: без явного flex он предпочитает max-content и переносится */
  .appraiser-text { flex: 1 1 0; min-width: 0; }
  .appraiser-docs-link { flex-basis: 100%; margin: 0; }
}

/* ── Блок 4 · Когда нужен этот отчёт ─────────────────────────────── */

.check-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.6;
}
.check-icon {
  color: var(--ec-green-400);
  flex-shrink: 0;
  margin-top: 4px;
}

.footnote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ec-text-3);
  border-top: 1px solid var(--ec-border);
  margin: 28px 0 0;
  padding-top: 16px;
  max-width: 720px;
}

/* ── Блок 5 · Цена ────────────────────────────────────────────────── */

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.price-card {
  border: 1px solid var(--ec-border);
  border-radius: 12px;
  padding: 24px 22px;
}

.price-includes { background: var(--ec-surface); }
.price-includes .card-overline {
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ec-green-600);
  font-weight: 600;
  margin: 0;
}
.check-list-tight { gap: 12px; margin-top: 18px; }
.check-list-tight li { font-size: 15.5px; line-height: 1.5; }
.check-list-tight .check-icon { margin-top: 3px; }
.price-includes .footnote { margin-top: 20px; }

.price-start {
  background: var(--ec-green-050);
  order: -1; /* мобильный: «Начните с VIN» — первой */
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.price-start:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 83, 45, 0.08);
}
.start-title {
  font-family: 'PT Serif', serif;
  font-size: 22px;
  color: var(--ec-text);
  margin: 0;
}
.start-sub {
  font-size: 14.5px;
  color: var(--ec-text-2);
  margin: 6px 0 0;
}
.price-start .vin-form { margin-top: 20px; }
.price-start .vin-note { margin: 10px 0 0; }

/* ── Блок 6 · FAQ ─────────────────────────────────────────────────── */

.faq-list {
  border-top: 1px solid var(--ec-border);
  margin-top: 16px;
}

.faq-item { border-bottom: 1px solid var(--ec-border); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span:first-child {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.faq-icon {
  font-size: 24px;
  line-height: 1;
  color: var(--ec-green-600);
  flex-shrink: 0;
  transition: transform 200ms ease;
}
/* «+» поворачивается в «×» */
.faq-item[open] .faq-icon { transform: rotate(45deg); }

.faq-item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ec-text-2);
  margin: 0;
  padding: 0 20px 20px 0;
  overflow: hidden;
  text-wrap: pretty;
  animation: faqIn 250ms ease-out;
}
@keyframes faqIn {
  from { opacity: 0; max-height: 0; }
  to   { opacity: 1; max-height: 320px; }
}

/* ── Блок 7 · Футер ───────────────────────────────────────────────── */

.footer {
  background: var(--ec-green-050);
  border-top: 1px solid var(--ec-border);
  padding: 40px 0 32px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  font-family: 'PT Serif', serif;
  font-size: 19px;
  color: var(--ec-green-900);
  margin: 0 0 10px;
}
/* Логотип-ссылка на главную (LAND-4g): вид логотипа не меняется,
   underline глобального a:hover глушится, hover — цветом в духе
   остальных ссылок футера */
.footer-logo-link {
  color: inherit;
  text-decoration: none;
}
.footer-logo-link:hover {
  color: var(--ec-green-600);
  text-decoration: none;
}
.footer-req {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ec-text-2);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a { font-size: 13.5px; }

.footer-bottom {
  font-size: 12.5px;
  color: var(--ec-text-2); /* text-2: контраст на green-050 (решение PO 09.08.2026) */
  margin: 28px 0 0;
  border-top: 1px solid var(--ec-border);
  padding-top: 14px;
}

/* ── Планшет и шире: форма в строку, лента фактов в колонки ──────── */

@media (min-width: 720px) {
  .vin-form:not(.vin-form-column) {
    flex-direction: row;
    gap: 12px;
    max-width: 660px;
  }
  .vin-form:not(.vin-form-column) .vin-input {
    flex: 1;
    width: auto;
    min-width: 0;
  }
  .vin-form:not(.vin-form-column) .vin-submit {
    width: auto;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .hero .vin-note { max-width: 660px; }

  .facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .fact { padding: 0; border-bottom: none; gap: 4px; }
}

/* ── Десктоп ──────────────────────────────────────────────────────── */

@media (min-width: 960px) {
  .container { padding-left: 40px; padding-right: 40px; }

  .hero { padding-top: 100px; }

  .hero-top {
    flex-direction: row; /* статус — в правом верхнем углу hero */
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }
  .overline { font-size: 15px; letter-spacing: 0.06em; }
  .status-text { font-size: 14px; }

  .hero h1 { font-size: 62px; line-height: 1.12; margin-top: 28px; }
  .hero-sub { font-size: 19px; margin-top: 26px; }

  .hero .vin-form { margin-top: 44px; }
  .vin-input { font-size: 17px; height: 58px; padding: 0 20px; }
  .vin-submit { font-size: 17px; height: 58px; padding: 0 32px; }
  .hero .vin-note { margin: 12px 0 70px; }
  .vin-hint { font-size: 14px; }
  .vin-count { font-size: 14px; }

  .fact-value { font-size: 24px; }
  .fact-label { font-size: 14px; }

  .section { padding: 90px 0; }
  h2 { font-size: 38px; line-height: 1.2; }
  .section-sub { font-size: 18px; margin-top: 12px; }

  .steps {
    display: grid;
    /* LAND-5: четыре шага (добавлена бесплатная справка) */
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
  }
  .step-card { padding: 32px 28px; gap: 12px; }
  .step-num { font-size: 34px; }
  .step-title { font-size: 19px; }
  .step-text { font-size: 16px; }

  .legal-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 72px;
    align-items: start;
  }
  .legal-text p { font-size: 17px; line-height: 1.7; }
  .legal-text h2 + p { margin-top: 24px; }
  .legal-figure { justify-self: end; }
  .report-cover { width: 340px; margin: 0; }
  .appraiser-card { padding: 24px; margin-top: 36px; }
  .appraiser-text { font-size: 15.5px; }

  .check-list { gap: 18px; margin-top: 36px; }
  .check-list li { font-size: 18px; }
  .check-icon { margin-top: 5px; }
  .footnote { font-size: 15px; margin-top: 36px; padding-top: 18px; }

  .price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 44px;
    align-items: stretch;
  }
  .price-card { padding: 36px; }
  .price-start { order: 0; justify-content: center; }
  .price-includes .card-overline { font-size: 15px; }
  .check-list-tight { gap: 14px; margin-top: 22px; }
  .check-list-tight li { font-size: 16.5px; }
  .price-includes .footnote { margin-top: 26px; }
  .start-title { font-size: 26px; }
  .start-sub { font-size: 15.5px; margin-top: 8px; }
  .price-start .vin-form { margin-top: 26px; }
  .price-start .vin-note { margin-top: 12px; }
  .price-start .vin-hint,
  .price-start .vin-count { font-size: 13.5px; }

  .faq-list { margin-top: 24px; max-width: 820px; }
  .faq-item summary { gap: 20px; padding: 22px 0; }
  .faq-item summary > span:first-child { font-size: 18px; }
  .faq-icon { font-size: 26px; }
  .faq-item p { font-size: 16.5px; padding: 0 48px 24px 0; }

  .footer { padding: 56px 0 48px; }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
  }
  .footer-links { justify-self: end; }
  .footer-logo { font-size: 20px; }
  .footer-req { font-size: 14px; }
  .footer-links a { font-size: 14px; }
  .footer-bottom { font-size: 13px; margin-top: 36px; padding-top: 18px; }
}

/* ── Появление секций (IntersectionObserver, JS) ─────────────────── */
/* Начальное скрытие ставит только JS — без JS контент виден сразу. */

@keyframes sectionIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Баннер незавершённого заказа (ORD-7) ─────────────────────────── */

/* Позиция fixed у нижнего края: появление НЕ сдвигает контент
   (решение по месту, ТЗ ORD-7). Показывает landing.js — только при
   черновике заказа в sessionStorage; по умолчанию hidden. */
.resume-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: var(--ec-surface);
  border-top: 1px solid var(--ec-border);
  box-shadow: 0 -6px 24px rgba(26, 43, 36, 0.10);
  padding: 14px 0;
}

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

.resume-banner-text {
  margin: 0;
  font-weight: 600;
  color: var(--ec-text);
}

/* Кнопка — уменьшенный vin-submit в состоянии ready: та же семья,
   но не конкурирует размером с главной целью лендинга (поле VIN). */
.resume-banner-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Golos Text', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  background: var(--ec-green-900);
  border-radius: 8px;
  height: 44px;
  padding: 0 22px;
  text-decoration: none;
  transition: background 200ms ease, transform 150ms ease;
}
.resume-banner-btn:hover {
  color: #FFFFFF;
  background: var(--ec-green-600);
  text-decoration: none;
  transform: translateY(-1px);
}
.resume-banner-btn:active { transform: scale(0.98); }

/* ── prefers-reduced-motion: отключить ВСЁ (ТЗ п. 2) ─────────────── */
/* JS дополнительно не запускает пульс, дыхание и reveal-скрытие,
   так что контент остаётся видимым, а круг индикатора — статичным. */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  /* Подъём карточек шагов — тоже движение: снимаем целиком,
     а не только транзишен (иначе карточка прыгала бы рывком). */
  .step-card:hover {
    transform: none;
    box-shadow: none;
  }
}
