/* ================================================
   Узнай своего ребёнка — стили
   Палитра: тёмно-зелёный + терракота + бежевый
   ================================================ */

:root {
  --green:      #3d5a3e;
  --green-dark: #2d4330;
  --green-light:#f0f4f0;
  --terra:      #b85c38;
  --terra-dark: #9a4a2c;
  --beige:      #f7f4ef;
  --beige-dark: #ede8e0;
  --text:       #2c2c2c;
  --text-muted: #6b6b6b;
  --white:      #ffffff;
  --radius:     12px;
  --shadow:     0 2px 16px rgba(0,0,0,0.08);
  --font-accent: 'Unbounded', 'Helvetica Neue', Arial, sans-serif;
  --font-body:   'Golos Text', 'Helvetica Neue', Arial, sans-serif;
}

@font-face {
  font-family: 'Unbounded';
  src: url('/static/fonts/Unbounded-600.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Golos Text — основной шрифт сайта, заменяет Helvetica Neue/Arial.
   Нужны файлы в static/fonts/ (см. инструкцию) — пока их нет, браузер
   молча откатится на Arial из фолбэка ниже, ничего не сломается. */
@font-face {
  font-family: 'Golos Text';
  src: url('/static/fonts/GolosText-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Golos Text';
  src: url('/static/fonts/GolosText-600.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Golos Text';
  src: url('/static/fonts/GolosText-700.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Golos Text';
  src: url('/static/fonts/GolosText-800.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px; /* высота шапки (nav: height: 64px) — иначе якорь прячется под sticky-nav */
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  background: var(--beige);
  color: var(--text);
  line-height: 1.6;
  /* Прижимаем футер к низу экрана на страницах с малым количеством
     контента (например, ввод возраста) — без этого на больших мониторах
     футер оказывался посреди страницы, а не внизу. */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

/* ---- Навигация ---- */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--beige-dark);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.3px;
}

.nav-right { display: flex; align-items: center; gap: 24px; }

.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-muted); font-size: 15px; }
.nav-links a:hover { color: var(--green); text-decoration: none; }

/* ---- Иконка скачивания PDF в шапке ---- */
.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  transition: background 0.15s, transform 0.1s;
  flex-shrink: 0;
}
.nav-icon-btn:hover { background: var(--green-dark); text-decoration: none; transform: translateY(-1px); }
.nav-icon-btn svg { width: 18px; height: 18px; }
.nav-icon-btn.disabled {
  background: var(--beige-dark);
  color: var(--text-muted);
  cursor: default;
  pointer-events: none;
}

/* ---- Кнопки ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.1s;
  text-align: center;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--terra); color: var(--white); }
.btn-secondary { background: var(--green); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--green); color: var(--green); }
.btn-lg { padding: 18px 48px; font-size: 18px; }
.btn-full { width: 100%; }

/* ---- Контейнер ---- */
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 640px; margin: 0 auto; padding: 0 24px; }

/* ---- Hero (лендинг) ---- */
.hero {
  background: var(--green);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}
.hero-kicker {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-accent);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: 18px;
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ---- Секции лендинга ---- */
.section { padding: 64px 0; }
.section-alt { background: var(--white); }

.section-title {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
  color: var(--green-dark);
}

/* Карточки «что вы получите» */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
#ages .card { background: var(--beige); box-shadow: none; }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--green-dark); }
#what .card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
#what .card-head .card-icon { margin-bottom: 0; }
#what .card-head h3 { margin-bottom: 0; }
.card p { font-size: 13px; color: var(--text-muted); }

/* Возрастной бейдж — вместо эмодзи-человечков просто диапазон в кружке */
.age-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* Отдельный блок приватности — обязателен по ТЗ, не прячем в FAQ */
.trust-block {
  background: var(--green-light);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.trust-block .trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-block .trust-icon svg { width: 26px; height: 26px; }
.trust-block h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--green-dark); }
.trust-block p { font-size: 15px; color: var(--text-muted); }

/* Круглая иконка статуса (успех/готово) — вместо эмодзи ✅ 🎉 */
.status-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.status-icon svg { width: 32px; height: 32px; }

/* Шаги «как это работает» */
.steps { display: flex; flex-direction: column; gap: 20px; max-width: 560px; margin: 0 auto; }
.step { display: flex; align-items: flex-start; gap: 20px; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--terra); color: var(--white);
  font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-text h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.step-text p { font-size: 14px; color: var(--text-muted); }

/* CTA-блок */
.cta-block {
  background: var(--terra);
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
}
.cta-block h2 { font-family: var(--font-accent); font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.cta-block p { opacity: 0.85; margin-bottom: 28px; }
.cta-block p.cta-highlight { font-size: 18px; opacity: 0.8; max-width: 560px; margin: 0 auto 28px; }
.cta-block .btn { background: var(--white); color: var(--terra); }

/* ---- Страница теста ---- */
/* justify-content: flex-start (не center!) — принципиально важно.
   Если центрировать по вертикали, то при смене вопроса высота карточки
   меняется (2 варианта ответа против 4, короткий вопрос против длинного),
   и весь блок целиком — включая прогресс-бар — прыгает, чтобы остаться
   по центру экрана. С flex-start всё, что выше списка ответов, стоит на
   фиксированном месте, а меняется в размере только сам список ответов. */
.test-wrap {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 64px 24px 40px;
}

.progress-bar-wrap { width: 100%; max-width: 560px; margin-bottom: 40px; }
.progress-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.progress-bar {
  height: 6px;
  background: var(--beige-dark);
  border-radius: 99px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 99px;
  transition: width 0.4s ease;
}

.back-form { width: 100%; max-width: 560px; margin-top: 16px; text-align: left; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  padding: 8px 16px;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.back-link:hover { background: var(--green-dark); color: var(--white); }
.back-link svg { width: 14px; height: 14px; flex-shrink: 0; }

.question-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow);
}
.question-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--green-dark);
  line-height: 1.4;
  text-wrap: balance;
  /* Небольшой буфер, а не полные 2 строки — иначе на однострочных
     вопросах (их большинство) под текстом остаётся пустой "воздух"
     размером в целую строку. Здесь запас всего в половину строки:
     ощутимо сглаживает скачок на длинных вопросах, но не раздувает
     карточку на коротких. */
  min-height: calc(1.4em * 1.5);
}

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

.answer-btn {
  background: var(--beige);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
  color: var(--text);
}
.answer-btn:hover {
  border-color: var(--green);
  background: var(--green-light);
}
.answer-btn.selected {
  border-color: var(--green);
  background: var(--green-light);
  font-weight: 600;
}

/* ---- Мини-результат ---- */
.result-wrap {
  max-width: 560px;
  margin: 60px auto;
  padding: 0 24px;
}

.profile-badge {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-bottom: 24px;
}
.profile-badge .label { font-size: 13px; opacity: 0.7; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.profile-badge h2 { font-family: var(--font-accent); font-size: 28px; font-weight: 600; margin-bottom: 12px; }
.profile-badge p { opacity: 0.85; font-size: 16px; }

.teaser-text {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

/* ---- Болевые вопросы родителей (главная) ---- */
.pain-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 8px 0;
}
.pain-points li {
  padding: 12px 4px 12px 30px;
  font-size: 16px;
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--green-dark);
  position: relative;
}
.pain-points-title {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  padding: 16px 40px;
  border-radius: var(--radius);
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
.pain-points li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-dark);
}

/* ---- Почему родители выбирают (главная) ---- */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 40px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.why-col-positive { padding-left: 40px; border-left: 1px solid var(--beige-dark); }
.why-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; color: var(--green-dark); }
.why-label-muted { color: var(--text-muted); }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.why-list li { font-size: 15px; color: var(--text); position: relative; padding-left: 26px; }
.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.why-list-muted li { color: var(--text-muted); text-decoration: line-through; text-decoration-color: var(--beige-dark); }
.why-list-muted li::before { content: "\2715"; background: none; color: var(--beige-dark); font-size: 13px; width: auto; height: auto; line-height: 1.4; text-decoration: none; }
.why-list-positive li::before { content: "\2713"; background: var(--green-light); color: var(--green); font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; text-decoration: none; }

.blur-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.blur-block h3 {
  font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--green-dark);
  display: flex; align-items: center; gap: 8px;
}
.blur-block h3 svg { width: 18px; height: 18px; color: var(--terra); flex-shrink: 0; }
.blur-content {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.blur-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(255,255,255,0.95) 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
}

.unlock-card {
  background: var(--terra);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.unlock-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.unlock-card p { opacity: 0.85; margin-bottom: 20px; font-size: 15px; }
.unlock-card .price { font-size: 32px; font-weight: 600; margin-bottom: 20px; }
.unlock-card .btn { background: var(--white); color: var(--terra); }

.features-list { list-style: none; text-align: left; margin-bottom: 20px; }
.features-list li { padding: 6px 0; font-size: 14px; }
.features-list li::before { content: "✓ "; color: var(--white); font-weight: 700; }

/* ---- Страница оплаты ---- */
.form-wrap {
  max-width: 480px;
  margin: 60px auto;
  padding: 0 24px;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-card h1 { font-family: var(--font-accent); font-size: 22px; font-weight: 600; margin-bottom: 8px; color: var(--green-dark); }
.form-card .subtitle { color: var(--text-muted); margin-bottom: 32px; font-size: 15px; }
.form-card .subtitle-age-gate { margin-bottom: 20px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--beige-dark);
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.15s;
  background: var(--beige);
}
.form-group input:focus { outline: none; border-color: var(--green); background: var(--white); }
.form-group .hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.price-block {
  background: var(--beige);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.price-block .label { font-size: 14px; color: var(--text-muted); }
.price-block .amount { font-size: 24px; font-weight: 700; color: var(--terra); }

.privacy-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ---- Успех ---- */
.success-wrap {
  max-width: 480px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}
.success-wrap h1 { font-family: var(--font-accent); font-size: 24px; font-weight: 600; margin-bottom: 12px; color: var(--green-dark); }
.success-wrap p { color: var(--text-muted); margin-bottom: 32px; font-size: 16px; }

/* ---- Отчёт ---- */
.report-wrap {
  max-width: 720px;
  margin: 40px auto;
  padding: 0 24px 80px;
}
.report-header {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.report-header h1 { font-family: var(--font-accent); font-size: 22px; font-weight: 600; margin-bottom: 4px; }
.report-header .meta { opacity: 0.75; font-size: 14px; }
.report-header .report-child-name { font-size: 17px; font-weight: 600; opacity: 0.9; margin: 6px 0 2px; }
.report-header .btn { background: var(--white); color: var(--green); font-size: 14px; padding: 10px 20px; }

.download-report-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 24px;
  background: var(--white);
}
.download-report-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- Диаграмма баллов профиля ---- */
.score-chart {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 40px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.score-chart h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.score-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.score-row:last-child { margin-bottom: 0; }
.score-row .score-label {
  width: 140px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.score-bar-track {
  flex: 1;
  height: 14px;
  background: var(--beige-dark);
  border-radius: 99px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: var(--green);
  border-radius: 99px;
}
.score-row.combined .score-bar-fill { background: var(--terra); }
.score-row.combined .score-label { color: var(--terra-dark); }
.score-row .score-value {
  width: 32px;
  flex-shrink: 0;
  text-align: right;
  font-size: 13px;
  color: var(--text-muted);
}
.score-chart-caption {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--beige-dark);
  font-size: 13px;
  color: var(--text-muted);
}
.score-chart-caption strong { color: var(--green-dark); }

.report-body {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  line-height: 1.8;
}
.report-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--beige-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.report-body h2 .section-icon { display: inline-flex; flex-shrink: 0; margin-right: 10px; color: var(--terra); }
.report-body h2 .section-icon svg { width: 20px; height: 20px; }
.report-body h2:first-child { margin-top: 0; }
.report-body p { margin-bottom: 12px; font-size: 15px; }
.report-body strong { color: var(--green-dark); }
.report-body ul, .report-body ol { margin: 8px 0 12px 20px; padding-left: 4px; }
.report-body ul li, .report-body ol li { margin-bottom: 4px; font-size: 15px; }

/* ---- Футер ---- */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 32px 24px;
  font-size: 13px;
  margin-top: 80px;
}
.cta-block + footer { margin-top: 0; }
footer a { color: rgba(255,255,255,0.7); }

/* ---- Адаптив ---- */
@media (max-width: 600px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .hero { padding: 60px 16px; }
  .section { padding: 40px 0; }
  #ages .card { padding: 18px 16px; }
  #what .card, #faq .card { padding: 18px 16px; }
  #what .card h3, #faq .card h3 { font-size: 14px; margin-bottom: 5px; }
  #what .card p, #faq .card p { font-size: 12px; }
  #what .card-icon { width: 36px; height: 36px; margin-bottom: 0; }
  #what .card-icon svg { width: 18px; height: 18px; }
  .section-title { font-size: 20px; margin-bottom: 28px; }
  .pain-points-title { font-size: 17px; padding: 10px 20px; }
  /* Обычный текст вне карточек — сами карточки (блоки "Что вы получите в
     отчёте", "Для детей от 3 до 14 лет", "Частые вопросы") не трогаем. */
  .hero p { font-size: 15px; }
  .pain-points li { font-size: 14px; }
  .step-text p { font-size: 13px; }
  .cta-block h2 { font-size: 21px; }
  .cta-block p.cta-highlight { font-size: 15px; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .why-card { padding: 28px 20px; }
  .why-col-positive { padding-left: 0; padding-top: 24px; border-left: none; border-top: 1px solid var(--beige-dark); }
  .question-card { padding: 28px 20px; }
  .question-card h2 { font-size: 18px; }
  .features-list li { font-weight: 600; }
  .profile-badge h2 { font-size: 22px; }
  .continue-link-btn { padding: 5px 14px !important; font-size: 12px !important; }
  .unlock-card .btn { font-size: 15px; padding: 16px 32px; }
  .report-header { flex-direction: column; padding: 28px 20px; }
  .download-report-btn { width: 100%; }
  /* Отчёт — самый длинный текстовый экран, ТЗ отдельно требует адаптив
     именно для чтения отчёта с телефона: убираем лишние отступы, чтобы
     на маленьком экране не съедалась половина ширины под текст. */
  .report-body { padding: 24px 20px; }
  .score-chart { padding: 20px 20px; }
  .report-wrap { margin: 20px auto; padding: 0 16px 60px; }
  .score-row .score-label { width: 100px; font-size: 13px; }
  .report-header h1 { font-size: 19px; }
  .report-header .meta { font-size: 13px; }
  .report-header .report-child-name { font-size: 15px; }
  .report-body h2 { font-size: 17px; }
  .report-body h2 .section-icon svg { width: 17px; height: 17px; }
  .report-body p { font-size: 14px; }
  .report-body ul li, .report-body ol li { font-size: 14px; }
  .trust-block { flex-direction: column; padding: 28px 20px; }
  .form-card { padding: 28px 20px; }
  .profile-badge { padding: 28px 20px; }
  .blur-block, .unlock-card { padding: 24px 20px; }
  .blur-block { padding: 16px 18px; margin-bottom: 14px; }
  .blur-block h3 { font-size: 14px; margin-bottom: 6px; }
  .blur-block h3 svg { width: 16px; height: 16px; }
  .blur-content { font-size: 13px; line-height: 1.4; }
  .cta-block { padding: 40px 20px; }
}
