/* ============================================================
   komputer-doctor.ru — SEO-шаблон («рыба»)
   Доверительный + технологичный. Синие тона.
   ============================================================ */

:root {
  /* Бренд / акценты (можно крутить в Tweaks) */
  --brand: #1763d6;          /* доверительный синий */
  --brand-600: #1453b8;
  --brand-700: #103f8c;
  --brand-050: #eef4ff;
  --brand-100: #dce8ff;
  --accent: #12a45a;         /* зелёный: бесплатно / гарантия */
  --accent-050: #e8f7ee;
  --warn: #e8742a;           /* срочность / скидка */

  /* Нейтральные (прохладный оттенок) */
  --ink: #0e1726;
  --ink-2: #34415a;
  --muted: #6b7689;
  --line: #e3e8f0;
  --line-2: #eef1f6;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-deep: #0d1a33;        /* тёмный футер/секции */

  /* Типографика */
  --font-head: "Onest", system-ui, sans-serif;
  --font-body: "Golos Text", system-ui, sans-serif;

  /* Радиусы / тени */
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(14,23,38,.06), 0 2px 8px rgba(14,23,38,.05);
  --shadow: 0 6px 24px rgba(16,63,140,.10);
  --shadow-lg: 0 18px 50px rgba(16,63,140,.16);

  --wrap: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; letter-spacing: -.01em; margin: 0; color: var(--ink); }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--brand-100); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.section { padding: 76px 0; }
.section--soft { background: var(--bg-soft); }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--brand);
  margin-bottom: 14px;
}
.section__eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brand); border-radius: 2px; }
.section__title { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; text-wrap: balance; }
.section__lead { color: var(--ink-2); max-width: 760px; font-size: 18px; }
.center { text-align: center; }
.center .section__eyebrow { justify-content: center; }
.center .section__lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; font-family: var(--font-head);
  font-weight: 600; font-size: 16px; line-height: 1; white-space: nowrap;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 8px 22px rgba(23,99,214,.30); }
.btn--primary:hover { background: var(--brand-600); box-shadow: 0 10px 26px rgba(23,99,214,.40); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(18,164,90,.28); }
.btn--accent:hover { filter: brightness(1.05); }
.btn--ghost { background: #fff; color: var(--brand); box-shadow: inset 0 0 0 1.5px var(--brand-100); }
.btn--ghost:hover { background: var(--brand-050); }
.btn--white { background: #fff; color: var(--brand); }
.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__top {
  display: flex; align-items: center; gap: 24px;
  padding: 13px 0; min-height: 70px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  background: linear-gradient(140deg, var(--brand), var(--brand-700));
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 6px 16px rgba(23,99,214,.32);
}
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.brand__city { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav a { font-weight: 500; font-size: 15.5px; color: var(--ink-2); transition: color .15s; }
.nav a:hover { color: var(--brand); }
.nav a.is-active { color: var(--brand); font-weight: 600; }
.nav a.is-active::after { content: ""; display: block; height: 2px; background: var(--brand); border-radius: 2px; margin-top: 3px; }
.header__contact { display: flex; align-items: center; gap: 16px; }
.header__right { display: flex; align-items: center; gap: 14px; }
.header__msgrs { display: flex; align-items: center; gap: 8px; }
.msgr-btn {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  display: grid; place-items: center; color: #fff;
  transition: transform .12s ease, box-shadow .15s ease, filter .15s ease;
}
.msgr-btn:hover { transform: translateY(-2px); filter: brightness(1.07); }
.msgr-btn:active { transform: translateY(0); }
.msgr-btn--tg { background: linear-gradient(160deg, #2ca5e0, #1d8fcc); box-shadow: 0 5px 14px rgba(34,158,217,.32); }
.msgr-btn--max { background: transparent; box-shadow: 0 5px 14px rgba(108,76,255,.30); overflow: hidden; }
.msgr-btn--max svg, .msgr-btn--max img { width: 42px; height: 42px; display: block; }
.msgr-btn svg, .msgr-btn span { display: block; }
.header__phone { font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: -.01em; white-space: nowrap; }
.header__phone small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 12px; color: var(--muted); letter-spacing: 0; }
.burger { display: none; width: 44px; height: 44px; border-radius: 11px; background: var(--brand-050); place-items: center; }
.burger span, .burger span::before, .burger span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--brand); border-radius: 2px; position: relative;
}
.burger span::before { position: absolute; top: -6px; } .burger span::after { position: absolute; top: 6px; }

/* мобильное меню */
.mobile-menu { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg-deep); color: #eaf0fb; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 78% -10%, rgba(23,99,214,.55), transparent 60%),
    radial-gradient(700px 500px at 10% 110%, rgba(18,60,140,.45), transparent 55%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
  padding: 64px 0 72px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 15px; border-radius: 999px; font-size: 14px; font-weight: 500; color: #cfe0ff;
  margin-bottom: 22px;
}
.hero__badge b { color: #fff; }
.hero h1 { font-size: clamp(30px, 4.4vw, 52px); color: #fff; margin-bottom: 18px; text-wrap: balance; }
.hero h1 .accent { color: #74b3ff; }
.hero__sub { font-size: 19px; color: #b9c7e0; max-width: 540px; margin-bottom: 26px; }
.hero__price {
  display: inline-flex; align-items: baseline; gap: 8px; margin-bottom: 26px;
  background: rgba(18,164,90,.16); border: 1px solid rgba(18,164,90,.4);
  padding: 10px 18px; border-radius: 14px;
}
.hero__price .from { font-size: 14px; color: #9fe6bf; }
.hero__price .num { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: #fff; }
.hero__price .cur { font-size: 16px; color: #cfe0ff; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__usps { display: flex; flex-wrap: wrap; gap: 18px 28px; }
.hero__usp { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: #cdd9ef; }
.hero__usp svg { flex: none; color: #74b3ff; }

/* hero форма */
.lead-card {
  background: #fff; color: var(--ink); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-lg);
}
.lead-card__title { font-size: 21px; margin-bottom: 6px; }
.lead-card__note { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.field { margin-bottom: 12px; }
.field input {
  width: 100%; padding: 14px 16px; font: inherit; font-size: 16px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--bg-soft);
  transition: border-color .15s, background .15s;
}
.field input:focus { outline: none; border-color: var(--brand); background: #fff; }
.field input.invalid { border-color: #e0443e; background: #fdf1f1; }
.lead-card .btn { margin-top: 4px; }
.lead-card__consent { font-size: 12px; color: var(--muted); margin-top: 12px; line-height: 1.45; }
.lead-card__consent a { color: var(--brand); text-decoration: underline; }
.lead-card__trust { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 13px; color: var(--ink-2); }
.lead-card__trust svg { color: var(--accent); flex: none; }

/* ---------- USP полоса ---------- */
.usp-bar { background: #fff; border-bottom: 1px solid var(--line); }
.usp-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.usp-bar__item { display: flex; align-items: center; gap: 14px; padding: 22px 24px; border-left: 1px solid var(--line-2); min-width: 0; }
.usp-bar__item > div { min-width: 0; }
.usp-bar__item:first-child { border-left: none; }
.usp-bar__ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--brand-050); color: var(--brand); display: grid; place-items: center; }
.usp-bar__item b { display: block; font-family: var(--font-head); font-size: 15.5px; overflow-wrap: anywhere; }
.usp-bar__item span { font-size: 13.5px; color: var(--muted); overflow-wrap: anywhere; }

/* ---------- Услуги (4 направления) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; overflow: hidden; transition: transform .15s, box-shadow .2s, border-color .2s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-100); }
.svc__ic { width: 56px; height: 56px; border-radius: 15px; background: var(--brand-050); color: var(--brand); display: grid; place-items: center; margin-bottom: 18px; }
.svc h3 { font-size: 22px; margin-bottom: 10px; }
.svc p { color: var(--ink-2); font-size: 16px; margin-bottom: 16px; }
.svc__list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.svc__list li { font-size: 13.5px; background: var(--bg-soft); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; color: var(--ink-2); }
.svc__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.svc__price { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.svc__price b { color: var(--brand); font-size: 22px; }
.svc__link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; color: var(--brand); font-size: 15px; }
.svc__link svg { transition: transform .15s; }
.svc:hover .svc__link svg { transform: translateX(3px); }

/* ---------- Проблемы ---------- */
.problems-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.problem { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.problem__ic { width: 40px; height: 40px; border-radius: 11px; background: #fff2ea; color: var(--warn); display: grid; place-items: center; margin-bottom: 12px; }
.problem h4 { font-size: 16.5px; margin-bottom: 10px; }
.problem ul { display: flex; flex-direction: column; gap: 6px; }
.problem li { font-size: 14px; color: var(--ink-2); display: flex; gap: 8px; }
.problem li::before { content: "—"; color: var(--brand); }

/* ---------- Этапы работы ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); }
.step__num {
  counter-increment: step; width: 46px; height: 46px; border-radius: 13px;
  background: var(--brand); color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 21px; margin-bottom: 16px;
}
.step__num::before { content: counter(step); }
.step h4 { font-size: 17.5px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-2); }
.step::after {
  content: ""; position: absolute; top: 52px; right: -12px; width: 24px; height: 2px;
  background: var(--brand-100);
}
.step:last-child::after { display: none; }

/* ---------- Прайс ---------- */
.price-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.price-tab {
  padding: 11px 20px; border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: 15px;
  background: #fff; border: 1.5px solid var(--line); color: var(--ink-2); transition: all .15s;
}
.price-tab.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.price-tab:hover:not(.active) { border-color: var(--brand-100); color: var(--brand); }
.price-panel { display: none; }
.price-panel.active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.price-table { width: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 22px; border-top: 1px solid var(--line-2); }
.price-row:first-child { border-top: none; }
.price-row:nth-child(even) { background: var(--bg-soft); }
.price-row__name { font-size: 16px; color: var(--ink); }
.price-row__val { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--brand); white-space: nowrap; }
.price-row__val.free { color: var(--accent); }
.price-note { font-size: 13.5px; color: var(--muted); margin-top: 16px; font-style: italic; }

/* ---------- Мастера ---------- */
.masters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.master { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.master__photo { aspect-ratio: 1/1; background: var(--bg-soft); width: 100%; height: auto; object-fit: cover; display: block; }
.master__body { padding: 18px 20px; }
.master__body b { font-family: var(--font-head); font-size: 17px; display: block; }
.master__role { color: var(--brand); font-size: 14px; margin: 2px 0 6px; }
.master__exp { font-size: 13.5px; color: var(--muted); }

/* ---------- Отзывы ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.review__stars { color: #f5a623; font-size: 17px; letter-spacing: 2px; margin-bottom: 12px; }
.review p { font-size: 15.5px; color: var(--ink-2); margin-bottom: 18px; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__ava { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-050); color: var(--brand); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; flex: none; }
.review__author b { font-family: var(--font-head); font-size: 15.5px; display: block; }
.review__author span { font-size: 13px; color: var(--muted); }
.review__task { display: inline-block; font-size: 12.5px; font-weight: 600; color: var(--brand); background: var(--brand-050); padding: 4px 11px; border-radius: 999px; margin-bottom: 16px; }

/* ---------- Кейсы ---------- */
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.case { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.case__img { aspect-ratio: 16/10; background: var(--bg-soft); width: 100%; height: auto; object-fit: cover; display: block; }
.case__body { padding: 22px; }
.case__tag { display: inline-block; font-size: 12.5px; font-weight: 600; color: var(--brand); background: var(--brand-050); padding: 4px 11px; border-radius: 999px; margin-bottom: 12px; }
.case h4 { font-size: 17.5px; margin-bottom: 8px; }
.case p { font-size: 14.5px; color: var(--ink-2); margin-bottom: 14px; }
.case__meta { display: flex; gap: 20px; border-top: 1px solid var(--line-2); padding-top: 14px; }
.case__meta div span { display: block; font-size: 12px; color: var(--muted); }
.case__meta div b { font-family: var(--font-head); font-size: 16px; color: var(--ink); }

/* ---------- Гарантия / доверие ---------- */
.trust-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trust-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; }
.trust-card__ic { width: 54px; height: 54px; border-radius: 14px; background: var(--accent-050); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; }
.trust-card h3 { font-size: 19px; margin-bottom: 10px; }
.trust-card p { font-size: 15px; color: var(--ink-2); }

/* сертификаты */
.certs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
.cert { aspect-ratio: 3/4; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }

/* ---------- Бренды ---------- */
.brands { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.brand-chip {
  font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line); padding: 11px 20px; border-radius: 12px;
}

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 17.5px; color: var(--ink);
}
.faq__q svg { flex: none; color: var(--brand); transition: transform .2s; }
.faq__item.open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq__a-inner { padding: 0 24px 22px; color: var(--ink-2); font-size: 16px; }

/* ---------- CTA-полоса ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--bg-deep); color: #fff; border-radius: 0; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 85% 10%, rgba(23,99,214,.5), transparent 60%);
}
.cta-band__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: 50px 0; }
.cta-band h2 { font-size: clamp(26px, 3vw, 36px); color: #fff; margin-bottom: 8px; }
.cta-band p { color: #b9c7e0; font-size: 17px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-band__phone { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: #fff; }

/* ---------- Footer ---------- */
.footer { background: #0a1426; color: #aab6cd; padding: 56px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { font-size: 14.5px; margin-top: 14px; max-width: 320px; }
.footer h5 { font-family: var(--font-head); color: #fff; font-size: 15px; margin-bottom: 16px; letter-spacing: .02em; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14.5px; transition: color .15s; }
.footer ul a:hover { color: #fff; }
.footer__phone { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: #fff; }
.footer__hours { font-size: 14px; margin-top: 6px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #76849e; }
.footer__bottom a { text-decoration: underline; }

/* ---------- Плавающие действия (моб.) ---------- */
.float-call { display: none; }

/* ---------- Модальное окно ---------- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(8,16,32,.55); backdrop-filter: blur(3px);
  z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop.open { display: flex; animation: fade .2s; }
.modal { background: #fff; border-radius: var(--r-lg); padding: 32px; max-width: 420px; width: 100%; position: relative; box-shadow: var(--shadow-lg); }
.modal__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 10px; background: var(--bg-soft); display: grid; place-items: center; color: var(--muted); }
.modal__close:hover { background: var(--line); }
.modal h3 { font-size: 23px; margin-bottom: 6px; }
.modal__note { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.modal__ok { text-align: center; padding: 20px 0; }
.modal__ok svg { color: var(--accent); margin: 0 auto 14px; }
.modal__ok h3 { margin-bottom: 8px; }
.modal__ok p { color: var(--ink-2); }

/* Плейсхолдеры изображений (заменить на реальные фото) */
.ph {
  position: relative; background-color: var(--bg-soft);
  background-image: repeating-linear-gradient(135deg, rgba(23,99,214,.06) 0 12px, rgba(23,99,214,.02) 12px 24px);
  display: grid; place-items: center; color: #9aa6bd;
}
.ph::after {
  content: attr(data-label); font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px; letter-spacing: .02em; text-align: center; padding: 0 14px; max-width: 90%;
}

/* Хлебные крошки */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 14px; color: var(--muted); padding: 18px 0 0; }
.crumbs a { color: var(--muted); transition: color .15s; }
.crumbs a:hover { color: var(--brand); }
.crumbs span { color: var(--ink-2); }
.crumbs .sep { opacity: .5; }

/* Подстраничный hero (услуги) */
.subhero { position: relative; overflow: hidden; background: var(--bg-deep); color: #eaf0fb; }
.subhero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(820px 460px at 80% -10%, rgba(23,99,214,.5), transparent 60%),
              radial-gradient(620px 440px at 8% 115%, rgba(18,60,140,.4), transparent 55%);
}
.subhero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding: 52px 0 60px; }
.subhero h1 { font-size: clamp(28px, 4vw, 46px); color: #fff; margin-bottom: 16px; text-wrap: balance; }
.subhero h1 .accent { color: #74b3ff; }
.subhero__sub { font-size: 18px; color: #b9c7e0; max-width: 540px; margin-bottom: 24px; }
.subhero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.subhero__chip { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #cdd9ef; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 8px 14px; border-radius: 999px; }
.subhero__chip svg { color: #74b3ff; flex: none; }
.subhero__cta { display: flex; flex-wrap: wrap; gap: 13px; }

/* Двухколоночный контент услуги */
.svc-cols { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }
.svc-body h2 { font-size: clamp(24px, 2.6vw, 32px); margin: 0 0 16px; }
.svc-body h3 { font-size: 20px; margin: 28px 0 12px; }
.svc-body p { color: var(--ink-2); margin-bottom: 14px; }
.svc-body ul.ticks { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.svc-body ul.ticks li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-2); }
.svc-body ul.ticks li::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background: var(--accent-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2312a45a' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat; }

/* Прилипающая карточка-заявка сбоку */
.svc-aside { position: sticky; top: 92px; }

/* Блок «другие услуги» (статичная перелинковка) */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related__card { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; transition: border-color .15s, transform .15s, box-shadow .2s; }
.related__card:hover { border-color: var(--brand-100); transform: translateY(-3px); box-shadow: var(--shadow); }
.related__ic { width: 44px; height: 44px; flex: none; border-radius: 11px; background: var(--brand-050); color: var(--brand); display: grid; place-items: center; }
.related__card b { font-family: var(--font-head); font-size: 16px; display: block; }
.related__card span { font-size: 13px; color: var(--muted); }

@media (max-width: 1024px) {
  .subhero__grid { grid-template-columns: 1fr; gap: 30px; }
  .svc-cols { grid-template-columns: 1fr; gap: 32px; }
  .svc-aside { position: static; }
  .related { grid-template-columns: 1fr; }
}

/* Зоны выезда */
.zones { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.zones__list { columns: 2; column-gap: 28px; margin-top: 4px; }
.zones__list li { display: flex; align-items: flex-start; gap: 9px; padding: 7px 0; color: var(--ink-2); font-size: 15.5px; break-inside: avoid; }
.zones__list li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 1px; border-radius: 5px; background: var(--brand-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231763d6' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat; }
.zones__card { background: var(--bg-deep); color: #eaf0fb; border-radius: var(--r-lg); padding: 30px; position: relative; overflow: hidden; }
.zones__card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px 240px at 90% -10%, rgba(23,99,214,.5), transparent 60%); }
.zones__card > * { position: relative; z-index: 1; }
.zones__card h3 { color: #fff; font-size: 21px; margin-bottom: 10px; }
.zones__card p { color: #b9c7e0; font-size: 15px; margin-bottom: 18px; }
.zones__card .btn { width: 100%; }
@media (max-width: 1024px) { .zones { grid-template-columns: 1fr; gap: 26px; } }
@media (max-width: 600px) { .zones__list { columns: 1; } }

/* SEO-текст */
.seo-text { columns: 2; column-gap: 44px; color: var(--ink-2); font-size: 15.5px; }
.seo-text p { margin-bottom: 14px; break-inside: avoid; }
.seo-text h3 { font-size: 19px; margin: 0 0 10px; color: var(--ink); -webkit-column-break-after: avoid; }

/* ---------- Адаптив ---------- */
@media (max-width: 1100px) {
  .nav, .header__phone small { display: none; }
  .burger { display: grid; }
  /* мобильное меню панель */
  .mobile-menu { position: fixed; inset: 0; z-index: 70; background: rgba(8,16,32,.5); display: none; }
  .mobile-menu.open { display: block; }
  .mobile-menu__panel { position: absolute; top: 0; right: 0; bottom: 0; width: 78%; max-width: 320px; background: #fff; padding: 24px; overflow-y: auto; box-shadow: var(--shadow-lg); }
  .mobile-menu__panel a { display: block; padding: 13px 0; font-family: var(--font-head); font-weight: 600; font-size: 18px; border-bottom: 1px solid var(--line-2); }
  .mobile-menu__msgrs { display: flex; gap: 10px; margin-top: 16px; }
  .mobile-menu__msgrs a { border-bottom: none; padding: 0; }
}
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .usp-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .usp-bar__item:nth-child(3) { border-left: none; }
  .usp-bar__item { border-top: 1px solid var(--line-2); }
  .usp-bar__item:nth-child(-n+2) { border-top: none; }
  .problems-grid, .masters-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .reviews-grid, .cases-grid, .trust-band, .certs { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .seo-text { columns: 1; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .wrap { padding: 0 16px; }
  .crumbs { padding: 14px 0 2px; }
  .subhero__grid { padding: 40px 0 44px; }
  .header .brand { display: none; }
  .header__contact { width: 100%; justify-content: space-between; gap: 8px; min-width: 0; }
  .header__contact::before { content: ""; flex: 1 1 0; min-width: 0; }
  .header__phone { flex: 0 0 auto; text-align: center; font-size: 15px; white-space: nowrap; }
  .header__right { flex: 1 1 0; display: flex; align-items: center; justify-content: flex-end; gap: 7px; }
  .header__msgrs { display: flex; gap: 6px; }
  .header__top { gap: 6px; padding: 10px 0; min-height: 58px; }
  .header__msgrs .msgr-btn { width: 32px; height: 32px; }
  .header__msgrs .msgr-btn--max svg, .header__msgrs .msgr-btn--max img { width: 32px; height: 32px; }
  .burger { width: 32px; height: 32px; }
  .usp-bar__item { padding: 16px 14px; gap: 11px; }
  .usp-bar__ic { width: 40px; height: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .problems-grid, .steps, .masters-grid, .reviews-grid, .cases-grid, .trust-band, .certs { grid-template-columns: 1fr; }
  .price-row { flex-direction: row; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .float-call {
    display: flex; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 60; gap: 10px;
  }
  .float-call .btn { flex: 1; box-shadow: var(--shadow-lg); }
  body { padding-bottom: 76px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 380px) {
  .header__phone { font-size: 13px; }
  .header__msgrs .msgr-btn, .burger { width: 30px; height: 30px; }
  .header__msgrs .msgr-btn--max svg, .header__msgrs .msgr-btn--max img { width: 30px; height: 30px; }
}
