/* ============================================================
   KiwanoPrint — печать на кружках
   Стилистика снята с лендинга PEROX:
   яркий azure-синий + графит + бело-серый фон, скругления, тени.
   ============================================================ */

:root {
  --blue:       #12A5E8;   /* фирменный azure (как PEROX) */
  --blue-deep:  #0B8FCE;   /* синий потемнее — ховер */
  --ink:        #1E2733;   /* почти чёрные заголовки */
  --dark:       #1B2430;   /* тёмные блоки и вторичные кнопки */
  --muted:      #5C6776;   /* серый body-текст */
  --bg:         #FFFFFF;
  --bg-soft:    #F3F5F7;   /* светло-серый фон секций */
  --line:       #E5E9EE;
  --tg:         #28A8E8;
  --vk:         #0077FF;

  --font-head: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --font:      "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1280px;
  --gutter: clamp(18px, 5vw, 56px);
  --radius: 16px;
  --radius-sm: 10px;
  --pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;   /* страховка от горизонтального сдвига на мобильном */
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { font-weight: 700; color: var(--ink); }

h1, h2, h3 { font-family: var(--font-head); }

.accent { color: var(--blue); }

/* ---------- Шапка ---------- */
.site-header {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 54px; width: auto; display: block; }

.site-nav { display: flex; gap: 24px; margin: 0 auto; }
.site-nav__link {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.18s ease;
}
.site-nav__link:hover,
.site-nav__link.is-active { color: var(--ink); }

.site-header__right { display: flex; align-items: center; gap: 18px; }
.phone {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--ink);
}

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn__ico { font-size: 0.95em; line-height: 1; }

.btn--primary { background: var(--blue); color: #fff; padding: 13px 26px; }
.btn--primary:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(18,165,232,0.7);
}

.btn--pill { border-radius: var(--pill); padding: 12px 24px; }
.btn--lg {
  padding: 18px 44px;
  font-size: 1.12rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 30px -12px rgba(18,165,232,0.55);
}

/* ---------- CTA-блок (наш стиль: широкая кнопка + ряд из трёх) ---------- */
.hero__cta { width: 100%; }

/* широкая основная кнопка со стрелкой справа */
.btn--block {
  position: relative;
  width: 100%;
  padding: 17px 28px;
  font-size: 1.08rem;
  box-shadow: 0 14px 30px -14px rgba(18,165,232,0.55);
}
.btn--block .btn__arrow {
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  transition: transform 0.18s ease;
}
.btn--block:hover .btn__arrow { transform: translateY(-50%) translateX(4px); }

/* ряд из трёх мессенджер-кнопок */
.hero__messengers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.btn--msg {
  color: #fff;
  padding: 13px 8px;
  font-size: 0.95rem;
  gap: 8px;
}
.btn--msg .msg__ico { width: 18px; height: 18px; flex-shrink: 0; }
.btn--msg:hover { transform: translateY(-1px); filter: brightness(1.06); }
.msg--tg  { background: #28A8E8; }
.msg--vk  { background: #0077FF; }
.msg--max { background: #8B5CF6; }

/* ---------- Первый экран ---------- */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 80px) var(--gutter) clamp(64px, 9vw, 110px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero__content { position: relative; z-index: 1; max-width: 560px; }

.hero__title {
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 22px;
  text-wrap: balance;   /* ровные строки вместо рваной лесенки */
}

.hero__subtitle {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--muted);
  margin-bottom: 22px;
}

.hero__points {
  display: grid;
  gap: 11px;
  margin-bottom: 32px;
}
.hero__points li {
  position: relative;
  padding-left: 32px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.hero__points li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 50%;
}

/* ---------- Визуальный блок ---------- */
.hero__media { position: relative; z-index: 1; }
.hero__media-frame {
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  box-shadow: 0 30px 60px -35px rgba(30,39,51,0.35);
}
.hero__media-note { font-size: 1.05rem; color: var(--muted); opacity: 0.7; }

.hero__media-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -35px rgba(30,39,51,0.35);
  display: block;
}

/* лёгкий серый «задник» под hero, как у PEROX */
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--bg-soft);
  z-index: 0;
  border-radius: 0;
  opacity: 0;            /* по умолчанию выкл; включим, когда добавим секции */
}

/* круглая кнопка «вниз» */
.hero__scroll {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 1.3rem;
  border-radius: 50%;
  box-shadow: 0 12px 26px -10px rgba(18,165,232,0.7);
  animation: bob 1.8s ease-in-out infinite;
  z-index: 2;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Заголовок секции (общий) ---------- */
.section-title {
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  text-wrap: balance;
}
.section-sub {
  max-width: 640px;
  margin: 14px auto 0;
  text-align: center;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: var(--muted);
  text-wrap: balance;
}

/* ---------- Популярные комбинации ---------- */
.combos {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--gutter);
}
.combos__head { margin-bottom: clamp(32px, 4vw, 52px); }

.combos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}

/* карточка набора */
.combo {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px -30px rgba(30,39,51,0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.combo:hover {
  transform: translateY(-3px);
  border-color: #CFE9F8;
  box-shadow: 0 26px 50px -28px rgba(18,165,232,0.45);
}

/* фото-область набора */
.combo__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.combo__media-note {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  opacity: 0.65;
}
/* подставляемое фото — заполняет рамку, скругление сверху наследует */
.combo__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* тело карточки */
.combo__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 22px 24px 24px;
}

/* бейдж скидки — поверх фото */
.combo__badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  color: #fff;
  background: var(--blue);
  padding: 7px 13px;
  border-radius: var(--pill);
  letter-spacing: -0.01em;
  box-shadow: 0 10px 20px -10px rgba(18,165,232,0.7);
}

.combo__title {
  font-weight: 800;
  font-size: 1.22rem;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  text-wrap: balance;
}

/* состав набора — чипсы с плюсами */
.combo__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  flex-grow: 1;
  align-content: flex-start;
}
.combo__item {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.combo__plus {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--blue);
  line-height: 1;
}

.combo__btn { margin-top: auto; }

/* выделенная карточка (самая выгодная) */
.combo--featured {
  border-color: var(--blue);
  box-shadow: 0 26px 54px -26px rgba(18,165,232,0.5);
}
.combo--featured .combo__ribbon {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  background: var(--ink);
  padding: 6px 12px;
  border-radius: var(--pill);
  letter-spacing: 0.01em;
}

/* ---------- Кейсы (слайдер по логотипам) ---------- */
.case { background: #fff; }
.case__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--gutter);
}

/* скрытые радио-переключатели */
.case__radio {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}

/* строка логотипов-вкладок */
.case__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(24px, 3.5vw, 38px);
}
.case__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 62px;
  padding: 10px 24px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.case__tab:hover { border-color: #BFE3F7; }
.case__logo { max-height: 38px; width: auto; display: block; }
.case__hint {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 300px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}
.case__hint-arrow {
  width: 26px; height: 26px;
  flex-shrink: 0;
  color: var(--blue);
}
/* активная вкладка */
#case-1:checked ~ .case__tabs label[for="case-1"],
#case-2:checked ~ .case__tabs label[for="case-2"],
#case-3:checked ~ .case__tabs label[for="case-3"] {
  border-color: var(--blue);
  background: #EAF6FD;
  box-shadow: 0 8px 20px -12px rgba(18,165,232,0.6);
}

/* панели кейсов: показываем активную */
.case__panel { display: none; }
#case-1:checked ~ .case__panel[data-i="1"],
#case-2:checked ~ .case__panel[data-i="2"],
#case-3:checked ~ .case__panel[data-i="3"] {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
}

/* левая колонка: два блока фикс-высоты (не зависят от объёма текста) */
.case__col {
  display: grid;
  grid-template-rows: 1.1fr 1fr;   /* верхний блок (запрос) чуть выше */
  gap: 18px;
  height: clamp(500px, 48vw, 580px);
}

.case__card {
  border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 30px);
  min-height: 0;        /* разрешаем строке грида сжиматься */
  overflow: hidden;     /* текст подстраивается под блок, не растягивает его */
}
.case__card--light { background: var(--bg-soft); border: 1px solid var(--line); }
.case__card--dark { background: var(--ink); color: #fff; }

.case__label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.case__card--light .case__label { color: var(--ink); }

.case__text { color: var(--muted); margin-bottom: 14px; }

.case__list { display: grid; gap: 9px; }
.case__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.98rem;
  color: var(--ink);
}
.case__list li::before {
  content: "";
  position: absolute;
  left: 3px; top: 0.6em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.case__sol { color: rgba(255,255,255,0.8); margin-bottom: 12px; }
.case__sol:last-child { margin-bottom: 0; }
.case__sol strong { color: #fff; font-weight: 700; }

/* текст-заглушка для незаполненных кейсов */
.case__todo { font-style: italic; opacity: 0.7; }

/* пустой слот под фото (заказчик вставит <img>) */
.case__media {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 320px;
  overflow: hidden;
}
.case__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Отзывы ---------- */
.reviews { background: var(--bg-soft); }
.reviews__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--gutter);
}
.reviews .section-title { margin-bottom: clamp(24px, 3.5vw, 38px); }

/* плашки рейтингов площадок */
.reviews__ratings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.rating-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 178px;
  padding: 16px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.rating-chip:hover {
  border-color: #BFE3F7;
  box-shadow: 0 16px 32px -22px rgba(30,39,51,0.45);
  transform: translateY(-2px);
}
.rating-chip__platform { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--ink); }
.rating-chip__score { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; line-height: 1; color: var(--ink); }
.rating-chip__stars { color: #FFB400; font-size: 1rem; letter-spacing: 2px; }
.rating-chip__count { font-size: 0.85rem; font-weight: 600; color: var(--muted); }

/* лента отзывов */
/* кладка (masonry) — карточки разной высоты пакуются красиво */
.reviews__grid {
  column-count: 3;
  column-gap: clamp(16px, 1.8vw, 22px);
}
.review {
  display: flex;
  flex-direction: column;
  break-inside: avoid;
  margin-bottom: clamp(16px, 1.8vw, 22px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 26px);
  box-shadow: 0 16px 36px -28px rgba(30,39,51,0.4);
}
.review__top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review__avatar {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: grid; place-items: center;
}
.review__meta { margin-right: auto; min-width: 0; }
.review__name { font-weight: 700; font-size: 1rem; color: var(--ink); }
.review__src { font-size: 0.84rem; color: var(--muted); }
.review__stars { color: #FFB400; font-size: 0.95rem; letter-spacing: 1px; white-space: nowrap; }
.review__text { font-size: 0.96rem; line-height: 1.55; color: var(--ink); }

/* фото готовой работы в отзыве (опционально) */
.review__photo {
  margin-top: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
}
/* фото в натуральных пропорциях — без обрезки */
.review__photo-img { width: 100%; height: auto; display: block; }

/* ---------- О производителе ---------- */
.about { background: #fff; }
.about__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--gutter);
}
.about .section-title { margin-bottom: clamp(30px, 4vw, 52px); }
/* двухколоночные строки: заголовок слева, текст справа */
.about-row {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}
.about-row + .about-row { margin-top: clamp(36px, 5vw, 64px); }

.about-h {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--blue);
}

.about-row__body { display: grid; gap: 14px; max-width: 760px; }
.about-row__body p { color: var(--muted); font-size: clamp(1rem, 1.2vw, 1.08rem); line-height: 1.6; }
.about-row__body strong { color: var(--ink); font-weight: 700; }

.about-list { display: grid; gap: 8px; margin-top: 2px; }
.about-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.5;
}
.about-list li::before {
  content: "›";
  position: absolute; left: 4px; top: -1px;
  color: var(--blue);
  font-weight: 800;
}

/* строка «о качестве»: закрывающая фраза прижата к низу левой колонки */
.about-row--quality { grid-template-rows: auto 1fr; }
.about-row--quality .about-row__head { grid-column: 1; grid-row: 1; }
.about-row--quality .about-row__body { grid-column: 2; grid-row: 1 / span 2; }
.about-closing {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  padding-top: clamp(40px, 6vw, 80px);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* видео (вертикальное, по центру) */
.about__video {
  margin: clamp(32px, 4.5vw, 56px) auto 0;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
}
.about__video-el { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Финальный CTA ---------- */
.cta { background: var(--blue); }
.cta__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.cta__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.cta__sub {
  max-width: 460px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,0.92);
}

.cta__card {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: clamp(18px, 2.4vw, 26px);
  display: grid;
  gap: 12px;
}
.cta__phone {
  width: 100%;
  border-radius: var(--pill);
  padding: 16px 24px;
  font-size: 1.12rem;
}
.cta__messengers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.cta__messengers .btn--msg { width: 100%; padding: 13px 8px; }

/* ---------- Квиз ---------- */
.quiz { background: var(--bg-soft); }
.quiz__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--gutter);
}
.quiz .section-title { margin-bottom: clamp(24px, 3.5vw, 38px); }

.quiz__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3.5vw, 40px);
  box-shadow: 0 24px 50px -34px rgba(30,39,51,0.4);
}

/* прогресс */
.quiz__progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.quiz__progress-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-soft);
  border-radius: var(--pill);
  overflow: hidden;
}
.quiz__progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--blue);
  border-radius: var(--pill);
  transition: width 0.3s ease;
}
.quiz__progress-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

/* вопрос */
.quiz__q {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.quiz__hint { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.quiz__q + .quiz__opts { margin-top: 18px; }

/* варианты ответа */
.quiz__opts { display: grid; gap: 10px; }
.quiz-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.08s ease;
}
.quiz-opt:hover { border-color: #BFE3F7; background: #F7FBFE; }
.quiz-opt:active { transform: scale(0.995); }
.quiz-opt__mark {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 7px;
  border: 1.5px solid var(--line);
  display: grid; place-items: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.quiz-opt.is-selected { border-color: var(--blue); background: #EAF6FD; }
.quiz-opt.is-selected .quiz-opt__mark { background: var(--blue); border-color: var(--blue); }
.quiz-opt.is-selected .quiz-opt__mark::after {
  content: "✓";
  color: #fff; font-size: 0.8rem; font-weight: 800; line-height: 1;
}

/* навигация */
.quiz__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}
.quiz__nav:empty { margin-top: 0; }
.quiz__back {
  background: none; border: none;
  color: var(--muted);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 8px 4px;
  transition: color 0.15s ease;
}
.quiz__back:hover { color: var(--ink); }
.quiz__next { padding: 13px 32px; margin-left: auto; }

/* форма внутри квиза */
.quiz__lead-text { font-size: 1rem; color: var(--muted); margin-bottom: 2px; }
.quiz__lead-text strong { color: var(--ink); }
.quiz__form { display: grid; gap: 12px; margin-top: 18px; }
.quiz__input {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.quiz__input::placeholder { color: #9AA3AE; }
.quiz__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18,165,232,0.18);
  background: #fff;
}
.quiz__error { color: #D7263D; font-size: 0.9rem; font-weight: 600; }

/* экран «спасибо» */
.quiz__done { text-align: center; padding: 14px 0; }
.quiz__done-ico {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.8rem; font-weight: 800;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -12px rgba(18,165,232,0.6);
}
.quiz__done .quiz__q { text-align: center; }

.quiz__noscript {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Форма захвата (тёмный CTA) ---------- */
.lead {
  background: var(--ink);
  color: #fff;
}
.lead__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

/* левая колонка — оффер */
.lead__intro { position: relative; max-width: 580px; }
.lead__title {
  font-weight: 800;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
  text-wrap: balance;
}
.lead__sub {
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}
.lead__sub strong { color: #fff; }

/* декоративная стрелка к форме (только десктоп) */
.lead__arrow { display: none; }

.lead__points { display: grid; gap: 13px; }
.lead__points li {
  position: relative;
  padding-left: 34px;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.lead__points li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 0.8rem; font-weight: 800;
  border-radius: 50%;
}

/* правая колонка — форма + мессенджеры */
.lead__side { width: 100%; max-width: 440px; margin-left: auto; }

.lead__card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5);
}
.lead__card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 16px;
  color: var(--ink);
}

.lead__form { display: grid; gap: 12px; }
/* визуально скрытая подпись (для доступности) */
.lead__label {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.lead__input-wrap { position: relative; }
.lead__flag {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem; line-height: 1;
  pointer-events: none;
}
.lead__input {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px 14px 44px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.lead__input::placeholder { color: #9AA3AE; }
.lead__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18,165,232,0.18);
  background: #fff;
}

.lead__or {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin: 20px 0 14px;
}

.lead__messengers { display: grid; gap: 10px; }
.lead__messengers .btn--msg {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.98rem;
  gap: 10px;
}

/* ---------- Адаптив ---------- */
@media (min-width: 941px) {
  .lead__arrow {
    display: block;
    position: absolute;
    right: -91px; top: -13px;
    width: 132px; height: 66px;
    color: rgba(255,255,255,0.28);
  }
}

@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; margin: 0 auto; }
  .site-nav { display: none; }
  .combos__grid { grid-template-columns: repeat(2, 1fr); }
  .lead__inner { grid-template-columns: 1fr; }
  .lead__side { max-width: 520px; margin-left: 0; }
  #case-1:checked ~ .case__panel[data-i="1"],
  #case-2:checked ~ .case__panel[data-i="2"],
  #case-3:checked ~ .case__panel[data-i="3"] { grid-template-columns: 1fr; }
  .case__col { height: auto; grid-template-rows: auto auto; }
  .case__card { overflow: visible; }
  .case__media { aspect-ratio: 4 / 3; min-height: 0; }
  .case__hint { margin-left: 0; flex-basis: 100%; }
  .reviews__grid { column-count: 2; }
}

/* ---------- Телефон ---------- */
@media (max-width: 620px) {
  /* шапка: логотип слева, кнопка справа, без переноса */
  .site-header {
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .brand__logo { height: 46px; }
  .site-header__right { gap: 10px; }
  .phone { display: none; }
  .btn--pill { padding: 11px 18px; font-size: 0.92rem; }

  /* первый экран компактнее */
  .hero { padding-top: 20px; gap: 22px; }
  .hero__media { max-width: 100%; }
  .hero__title { margin-bottom: 16px; }
  .hero__subtitle, .hero__points { margin-bottom: 20px; }
  .hero__scroll { display: none; }
  .hero__cta { max-width: none; }
  .btn--msg { font-size: 0.82rem; padding: 12px 4px; gap: 5px; }
  .btn--msg .msg__ico { width: 16px; height: 16px; }

  /* наборы: одна колонка, плотнее */
  .combos { padding-top: 40px; padding-bottom: 48px; }
  .combos__head { margin-bottom: 24px; }
  .combos__grid { grid-template-columns: 1fr; gap: 16px; }
  .combo__body { padding: 20px 20px 22px; }

  /* отзывы */
  .reviews__grid { column-count: 1; }

  /* о производителе */
  .about-row { grid-template-columns: 1fr; gap: 14px; }
  .about-row--quality { grid-template-rows: none; }
  .about-row--quality .about-row__head,
  .about-row--quality .about-row__body,
  .about-row--quality .about-closing { grid-column: auto; grid-row: auto; }
  .about-closing { padding-top: 0; margin-top: clamp(18px, 4vw, 26px); }

  /* финальный CTA */
  .cta__inner { grid-template-columns: 1fr; }
  .cta__card { margin-left: 0; max-width: 520px; }

  /* квиз */
  .quiz__progress { gap: 10px; margin-bottom: 20px; }
  .quiz__progress-label { font-size: 0.8rem; }
  .quiz-opt { padding: 13px 14px; gap: 12px; font-size: 0.96rem; }
  .quiz__next { padding: 12px 24px; }

  /* форма захвата */
  .lead__inner { gap: 26px; }
  .lead__side { max-width: 100%; }
  .lead__card-title { font-size: 1.08rem; }
  .lead__title { font-size: 1.55rem; }   /* чтобы заголовок лёг в 2 строки */
}

/* ---------- Узкие телефоны ---------- */
@media (max-width: 400px) {
  .btn--block { font-size: 1rem; padding: 15px 22px; }
  .btn--msg { font-size: 0.74rem; gap: 4px; }
  .combo__title { font-size: 1.12rem; }
  .combo__badge { font-size: 0.95rem; padding: 6px 11px; }
  .lead__title { font-size: 1.42rem; }   /* узкие телефоны — держим 2 строки */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .hero__scroll { transition: none; animation: none; }
}

:focus-visible {
  outline: 2px solid var(--blue-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ ФУТЕР ============ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

/* единый блок: бренд+оплата+реквизиты / инфо+документы / контакты */
.footer__main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) var(--gutter) clamp(36px, 4vw, 52px);
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* средняя колонка: два блока ссылок друг под другом */
.footer__col {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 40px);
}

.footer__logo img {
  height: 50px;
  width: auto;
  display: block;
  /* чёрный PNG-логотип → белый на тёмном фоне */
  filter: brightness(0) invert(1);
}
.footer__tagline {
  margin-top: 18px;
  max-width: 380px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
}

.footer__h {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 16px;
}

/* блоки ссылок (Информация / Юридические документы) */
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.footer__nav a:hover { color: var(--blue); }

/* контакты */
.footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.footer__contact svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--blue); }
.footer__contact:hover { color: var(--blue); }

.footer__label {
  margin-top: 16px;
  font-weight: 700;
  color: #fff;
}
.footer__hours,
.footer__addr {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

/* соцсети — готовые круглые бейджи (img) */
.footer__socials { display: flex; gap: 10px; margin-top: 16px; }
.footer__soc {
  display: inline-flex;
  transition: transform 0.2s ease;
}
.footer__soc img { width: 40px; height: 40px; display: block; border-radius: 50%; }
.footer__soc:hover { transform: translateY(-2px); }

/* оплата (в левой колонке, под слоганом) */
.footer__pay {
  margin-top: clamp(28px, 3vw, 36px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.footer__pay-label {
  display: block;
  width: 100%;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer__pay-img { height: 35px; width: auto; display: block; }

/* реквизиты (в левой колонке, под оплатой) */
.footer__legal {
  margin-top: clamp(22px, 2.5vw, 30px);
  font-size: 0.88rem;
}
.footer__legal p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
}

/* копирайт */
.footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px var(--gutter) clamp(24px, 3vw, 36px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__copy a {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__copy a:hover { color: var(--blue); }

@media (max-width: 940px) {
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .footer__main { grid-template-columns: 1fr; }
  .footer__copy { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============ ВНУТРЕННИЕ СТРАНИЦЫ (контент/документы) ============ */
.page__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) var(--gutter) clamp(48px, 7vw, 88px);
}

.crumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.crumbs a { color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.crumbs a:hover { color: var(--blue); }
.crumbs span { margin: 0 7px; opacity: 0.6; }

.page__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: clamp(20px, 3vw, 32px);
  padding-bottom: clamp(18px, 2.5vw, 26px);
  border-bottom: 1px solid var(--line);
}

.prose { color: var(--muted); line-height: 1.7; font-size: 1.02rem; }
.prose > *:first-child { margin-top: 0; }
.prose h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.25;
  color: var(--ink);
  margin: clamp(30px, 4vw, 44px) 0 14px;
}
.prose h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.16rem;
  color: var(--ink);
  margin: 26px 0 10px;
}
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--blue); }
.prose a { color: var(--blue); text-decoration: underline; word-break: break-word; }
.prose a:hover { color: var(--blue-deep); }
.prose strong, .prose b { color: var(--ink); font-weight: 700; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: 0.95rem;
}
.prose th, .prose td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.prose th { background: var(--bg-soft); color: var(--ink); font-weight: 600; }

/* карта сайта */
.sitemap__group { margin-bottom: clamp(22px, 3vw, 32px); }
.sitemap__group h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.sitemap__group ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sitemap__group a { color: var(--blue); text-decoration: none; }
.sitemap__group a:hover { text-decoration: underline; }

/* ============ МАРКЕТИНГ-СТРАНИЦЫ (гарантии / доставка / юрлицам) ============ */
/* шапка страницы */
.phero { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.phero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(26px, 3.5vw, 48px) var(--gutter) clamp(30px, 4vw, 52px);
  text-align: center;
}
.phero .crumbs { margin-bottom: 14px; }
.phero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.phero__sub { margin-top: 14px; font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 600; color: var(--blue); }

/* секции */
.lsec { background: var(--bg); }
.lsec--soft { background: var(--bg-soft); }
.lsec__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(40px, 6vw, 80px) var(--gutter); }
.lsec .section-title { margin-bottom: clamp(20px, 3vw, 30px); }

.ptext { max-width: 760px; margin: 0 auto; text-align: center; color: var(--muted); font-size: 1.08rem; line-height: 1.6; }
.ptext + .ptext { margin-top: 12px; }
.ptext--bold { color: var(--ink); font-weight: 600; }

/* карточки способов оплаты */
.pcards {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.pcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px) 20px;
  text-align: center;
  box-shadow: 0 18px 40px -30px rgba(30, 39, 51, 0.5);
}
.pcard__icon { width: 72px; height: 72px; object-fit: contain; margin: 0 auto 16px; display: block; }
.pcard__title { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--ink); }
.pcard__note { margin-top: 6px; font-size: 0.9rem; color: var(--muted); }

/* блок доставки */
.dbox {
  margin-top: clamp(24px, 3vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: 0 18px 40px -30px rgba(30, 39, 51, 0.5);
}
.dbox__h {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--blue);
  font-size: 1rem;
  margin-bottom: 12px;
}
.dbox__h:not(:first-child) { margin-top: 28px; }
.citylist { color: var(--muted); line-height: 1.9; }
.citylist strong { color: var(--ink); }
.mcards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-top: 6px; }
.mcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 22px 14px;
}
.mcard img { height: 36px; width: auto; max-width: 130px; object-fit: contain; }
.mcard__t { font-weight: 600; color: var(--ink); }

/* «важно знать» */
.important__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.important__seal {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.important__seal svg { width: 46px; height: 46px; }
.important p { max-width: 680px; color: var(--muted); font-size: 1.08rem; line-height: 1.6; margin: 0; }
.important strong { color: var(--ink); }

/* синяя плашка-акцент */
.callout {
  margin-top: 16px;
  background: #EAF6FE;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}
.callout--center { max-width: 820px; margin-left: auto; margin-right: auto; text-align: left; }

/* большая закрывающая фраза */
.bigline {
  max-width: 760px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.3;
  color: var(--ink);
  text-wrap: balance;
}

/* строки-гарантии (ярлык + описание) */
.grows { display: flex; flex-direction: column; gap: clamp(24px, 3vw, 36px); }
.grow {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: clamp(20px, 3vw, 44px);
  padding-bottom: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--line);
}
.grow:last-child { border-bottom: none; padding-bottom: 0; }
.grow__label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.grow__body { color: var(--muted); line-height: 1.7; }
.grow__body p { margin: 0 0 12px; }
.grow__body p:last-child { margin-bottom: 0; }

/* чек-листы */
.ticks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ticks li { position: relative; padding-left: 30px; line-height: 1.5; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 21' fill='none'%3E%3Cpath d='M1.5 9L9.5 18L23.5 1' stroke='%2312A5E8' stroke-width='3'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* синий блок с условиями (юрлица) */
.bluebox {
  max-width: 900px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  background: var(--blue);
  border-radius: var(--radius);
  padding: clamp(26px, 3.5vw, 44px);
}
.bluebox .ticks li { color: #fff; font-size: 1.08rem; }
.bluebox .ticks li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 21' fill='none'%3E%3Cpath d='M1.5 9L9.5 18L23.5 1' stroke='white' stroke-width='3'/%3E%3C/svg%3E");
}

/* реквизиты предприятия */
.speclist { max-width: 900px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.speclist__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  padding: 14px clamp(18px, 2.5vw, 28px);
  border-bottom: 1px solid var(--line);
}
.speclist__row:nth-child(odd) { background: var(--bg-soft); }
.speclist__row:last-child { border-bottom: none; }
.speclist__k { color: var(--muted); }
.speclist__v { color: var(--ink); font-weight: 600; word-break: break-word; }
.speclist__foot { max-width: 900px; margin: 24px auto 0; text-align: center; }

.doc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.doc-btn:hover { background: #000; transform: translateY(-1px); }
.doc-btn svg { width: 20px; height: 20px; }

@media (max-width: 760px) {
  .grow { grid-template-columns: 1fr; gap: 10px; }
  .speclist__row { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================================
   Попап «Позвоните мне» (callback modal)
   Разметку создаёт popup.js, стили — здесь.
   ============================================================ */
.cb-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 24, 33, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.cb-modal.is-open { opacity: 1; visibility: visible; }

.cb-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 34px) clamp(22px, 4vw, 32px) clamp(24px, 4vw, 30px);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.55);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.24s cubic-bezier(0.2, 0.8, 0.3, 1);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
.cb-modal.is-open .cb-modal__dialog { transform: translateY(0) scale(1); }

.cb-modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  background: var(--bg-soft);
  color: var(--muted);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.cb-modal__close:hover { background: #e7ebef; color: var(--ink); transform: rotate(90deg); }

.cb-modal__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.12rem, 2.4vw, 1.32rem);
  line-height: 1.32;
  text-align: center;
  margin: 0 6px 20px;
}

.cb-modal__lead {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 4px 14px;
}
.cb-modal__lead--accent { color: var(--ink); font-weight: 600; }

.cb-modal__form { display: grid; gap: 12px; }
.cb-modal__error {
  color: #D7263D;
  font-size: 0.86rem;
  font-weight: 600;
  margin-top: -2px;
}

.cb-modal__or {
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  margin: 22px 0 14px;
}

.cb-modal__messengers { display: grid; gap: 10px; }
.cb-modal__messengers .btn--msg { width: 100%; padding: 14px 16px; font-size: 0.98rem; gap: 10px; }

/* экран «спасибо» */
.cb-modal__done { text-align: center; padding: 8px 0 4px; }
.cb-modal__done-ico {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(18, 165, 232, 0.12);
  color: var(--blue);
  border-radius: 50%;
  font-size: 1.9rem;
  font-weight: 700;
}
.cb-modal__done-text { color: var(--muted); font-size: 1rem; margin-top: 6px; }
.cb-modal__done-text strong { color: var(--ink); }

body.cb-lock { overflow: hidden; }

@media (max-width: 620px) {
  .cb-modal { padding: 14px; align-items: flex-end; }
  .cb-modal__dialog { max-width: none; border-radius: var(--radius) var(--radius) 0 0; }
  .cb-modal.is-open .cb-modal__dialog { transform: translateY(0); }
  .cb-modal:not(.is-open) .cb-modal__dialog { transform: translateY(100%); }
}
