/**
 * Biotiki Situations — визуальный скин (витрина/страницы ситуаций).
 * По дизайн-референсу test2 (палитра_test2.md + макеты «Главная»/«Все тесты»/«Босс-файт»).
 * Светлая тема, бренд-зелёный #6BCB77 + мягкий #D8F2D7, тёмно-зелёный hero, шрифт Inter.
 */

:root {
  --bsit-bg:      #FFFFFF;   /* фон страницы (белый) */
  --bsit-card:    #FFFFFF;   /* карточки */
  --bsit-ink:     #111111;   /* основной текст */
  --bsit-muted:   #5B6B62;   /* второстепенный текст */
  --bsit-green:   #6BCB77;   /* бренд-зелёный (акценты, кнопки, бейджи) */
  --bsit-green-d: #4FB05B;   /* затемнённый оттенок того же зелёного (ссылки, hover) */
  --bsit-soft:    #D8F2D7;   /* мягкий зелёный (подложки, бейджи) */
  --bsit-dark:    #2E7D4F;   /* тёмно-зелёный hero (осветлённый, в гамме бренда) */
  --bsit-line:    #E4EAE5;   /* границы/линии */
}

/* ---------- База ---------- */
html { scroll-behavior: smooth; }
.biotiki-situations-blank { background: var(--bsit-bg); }
.biotiki-situations-blank .bsit-blank-main {
  max-width: 1180px;
  padding: 0 28px 64px;
  font-family: Inter, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--bsit-ink);
  -webkit-font-smoothing: antialiased;
}
.bsit-page * { box-sizing: border-box; }

/* ---------- Шапка ---------- */
.bsit-header {
  min-height: 98px;
  display: flex; align-items: center; justify-content: space-between;
}
.bsit-brand { display: flex; gap: 10px; align-items: center; text-decoration: none; color: var(--bsit-ink); }
.bsit-brand-logo-full { height: 74px; width: auto; display: block; flex: 0 0 auto; }
.bsit-nav { display: flex; gap: 30px; font-size: 16px; font-weight: 600; }
.bsit-nav a { color: var(--bsit-muted); text-decoration: none; }
.bsit-nav a:hover { color: var(--bsit-green-d); }
/* Бургер (виден только на мобиле) */
.bsit-burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--bsit-line);
  border-radius: 10px; background: #fff; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.bsit-burger span, .bsit-burger span::before, .bsit-burger span::after {
  content: ''; display: block; width: 20px; height: 2px; background: var(--bsit-ink); position: relative;
}
.bsit-burger span::before { position: absolute; top: -6px; }
.bsit-burger span::after { position: absolute; top: 6px; }

/* ---------- Кнопка (единый вид для всех переходов) ---------- */
.bsit-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 22px;
  border: none; border-radius: 12px;
  background: var(--bsit-dark); color: #fff;
  font: 700 16px/1 Inter, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  text-decoration: none; cursor: pointer;
}
.bsit-btn:hover { background: var(--bsit-dark); filter: brightness(.9); }
.bsit-btn.ghost { background: transparent; color: var(--bsit-dark); border: 1px solid var(--bsit-line); filter: none; }
.bsit-btn.ghost:hover { background: var(--bsit-soft); filter: none; }

/* ---------- Hero (тёмно-зелёный #2E7D4F, чипы/кнопки — белые) ---------- */
.bsit-hero { background: var(--bsit-dark); color: #fff; border-radius: 28px; padding: 48px; }
.bsit-hero-tag { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #EAF6EE; opacity: .92; margin-bottom: 14px; }
.bsit-hero-title { font-size: 42px; line-height: 1.12; letter-spacing: -.02em; margin: 0 0 16px; font-weight: 800; }
.bsit-hero-sub { font-size: 18px; line-height: 1.55; color: #EAF6EE; margin: 0; max-width: 760px; }
/* Подзаголовок «Все тесты» — в одну строку на десктопе (на узких экранах переносится) */
.bsit-hero-sub-1line { max-width: none; }
@media (min-width: 720px) { .bsit-hero-sub-1line { white-space: nowrap; } }
/* Кнопки-якоря на разделы (в hero «Все тесты») */
.bsit-hero-anchors-label { margin: 24px 0 10px; font-size: 18px; line-height: 1.55; font-weight: 400; color: #EAF6EE; }
.bsit-hero-anchors { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 0; }
.bsit-hero-anchor {
  display: inline-flex; padding: 10px 16px; border-radius: 999px; background: #fff;
  color: var(--bsit-dark); font-size: 14px; font-weight: 700; text-decoration: none;
}
.bsit-hero-anchor:hover { background: #EAF6EE; }
.bsit-group { scroll-margin-top: 20px; }
.bsit-hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.bsit-chip { display: inline-flex; padding: 7px 13px; border-radius: 999px; background: #fff; color: var(--bsit-dark); font-size: 13px; font-weight: 800; }
.bsit-hero-btn { margin-top: 26px; }
/* Кнопка на тёмном hero — белая с тёмно-зелёным текстом */
.bsit-hero .bsit-btn, .bsit-sit-hero .bsit-btn { background: #fff; color: var(--bsit-dark); }
.bsit-hero .bsit-btn:hover, .bsit-sit-hero .bsit-btn:hover { background: #EAF6EE; }

/* ---------- Почему стоит пройти ---------- */
.bsit-why { margin-top: 40px; }
.bsit-why-h2 { font-size: 26px; font-weight: 800; margin: 0 0 20px; letter-spacing: -.01em; }
.bsit-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bsit-why-item { background: var(--bsit-card); border: 1px solid var(--bsit-line); border-radius: 18px; padding: 22px; }
.bsit-why-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--bsit-soft); color: var(--bsit-green-d); margin-bottom: 14px; }
.bsit-why-ic svg { width: 24px; height: 24px; }
.bsit-why-title { font-size: 17px; font-weight: 800; margin: 0 0 6px; letter-spacing: -.01em; }
.bsit-why-desc { color: var(--bsit-muted); line-height: 1.45; margin: 0; font-size: 14px; }

/* ---------- Каталог ситуаций (2 колонки, горизонтальные карточки) ---------- */
.bsit-cat { margin-top: 46px; scroll-margin-top: 20px; }
.bsit-cat-h2 { font-size: 30px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.01em; }
.bsit-cat-lead { color: var(--bsit-muted); margin: 0 0 24px; font-size: 16px; }
.bsit-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; grid-auto-rows: 1fr; }
.bsit-scard {
  display: flex; align-items: stretch; gap: 18px; height: 100%;
  background: var(--bsit-card); border: 1px solid var(--bsit-line);
  border-radius: 18px; padding: 20px 22px; text-decoration: none; color: inherit;
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}
.bsit-scard:hover { border-color: var(--bsit-green); box-shadow: 0 14px 36px rgba(20,68,43,.10); transform: translateY(-2px); }
.bsit-scard-ic { flex: 0 0 auto; align-self: center; width: 64px; height: 64px; border-radius: 16px; background: var(--bsit-soft); display: grid; place-items: center; }
.bsit-scard-ic img { width: 44px; height: 44px; object-fit: contain; }
.bsit-scard-body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.bsit-scard-title { font-size: 18px; font-weight: 800; line-height: 1.25; letter-spacing: -.01em; min-height: 45px; margin: 0 0 6px; display: flex; align-items: center; }
.bsit-scard-lead { color: var(--bsit-muted); line-height: 1.4; font-size: 14px; flex: 1 1 auto; margin: 0 0 10px; }
.bsit-scard-meta { color: var(--bsit-green-d); font-size: 13px; font-weight: 700; margin-top: auto; }
.bsit-scard-cta { flex: 0 0 auto; align-self: center; width: 40px; height: 40px; border-radius: 50%; background: var(--bsit-green); color: #fff; display: grid; place-items: center; font-size: 18px; font-weight: 800; }
.bsit-scard:hover .bsit-scard-cta { background: var(--bsit-green-d); }

/* ---------- Финальный призыв ---------- */
.bsit-final-cta {
  margin-top: 44px; background: var(--bsit-soft); border-radius: 22px; padding: 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.bsit-final-cta-txt { margin: 0; font-size: 19px; font-weight: 700; color: var(--bsit-ink); max-width: 640px; }

/* ---------- «Все тесты» (сгруппированный каталог методик) ---------- */
.bsit-group { margin-top: 40px; }
.bsit-group:first-of-type { margin-top: 30px; }
.bsit-group-h2 { font-size: 26px; font-weight: 800; margin: 0 0 18px; letter-spacing: -.01em; }
.bsit-tcard {
  display: flex; flex-direction: column;
  background: var(--bsit-card); border: 1px solid var(--bsit-line);
  border-radius: 20px; padding: 22px 24px; text-decoration: none; color: inherit;
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}
.bsit-tcard:hover { border-color: var(--bsit-green); box-shadow: 0 14px 36px rgba(20,68,43,.10); transform: translateY(-2px); }
.bsit-tcard-time { display: block; color: var(--bsit-green-d); font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.bsit-tcard-title { font-size: 19px; font-weight: 800; line-height: 1.25; margin: 0 0 8px; letter-spacing: -.01em; }
.bsit-tcard-desc { color: var(--bsit-muted); line-height: 1.5; margin: 0 0 16px; font-size: 15px; }
.bsit-tcard-go { margin-top: auto; color: var(--bsit-green-d); font-weight: 700; font-size: 14px; }

.bsit-disclaimer {
  margin-top: 44px; background: var(--bsit-soft); border-radius: 20px; padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.bsit-disclaimer-h3 { margin: 0 0 6px; font-size: 19px; font-weight: 800; letter-spacing: -.01em; }
.bsit-disclaimer-p { margin: 0; color: var(--bsit-muted); line-height: 1.5; font-size: 15px; }
.bsit-disclaimer-ic { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 16px; background: #fff; display: grid; place-items: center; color: var(--bsit-dark); }
.bsit-disclaimer-ic svg { width: 30px; height: 30px; }

/* ================= Экраны тестов под скином (оверрайды движков) =================
   Скин грузится только на брендированных страницах; скоуп .biotiki-situations-blank
   поднимает специфичность, чтобы перебить CSS плагинов quiz/burdon/schulte/core.
   Сами плагины-движки не изменяются. */

/* Шрифт Inter вместо Manrope (тексты тестов) */
.biotiki-situations-blank .bquiz,
.biotiki-situations-blank .bquiz-card,
.biotiki-situations-blank .burdon-wrap,
.biotiki-situations-blank .schulte-wrapper,
.biotiki-situations-blank .bc-modal-overlay { font-family: Inter, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; }
/* НО поля (клетки Бурдона/Шульте) — вернуть исходный шрифт, вид не трогаем */
.biotiki-situations-blank .burdon-grid,
.biotiki-situations-blank .burdon-cell,
.biotiki-situations-blank .schulte-grid,
.biotiki-situations-blank .schulte-cell { font-family: Manrope, Arial, sans-serif; }
/* Поля Бурдона/Шульте — запрет выделения курсором (буквы/числа не выделяются) */
.biotiki-situations-blank .burdon-grid,
.biotiki-situations-blank .burdon-cell,
.biotiki-situations-blank .schulte-grid,
.biotiki-situations-blank .schulte-cell {
  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
  -webkit-touch-callout: none;
}

/* Интро тестов — единый шрифт сайта (Inter), крупнее, опрятные отступы абзацев */
.biotiki-situations-blank .bquiz-intro-text,
.biotiki-situations-blank .burdon-intro-text,
.biotiki-situations-blank .schulte-intro-text {
  font-family: Inter, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 18px; line-height: 1.6; color: var(--bsit-ink); max-width: 720px; margin: 0 auto;
}
.biotiki-situations-blank .bquiz-intro-text p,
.biotiki-situations-blank .burdon-intro-text p,
.biotiki-situations-blank .schulte-intro-text p { margin: 0 0 12px; }
.biotiki-situations-blank .bquiz-intro-text b,
.biotiki-situations-blank .burdon-intro-text b,
.biotiki-situations-blank .schulte-intro-text b { font-weight: 700; }
/* Заголовок интро — по центру, жирный */
.biotiki-situations-blank .bquiz-intro-title,
.biotiki-situations-blank .burdon-intro-title,
.biotiki-situations-blank .schulte-intro-title { text-align: center; font-weight: 700; }
/* Экран интро — без обрамляющей карточки (как в Бурдоне) */
.biotiki-situations-blank .bquiz-card.bquiz-intro { border: 0; border-radius: 0; padding: 0; background: transparent; }
.biotiki-situations-blank .schulte-wrapper.schulte-intro-screen { border: 0; border-radius: 0; padding: 0; background: transparent; }
/* Тонкая сплошная линия-разделитель (как над дисклеймером в результатах) */
.biotiki-situations-blank .bsit-hr { border: 0; border-top: 1px solid var(--bsit-line); margin: 16px auto; max-width: 720px; }

/* Инструкция над обучающей таблицей Бурдона — шрифт/размер как интро */
.biotiki-situations-blank .burdon-practice-instr {
  font-family: Inter, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 18px; line-height: 1.6; color: var(--bsit-ink);
}
/* Цветные квадратики в обучении Шульте — цвета как подсветка клеток при прохождении */
.biotiki-situations-blank .schulte-legend { list-style: none; margin: 0 0 12px; padding: 0; }
.biotiki-situations-blank .schulte-legend li { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 8px; line-height: 1.5; }
.biotiki-situations-blank .schulte-legend .sq { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 5px; margin-top: 3px; }
.biotiki-situations-blank .schulte-legend .sq.green { background: #90ee90; }
.biotiki-situations-blank .schulte-legend .sq.red { background: #f88; }
.biotiki-situations-blank .schulte-legend .sq.yellow { background: #ffff00; }

/* Экраны Шульте (таблица/прерывание/подсказка) — шрифт и размер как на сайте */
.biotiki-situations-blank .schulte-trial {
  font-family: Inter, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 24px; font-weight: 700; color: var(--bsit-ink);
}
.biotiki-situations-blank .schulte-instruction,
.biotiki-situations-blank .schulte-abort-txt,
.biotiki-situations-blank .schulte-hint {
  font-family: Inter, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 18px; line-height: 1.6; color: var(--bsit-ink); font-weight: 400;
}
.biotiki-situations-blank .schulte-instruction b { font-weight: 700; }

/* ---------- Результаты тестов (без карточки, шрифт сайта, крупнее) ---------- */
.biotiki-situations-blank .bquiz-result,
.biotiki-situations-blank .burdon-result,
.biotiki-situations-blank .schulte-result {
  font-family: Inter, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 18px; line-height: 1.6; color: var(--bsit-ink); max-width: 720px; margin: 0 auto;
}
.biotiki-situations-blank .bquiz-result-title,
.biotiki-situations-blank .burdon-result-title,
.biotiki-situations-blank .schulte-result-title {
  text-align: center; font-weight: 700; font-size: 24px; margin: 0 0 34px;
}
/* Дополнительный отступ, когда результат начинается с баров */
.biotiki-situations-blank .bquiz-result .bquiz-bar-row:first-child { margin-top: 10px; }
/* Дисклеймер — чуть мельче основного текста */
.biotiki-situations-blank .bquiz-disclaimer {
  font-size: 15px; color: var(--bsit-muted); border-top: 1px solid var(--bsit-line);
  margin-top: 18px; padding-top: 12px;
}
/* Бары результата опросника — крупный текст того же стиля */
.biotiki-situations-blank .bquiz-bar-name { font-size: 15px; font-weight: 600; }
.biotiki-situations-blank .bquiz-bar-val { font-size: 18px; font-weight: 700; }
.biotiki-situations-blank .bquiz-bar-scale { font-size: 13px; }
.biotiki-situations-blank .bquiz-interp { font-size: 17px; }

/* Кнопки навигации под результатом одиночного теста */
.biotiki-situations-blank .biotiki-nav-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 26px auto 0; }
.biotiki-situations-blank .biotiki-nav-btn {
  display: inline-block; padding: 12px 22px; border-radius: 12px; border: 0; cursor: pointer;
  font-family: inherit; font-size: 16px; font-weight: 700; text-decoration: none;
  background: var(--bsit-dark); color: #fff;
}
.biotiki-situations-blank .biotiki-nav-btn.secondary { background: #fff; color: var(--bsit-dark); border: 2px solid var(--bsit-dark); padding: 10px 20px; }
.biotiki-situations-blank .biotiki-nav-btn:hover { filter: brightness(.95); }

/* Карточки движков — под скин */
.biotiki-situations-blank .bquiz-card {
  border: 1px solid var(--bsit-line); border-radius: 18px;
}
/* Шульте — без контейнера на всех экранах */
.biotiki-situations-blank .schulte-wrapper {
  border: 0; border-radius: 0; padding: 0; background: transparent;
}

/* ЕДИНЫЙ размер/форма ВСЕХ кнопок-переходов (вкл. Стоп) */
.biotiki-situations-blank .bquiz-btn,
.biotiki-situations-blank .burdon-btn,
.biotiki-situations-blank .burdon-stop-btn,
.biotiki-situations-blank .schulte-start-btn,
.biotiki-situations-blank .schulte-next-start-btn,
.biotiki-situations-blank .schulte-retry-btn,
.biotiki-situations-blank .schulte-continue-btn,
.biotiki-situations-blank .schulte-restart-btn,
.biotiki-situations-blank .schulte-stop-btn,
.biotiki-situations-blank .bc-btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 22px;
  border: none; border-radius: 12px;
  font: 700 16px/1 Inter, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  cursor: pointer;
}
/* Основные — зелёные (единый цвет Hero #2E7D4F) */
.biotiki-situations-blank .bquiz-btn,
.biotiki-situations-blank .burdon-btn,
.biotiki-situations-blank .schulte-start-btn,
.biotiki-situations-blank .schulte-next-start-btn,
.biotiki-situations-blank .schulte-retry-btn,
.biotiki-situations-blank .schulte-continue-btn,
.biotiki-situations-blank .bc-btn-primary { background: var(--bsit-dark); color: #fff; }
.biotiki-situations-blank .bquiz-btn:hover,
.biotiki-situations-blank .burdon-btn:hover,
.biotiki-situations-blank .schulte-start-btn:hover,
.biotiki-situations-blank .schulte-next-start-btn:hover,
.biotiki-situations-blank .schulte-retry-btn:hover,
.biotiki-situations-blank .schulte-continue-btn:hover,
.biotiki-situations-blank .bc-btn-primary:not(:disabled):hover { background: var(--bsit-dark); filter: brightness(.9); }
.biotiki-situations-blank .bquiz-btn:disabled,
.biotiki-situations-blank .bc-btn-primary:disabled { background: #cfe9d1; color: #6b806e; filter: none; }
/* Вторичные (ghost): «Назад», «Начать заново» */
.biotiki-situations-blank .bquiz-btn.ghost,
.biotiki-situations-blank .schulte-restart-btn {
  background: transparent; color: var(--bsit-dark); border: 1px solid var(--bsit-line);
}
/* Стоп — тот же размер, красный (семантика) */
.biotiki-situations-blank .burdon-stop-btn,
.biotiki-situations-blank .schulte-stop-btn { background: #c0392b; color: #fff; }
.biotiki-situations-blank .burdon-stop-btn:hover,
.biotiki-situations-blank .schulte-stop-btn:hover { filter: brightness(.95); }
/* Полоса просмотра Бурдона — в цвет Hero */
.biotiki-situations-blank .burdon-progress-fill { background: var(--bsit-dark); }

/* Варианты ответа: скругление/границы + подсветка выбранного */
.biotiki-situations-blank .bquiz-opt { border: 1px solid var(--bsit-line); border-radius: 10px; }
.biotiki-situations-blank .bquiz-opt:hover { background: var(--bsit-soft); }
.biotiki-situations-blank .bquiz-opt:has(input:checked) { border-color: var(--bsit-green); background: var(--bsit-soft); }

/* Поля ввода: фокус в бренд-зелёный */
.biotiki-situations-blank .bquiz-input:focus,
.biotiki-situations-blank .bquiz-textarea:focus { border-color: var(--bsit-green); outline: none; }

/* Модалка соц-дем: скругление + активный выбор в белый текст */
.biotiki-situations-blank .bc-modal { border-radius: 18px; }
.biotiki-situations-blank .bc-choice.is-active { background: var(--bsit-dark); border-color: var(--bsit-dark); color: #fff; }
/* Пол (первое поле) — 2 равные кнопки; Возраст (последнее поле) — равная сетка 3×2 */
.biotiki-situations-blank .bc-modal .bc-field:first-of-type .bc-choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.biotiki-situations-blank .bc-modal .bc-field:last-of-type .bc-choices  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.biotiki-situations-blank .bc-modal .bc-choice { min-width: 0; flex: initial; }

/* Прохождение батареи: общий итог — без контейнеров, единый стиль */
.bsit-final-sec { background: transparent; border: 0; border-radius: 0; margin: 0 0 28px; }
.bsit-final-sec-title {
  text-align: left; font-weight: 700; font-size: 20px; margin: 0 0 22px;
  color: var(--bsit-ink); padding-top: 18px; border-top: 1px solid var(--bsit-line);
}
.biotiki-situations-blank .bsit-final-sec .bquiz-result,
.biotiki-situations-blank .bsit-final-sec .burdon-result,
.biotiki-situations-blank .bsit-final-sec .schulte-result { max-width: none; margin: 0; }

/* ---------- Подвал ---------- */
.bsit-footer {
  margin-top: 30px; padding-top: 12px; border-top: 1px solid var(--bsit-line);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center;
  color: var(--bsit-muted); font-size: 13px;
}
.bsit-footer-left { display: flex; flex-direction: row; align-items: center; gap: 18px; }
.bsit-footer-logo { height: 54px; width: auto; object-fit: contain; flex: 0 0 auto; display: block; }
.bsit-footer-about { display: flex; flex-direction: column; gap: 4px; }
.bsit-footer-copy { white-space: nowrap; }
.bsit-footer a { color: var(--bsit-green-d); text-decoration: none; }
.bsit-footer a:hover { text-decoration: underline; }

/* ---------- Страница ситуации (интро оркестратора) ---------- */
.bsit-sit { padding-top: 6px; }
.bsit-back { display: inline-block; margin: 0 0 14px; color: var(--bsit-dark); text-decoration: none; font-size: 17px; font-weight: 700; }
.bsit-back:hover { text-decoration: underline; }

.bsit-sit-hero {
  background: var(--bsit-dark); color: #fff; border-radius: 28px; padding: 44px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: stretch;
}
.bsit-sit-hero-main { align-self: center; }
.bsit-sit-title { font-size: 40px; line-height: 1.1; letter-spacing: -.02em; margin: 0 0 14px; font-weight: 800; }
.bsit-sit-lead { font-size: 18px; line-height: 1.55; color: #EAF6EE; margin: 0 0 22px; }
.bsit-sit-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.bsit-pill { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: #fff; color: var(--bsit-dark); font-size: 13px; font-weight: 800; }
.bsit-sit-visual {
  min-height: 260px; border-radius: 24px; overflow: hidden; border: 1px solid #ffffff2e;
  background: linear-gradient(145deg, #3a9463, #256b45);
}
.bsit-sit-visual img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; display: block; }

.bsit-plan { margin-top: 46px; }
.bsit-plan-h2 { font-size: 28px; font-weight: 800; margin: 0 0 20px; letter-spacing: -.01em; }
.bsit-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bsit-method { display: flex; flex-direction: column; background: var(--bsit-card); border: 1px solid var(--bsit-line); border-radius: 20px; padding: 22px; }
.bsit-method-head { display: flex; align-items: center; gap: 12px; min-height: 52px; margin-bottom: 12px; }
.bsit-method-num { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--bsit-soft); color: var(--bsit-green-d); font-weight: 900; font-size: 16px; }
.bsit-method-title { font-size: 16px; font-weight: 800; line-height: 1.25; margin: 0; letter-spacing: -.01em; }
.bsit-method-desc { color: var(--bsit-muted); line-height: 1.5; margin: 0 0 14px; font-size: 14px; flex: 1 1 auto; }
.bsit-method-time { font-size: 13px; font-weight: 800; color: var(--bsit-green-d); margin-top: auto; }
.bsit-sit-cta { margin-top: 30px; text-align: center; }

.bsit-panels { margin-top: 24px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; }
.bsit-panel { border-radius: 20px; padding: 26px; }
.bsit-panel.soft { background: var(--bsit-soft); }
.bsit-panel.white { background: var(--bsit-card); border: 1px solid var(--bsit-line); }
.bsit-panel-h3 { margin: 0 0 14px; font-size: 20px; font-weight: 800; }
.bsit-checks { display: grid; gap: 14px; }
.bsit-check { display: flex; gap: 12px; align-items: flex-start; min-height: 42px; color: var(--bsit-muted); line-height: 1.45; font-size: 15px; }
.bsit-check b { color: var(--bsit-ink); }
.bsit-tick { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: var(--bsit-green); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 900; line-height: 1; margin-top: 1px; }

/* Прохождение: экран перехода между тестами */
.bsit-inter { max-width: 560px; margin: 70px auto; text-align: center; animation: bsit-fade .3s ease both; }
.bsit-inter-check {
  width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--bsit-dark); color: #fff; display: grid; place-items: center;
  font-size: 36px; font-weight: 900; animation: bsit-pop .35s cubic-bezier(.2,.8,.3,1.4) both;
}
.bsit-inter-txt { font-size: 18px; font-weight: 700; color: var(--bsit-ink); margin: 0 0 18px; }
.bsit-prog { display: flex; justify-content: center; align-items: center; gap: 14px; margin: 0 0 18px; }
.bsit-prog-dot {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  font-size: 14px; font-weight: 900; background: #eef2ef; color: #9fb0a5; border: 2px solid transparent;
}
.bsit-prog-dot.done { background: var(--bsit-dark); color: #fff; }
.bsit-prog-dot.next { background: #fff; color: var(--bsit-dark); border-color: var(--bsit-dark); }
.bsit-inter-next { color: var(--bsit-muted); margin: 0 0 22px; font-size: 15px; }
.bsit-inter-next b { color: var(--bsit-ink); }
@keyframes bsit-pop { 0% { transform: scale(.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes bsit-fade { 0% { transform: translateY(8px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
.bsit-final { max-width: 720px; margin: 10px auto 0; }
.bsit-final-title { text-align: center; font-weight: 700; }
.bsit-final .bsit-back { display: block; text-align: center; margin: 0 auto 18px; }

/* ---------- Адаптив ---------- */
@media (max-width: 900px) {
  .bsit-cards, .bsit-why-grid, .bsit-plan-grid, .bsit-panels { grid-template-columns: 1fr; }
  .bsit-why-grid { grid-template-columns: repeat(2, 1fr); }
  .bsit-final-cta { flex-direction: column; align-items: flex-start; }
  .bsit-hero { padding: 30px; border-radius: 22px; }
  .bsit-hero-title { font-size: 30px; }
  .bsit-sit-hero { grid-template-columns: 1fr; padding: 28px; }
  .bsit-sit-title { font-size: 32px; }
  .bsit-sit-visual { min-height: 180px; order: -1; }
  .biotiki-situations-blank .bsit-blank-main { padding: 0 16px 48px; }
  /* Навигация → бургер */
  .bsit-header { position: relative; }
  .bsit-burger { display: inline-flex; }
  .bsit-nav {
    display: none; position: absolute; top: 68px; right: 0; left: auto; min-width: 200px;
    flex-direction: column; gap: 0; background: #fff; border: 1px solid var(--bsit-line);
    border-radius: 14px; padding: 8px; box-shadow: 0 12px 30px rgba(20,68,43,.12); z-index: 60;
  }
  .bsit-nav.open { display: flex; }
  .bsit-nav a { padding: 12px 12px; border-radius: 8px; }
  .bsit-nav a:hover { background: var(--bsit-soft); }
}
