/* ============================================================
   МУРАВЕЙ — дизайн-система сайта (оригинальная, свой код).
   Бренд: грузчики/разнорабочие, г. Череповец.
   Один файл = переменные, базовые стили, компоненты, адаптив.
   Цвета/радиусы менять здесь, в :root.
   ============================================================ */

:root {
  --yellow: #fc4c13;
  --yellow-d: #d63e0c;
  --ink: #24242c;
  --ink-soft: #2f2f3d;
  --muted: #6b6b76;
  --bg: #d4d7e0;
  --surface: #e3e5eb;
  --bg-soft: #cdd1db;
  --bg-soft-2: #c3c7d3;
  --line: #bfc3cf;
  --blue: #0077ff;
  --green: #30db5b;
  --red: #ff334e;
  --shadow: 0 6px 22px rgba(40, 40, 70, .10);
  --shadow-lg: 0 18px 50px rgba(40, 40, 70, .16);
  --radius: 16px;
  --radius-sm: 14px;
  --radius-pill: 40px;
  --container: 1180px;
  --gap: 24px;
  --font: "Roboto Flex", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; max-width: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg) linear-gradient(180deg, #dde0e7 0%, #d4d7e0 55%, #cfd2dc 100%) fixed;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.mu-noscroll { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; font-weight: 700; overflow-wrap: break-word; }
/* иконки внутри заголовков — фикс. размер (иначе SVG с viewBox растягивается) */
h3 svg, h4 svg { width: 22px; height: 22px; vertical-align: -4px; margin-right: 8px; }
h1 { font-size: clamp(30px, 5vw, 52px); letter-spacing: -.5px; }
h2 { font-size: clamp(26px, 3.6vw, 38px); letter-spacing: -.4px; }
h3 { font-size: clamp(19px, 2.2vw, 23px); }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.section { padding: clamp(48px, 7vw, 92px) 0; }
.section--soft { background: #dcdee6; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h2, .section--ink h3 { color: #fff; }

.section__head { max-width: 720px; margin: 0 auto clamp(28px, 4vw, 48px); text-align: center; }
.section__head--left { margin-left: 0; text-align: left; }
.section__head .eyebrow { display: inline-block; margin-bottom: 12px; }
.section__head p { color: var(--muted); font-size: 18px; margin: 0; }
.section--ink .section__head p { color: rgba(255, 255, 255, .72); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: #fff;
  font-weight: 700; font-size: 13px; letter-spacing: .3px; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--radius-pill);
}
.eyebrow--soft { background: var(--bg-soft-2); color: var(--ink); }
.section--ink .eyebrow--soft { background: rgba(255, 255, 255, .12); color: #fff; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; cursor: pointer; text-align: center;
  font-family: var(--font); font-weight: 700; font-size: 16px; line-height: 1;
  padding: 16px 26px; border-radius: var(--radius-sm);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--yellow); color: #fff; box-shadow: 0 8px 22px rgba(252, 76, 19, .35); }
.btn--primary:hover { background: var(--yellow-d); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #15151b; }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.section--ink .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .25); }
.section--ink .btn--ghost:hover { border-color: #fff; }
.btn--blue { background: var(--blue); color: #fff; }
.btn--lg { padding: 19px 34px; font-size: 17px; }
.btn--sm { padding: 11px 18px; font-size: 14px; border-radius: 12px; }
.btn--block { display: flex; width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--ink); color: rgba(255, 255, 255, .8);
  font-size: 14px; padding: 8px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: rgba(255, 255, 255, .8); }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar .switch_region { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.topbar .switch_region svg { width: 15px; height: 15px; opacity: .8; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 200;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.header .container { display: flex; align-items: center; gap: 22px; min-height: 74px; }
.logo { --l1: #ffffff; --l2: #a8a8b4; display: inline-flex; align-items: center; gap: 12px; }
.logo__mark { height: 34px; width: auto; flex: 0 0 auto; display: block; }
.logo__word { font-family: var(--font); font-weight: 800; font-size: 23px; line-height: 1; letter-spacing: -.3px; color: #fff; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav a {
  padding: 9px 13px; border-radius: 10px; font-weight: 500; font-size: 15px; color: rgba(255, 255, 255, .76);
  transition: background .15s, color .15s;
}
.nav a:hover, .nav a.is-active { background: rgba(255, 255, 255, .12); color: #fff; }
.header__spacer { flex: 1; }
.header__phone { font-weight: 800; font-size: 18px; white-space: nowrap; color: #fff; }
.header__actions { display: flex; align-items: center; gap: 12px; }
.burger {
  display: none; width: 46px; height: 46px; border: 0; background: rgba(255, 255, 255, .12); color: #fff;
  border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; flex: 0 0 auto;
}
.burger svg { width: 24px; height: 24px; }

/* ---------- hero ---------- */
.hero { padding: clamp(40px, 6vw, 80px) 0; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero__text h1 { margin-bottom: 18px; }
.hero__text h1 .accent { color: var(--yellow-d); }
.hero__lead { font-size: 19px; color: var(--muted); max-width: 540px; margin-bottom: 28px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__chips { display: flex; gap: 10px 22px; flex-wrap: wrap; }
.hero__chip { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; color: var(--ink-soft); }
.hero__chip svg { width: 20px; height: 20px; color: var(--yellow-d); flex: 0 0 auto; }
.hero__media { position: relative; }
.hero__media .media-card { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--bg-soft); }
.hero__media .media-card img { width: 100%; height: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.hero__badge {
  position: absolute; left: -14px; bottom: 26px; background: var(--surface); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 14px 18px; display: flex; align-items: center; gap: 13px;
}
.hero__badge .num { font-size: 26px; font-weight: 800; line-height: 1; }
.hero__badge .lbl { font-size: 13px; color: var(--muted); }
.hero__badge .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--yellow); display: flex; align-items: center; justify-content: center; }
.hero__badge .ic svg { width: 24px; height: 24px; }

/* ---------- hero cover (фото на весь блок, текст поверх) ---------- */
.hero-cover { position: relative; isolation: isolate; display: flex; align-items: center; overflow: hidden; background: var(--ink); color: #fff; min-height: clamp(460px, 72vh, 660px); }
.hero-cover__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-cover__scrim { position: absolute; inset: 0; z-index: -1; background: radial-gradient(58% 82% at 26% 52%, rgba(14, 14, 20, .84) 0%, rgba(14, 14, 20, .58) 40%, rgba(14, 14, 20, .2) 70%, rgba(14, 14, 20, 0) 100%); }
.hero-cover--bright .hero-cover__scrim { background: radial-gradient(60% 84% at 26% 52%, rgba(12, 12, 18, .88) 0%, rgba(12, 12, 18, .62) 40%, rgba(12, 12, 18, .24) 70%, rgba(12, 12, 18, 0) 100%); }
.hero-cover .container { width: 100%; }
.hero-cover__inner { max-width: 660px; padding: clamp(40px, 7vw, 72px) 0; }
.hero-cover h1 { color: #fff; margin-bottom: 18px; }
.hero-cover h1 .accent { color: var(--yellow); }
.hero-cover__lead { font-size: clamp(17px, 2.2vw, 21px); color: rgba(255, 255, 255, .86); max-width: 560px; margin-bottom: 28px; }
.hero-cover .hero__cta { margin-bottom: 26px; }
.hero-cover .hero__chip { color: rgba(255, 255, 255, .92); }
.hero-cover .hero__chip svg { color: var(--yellow); }
.hero-cover .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .42); }
.hero-cover .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }
/* плавное появление текста (поверх mu-rise) */
.hero-cover__inner.mu-rise { transform: translateY(28px); }
@media (max-width: 700px) {
  .hero-cover { min-height: 0; }
  .hero-cover__scrim, .hero-cover--bright .hero-cover__scrim { background: linear-gradient(180deg, rgba(14, 14, 22, .58) 0%, rgba(14, 14, 22, .82) 100%); }
  .hero-cover__inner { padding: 56px 0; }
}

/* ---------- image slots (заменяемые на реальные фото) ---------- */
.imgslot { position: relative; width: 100%; background: var(--bg-soft-2); display: block; }
.imgslot img, .imgslot svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.imgslot--hero { aspect-ratio: 4 / 3; }
.imgslot--wide { aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; }
.imgslot--square { aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.stat { text-align: center; padding: 8px; }
.stat__num { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -1px; }
.stat__num b { color: var(--yellow-d); }
.stat__lbl { color: var(--muted); font-size: 15px; margin-top: 4px; }
.section--ink .stat__lbl { color: rgba(255, 255, 255, .65); }

/* грид/флекс-дети не должны распирать страницу из-за min-width:auto */
.hero .container > *, .grid > *, .stats > *, .steps > *, .calc > *, .footer__top > * { min-width: 0; }

/* ---------- generic grid ---------- */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- card ---------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.card--soft { background: var(--bg-soft); box-shadow: none; }
.card--line { box-shadow: none; border: 1px solid var(--line); }

/* service card */
.svc { display: flex; flex-direction: column; height: 100%; transition: transform .2s, box-shadow .2s; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc__ic { width: 58px; height: 58px; border-radius: 15px; background: var(--yellow); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc__ic svg { width: 32px; height: 32px; }
/* фото-баннер в карточке услуги (вместо иконки) */
.svc--photo { padding: 0; overflow: hidden; }
.svc__photo { margin: 0 0 18px; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft-2); }
.svc__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.svc--photo:hover .svc__photo img { transform: scale(1.06); }
.svc--photo > h3, .svc--photo > p, .svc--photo > .svc__price { padding-left: 24px; padding-right: 24px; }
.svc--photo > .svc__price { padding-bottom: 26px; }
.svc h3 { margin-bottom: 10px; }
.svc p { color: var(--muted); font-size: 15px; flex: 1; }
.svc__price { margin-top: 16px; font-weight: 700; }
.svc__price b { font-size: 22px; color: var(--ink); }
.svc__price span { color: var(--muted); font-weight: 500; font-size: 14px; }

/* feature */
.feature { display: flex; gap: 16px; }
.feature__ic { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 14px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; }
.section--ink .feature__ic { background: rgba(255, 255, 255, .1); }
.feature__ic svg { width: 26px; height: 26px; color: var(--yellow-d); }
.section--ink .feature__ic svg { color: var(--yellow); }
.feature h3 { font-size: 19px; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 15px; margin: 0; }
.section--ink .feature p { color: rgba(255, 255, 255, .68); }

/* steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.step { position: relative; padding-top: 8px; }
.step__n { width: 52px; height: 52px; border-radius: 50%; background: var(--ink); color: var(--yellow); font-weight: 800; font-size: 22px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- calculator ---------- */
.calc { display: grid; grid-template-columns: 1.4fr .9fr; gap: var(--gap); align-items: start; }
.calc__form { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(22px, 3vw, 34px); }
.calc__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field > label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; color: var(--ink-soft); }
.field input, .field select {
  width: 100%; font-family: var(--font); font-size: 16px; color: var(--ink);
  background: var(--bg-soft); border: 1.5px solid transparent; border-radius: 12px; padding: 14px 16px;
  transition: border-color .15s, background .15s; outline: none;
}
.field input:focus, .field select:focus { border-color: var(--yellow-d); background: var(--surface); }
.field .control { position: relative; }
/* stepper */
.stepper { display: flex; align-items: center; background: var(--bg-soft); border-radius: 12px; overflow: hidden; }
.stepper button { width: 50px; height: 52px; border: 0; background: transparent; font-size: 24px; cursor: pointer; color: var(--ink); }
.stepper button:hover { background: var(--bg-soft-2); }
.stepper input { text-align: center; border: 0; background: transparent; flex: 1; font-weight: 700; padding: 14px 0; }
.stepper input:focus { background: transparent; border: 0; }
/* dropdown-style input */
.field .pickable { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2324242c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

.calc__result { background: var(--ink); color: #fff; border-radius: var(--radius); padding: clamp(24px, 3vw, 34px); position: sticky; top: 90px; }
.calc__result .lbl { color: rgba(255, 255, 255, .65); font-size: 15px; }
.calc__price { font-size: clamp(38px, 6vw, 54px); font-weight: 800; letter-spacing: -1.5px; margin: 6px 0 4px; }
.calc__price .cur { color: var(--yellow); }
.calc__note { color: rgba(255, 255, 255, .55); font-size: 13px; margin: 14px 0 22px; }
.calc__list { list-style: none; padding: 0; margin: 0 0 24px; }
.calc__list li { display: flex; align-items: center; gap: 10px; padding: 7px 0; color: rgba(255, 255, 255, .85); font-size: 15px; }
.calc__list svg { width: 20px; height: 20px; color: var(--yellow); flex: 0 0 auto; }

/* ---------- price table ---------- */
.ptable { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ptable th, .ptable td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.ptable th { background: var(--bg-soft); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .3px; color: var(--muted); }
.ptable td:last-child, .ptable th:last-child { text-align: right; font-weight: 700; white-space: nowrap; }
.ptable tr:last-child td { border-bottom: 0; }
.ptable tr:hover td { background: var(--bg-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 12px; overflow: hidden; }
.faq__q { width: 100%; text-align: left; border: 0; background: transparent; cursor: pointer; padding: 22px 26px; font-family: var(--font); font-weight: 600; font-size: 18px; color: var(--ink); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq__q .chev { flex: 0 0 auto; transition: transform .25s; display: flex; }
.faq__q .chev svg { width: 22px; height: 22px; }
.faq__item.open .faq__q .chev { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a .inner { padding: 0 26px 24px; color: var(--ink-soft); opacity: .85; line-height: 1.65; }
.faq__a .inner > :last-child { margin-bottom: 0; }
.faq__a .inner ul { margin: 0 0 1em; padding-left: 20px; }

/* ---------- CTA band ---------- */
.cta { background: var(--yellow); border-radius: 28px; padding: clamp(34px, 5vw, 60px); display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta h2 { margin-bottom: 8px; color: #fff; }
.cta p { margin: 0; color: rgba(255, 255, 255, .92); font-size: 18px; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .5); }
.cta .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }

/* ---------- trust / partners band ---------- */
.partners-band { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px; }
.partner-tile { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); min-height: 92px; min-width: 150px; display: flex; align-items: center; justify-content: center; padding: 18px; color: var(--muted); font-weight: 700; }
.partner-slot { border: 2px dashed var(--line); background: var(--bg-soft); color: var(--muted); font-weight: 500; font-size: 14px; text-align: center; }

/* ---------- city band (полноширинное фото города) ---------- */
.cityband { position: relative; isolation: isolate; padding: clamp(64px, 9vw, 124px) 0; color: #fff; background-color: var(--ink); background-size: cover; background-position: center; }
.cityband::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(20, 20, 28, .88) 0%, rgba(20, 20, 28, .66) 50%, rgba(20, 20, 28, .28) 100%); }
.cityband__inner { max-width: 600px; }
.cityband h2 { color: #fff; margin-bottom: 12px; }
.cityband p { color: rgba(255, 255, 255, .82); font-size: 18px; margin: 0; }
.cityband .eyebrow { margin-bottom: 14px; }
.cityband__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.cityband .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .4); }
.cityband .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
@media (max-width: 620px) {
  .cityband::before { background: linear-gradient(180deg, rgba(20, 20, 28, .82), rgba(20, 20, 28, .72)); }
  .cityband__cta { flex-direction: column; }
  .cityband__cta .btn { width: 100%; }
}
/* светлый вариант полосы — 3D-карта районов */
.cityband--map { background-color: var(--bg); color: var(--ink); background-position: right center; }
.cityband--map::before { background: linear-gradient(90deg, var(--bg) 0%, rgba(212, 215, 224, .95) 34%, rgba(212, 215, 224, .6) 56%, rgba(212, 215, 224, .14) 80%, rgba(212, 215, 224, 0) 100%); }
.cityband--map h2 { color: var(--ink); }
.cityband--map p { color: var(--muted); }
.cityband--map .btn--ghost { color: var(--ink); border-color: var(--line); }
.cityband--map .btn--ghost:hover { border-color: var(--ink); background: transparent; }
@media (max-width: 700px) {
  .cityband--map::before { background: linear-gradient(180deg, rgba(212, 215, 224, .9), rgba(212, 215, 224, .8)); }
}

/* ---------- illustration cards (3D-картинки, тёмная секция) ---------- */
.illus-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.illus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.illus-card__img { aspect-ratio: 16 / 11; background: #fff; overflow: hidden; padding: 12px; }
.illus-card__img img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s ease; }
.illus-card:hover .illus-card__img img { transform: scale(1.05); }
.illus-card__body { padding: 22px 24px 26px; }
.illus-card__body h3 { margin-bottom: 8px; color: var(--ink); }
.illus-card__body p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ---------- reviews ---------- */
.review { display: flex; flex-direction: column; height: 100%; }
.review__stars { color: var(--yellow-d); letter-spacing: 2px; margin-bottom: 10px; }
.review p { flex: 1; color: var(--ink-soft); }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.review__ava { width: 44px; height: 44px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--ink); }
.review__who b { display: block; font-size: 15px; }
.review__who span { font-size: 13px; color: var(--muted); }

/* ---------- list with checks ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before { content: ""; flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--yellow); margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%2324242c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* ---------- article / legal text ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 1.4em; }
.prose h3 { margin-top: 1.2em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: .5em; }
.prose .note { background: var(--bg-soft); border-left: 4px solid var(--yellow); border-radius: 10px; padding: 16px 20px; color: var(--muted); }
.page-head { padding: clamp(36px, 5vw, 60px) 0 0; }
.breadcrumbs { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.breadcrumbs a:hover { color: var(--ink); }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, .7); padding: clamp(44px, 6vw, 72px) 0 28px; }
.footer a { color: rgba(255, 255, 255, .7); }
.footer a:hover { color: #fff; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.footer .logo__mark { height: 40px; }
.footer__about { color: rgba(255, 255, 255, .6); font-size: 15px; margin: 16px 0 18px; max-width: 320px; }
.footer__col h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; font-size: 15px; }
.footer__phone { font-size: 24px; font-weight: 800; color: #fff; display: block; margin-bottom: 8px; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a { width: 44px; height: 44px; border-radius: 12px; background: rgba(255, 255, 255, .1); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.footer__social a:hover { background: var(--yellow); color: var(--ink); }
.footer__social svg { width: 22px; height: 22px; }
.footer__bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255, 255, 255, .5); }
.footer__bottom a { text-decoration: underline; }
.footer__req { font-size: 13px; color: rgba(255, 255, 255, .45); margin-top: 14px; line-height: 1.6; }

/* ---------- modal ---------- */
.mu-overlay { position: fixed; inset: 0; background: rgba(20, 20, 30, .55); backdrop-filter: blur(3px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .25s; }
.mu-overlay.open { opacity: 1; visibility: visible; }
.mu-modal { position: relative; background: var(--surface); border-radius: 22px; width: min(440px, 100%); max-height: 90vh; overflow: auto; padding: 34px 30px; box-shadow: var(--shadow-lg); transform: translateY(12px); transition: transform .25s; }
.mu-overlay.open .mu-modal { transform: none; }
.mu-modal h3 { font-size: 24px; }
.mu-sub { color: var(--muted); margin-bottom: 20px; }
.mu-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--bg-soft); font-size: 17px; cursor: pointer; color: var(--ink); }
.mu-close:hover { background: var(--bg-soft-2); }
.mu-modal form { display: flex; flex-direction: column; gap: 12px; }
.mu-modal input { font-family: var(--font); font-size: 16px; background: var(--bg-soft); border: 1.5px solid transparent; border-radius: 12px; padding: 15px 16px; outline: none; }
.mu-modal input:focus { border-color: var(--yellow-d); background: var(--surface); }
.mu-consent { font-size: 12px; color: var(--muted); margin: 4px 0 0; line-height: 1.5; }
.mu-consent a { color: var(--blue); text-decoration: underline; }
.mu-submit { background: var(--yellow); color: var(--ink); border: 0; border-radius: 12px; padding: 16px; font-family: var(--font); font-weight: 700; font-size: 16px; cursor: pointer; transition: background .2s; }
.mu-submit:hover { background: var(--yellow-d); }
.mu-ok { text-align: center; padding: 10px 0; }
.mu-ok svg { margin: 0 auto 14px; }

/* ---------- mobile menu ---------- */
.mu-menu { position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); background: var(--surface); z-index: 1001; transform: translateX(100%); transition: transform .3s; box-shadow: -10px 0 40px rgba(0, 0, 0, .18); display: flex; flex-direction: column; padding: 22px; overflow: auto; }
.mu-menu.open { transform: none; }
.mu-menu__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mu-menu__head b { font-size: 18px; }
.mu-menu a.mu-menu__link { display: block; padding: 14px 4px; font-weight: 500; font-size: 17px; border-bottom: 1px solid var(--line); }
.mu-menu__back { position: fixed; inset: 0; background: rgba(0, 0, 0, .4); z-index: 1000; opacity: 0; visibility: hidden; transition: .3s; }
.mu-menu__back.open { opacity: 1; visibility: visible; }

/* ---------- floating chat ---------- */
.mu-chat { position: fixed; right: 24px; bottom: 24px; width: 60px; height: 60px; border-radius: 50%; background: var(--yellow); border: 0; cursor: pointer; box-shadow: 0 10px 30px rgba(0, 0, 0, .28); z-index: 900; display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.mu-chat:hover { transform: scale(1.08); }
.mu-chat svg { width: 28px; height: 28px; }

/* ---------- scroll animations ---------- */
.mu-rise { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.mu-rise.mu-in { opacity: 1; transform: none; }

/* ---------- helpers ---------- */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.hide-mobile { }
.lead { font-size: 19px; color: var(--muted); }

/* ============================================================
   Адаптив
   ============================================================ */
@media (max-width: 980px) {
  .nav, .header__phone { display: none; }
  .burger { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 520px; }
  .calc { grid-template-columns: 1fr; }
  .calc__result { position: static; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 620px) {
  .topbar__left .switch_region ~ * { display: none; }
  .topbar > .container > a[href^="tel"] { display: none; }
  .logo__wide { height: 38px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .grid--2, .grid--4, .grid--3, .steps { grid-template-columns: 1fr; }
  .calc__row { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta__actions { width: 100%; }
  .cta__actions .btn { flex: 1; }
  .footer__top { grid-template-columns: 1fr; }
  .ptable th, .ptable td { padding: 13px 14px; font-size: 14px; }
  .section { padding: 44px 0; }
}
