/* ============================================================
   ВидеоМир74 — дизайн-система
   Палитра: глубокий синий (надёжность) + оранжевый акцент (внимание)
   Без внешних шрифтов и библиотек — скорость прежде всего
   ============================================================ */

:root {
  --navy: #0b1524;
  --navy-2: #12233c;
  --navy-3: #1a3050;
  --accent: #ea580c;
  --accent-strong: #c2410c;
  --accent-hover: #9a3412;
  --accent-soft: #fff3ea;
  --accent-text: #f97316;
  --rec: #ff3b30;
  --bg: #ffffff;
  --bg-soft: #f3f6fa;
  --line: #e2e8f1;
  --text: #14213a;
  --muted: #5b6b82;
  --on-dark: #e8eef7;
  --on-dark-muted: #97a8c0;
  --radius: 14px;
  --radius-s: 10px;
  --shadow: 0 4px 24px rgba(11, 21, 36, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 21, 36, 0.16);
  --container: 1200px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-wrap: break-word;
}

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

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

h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }

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

.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--navy); color: var(--on-dark); }
.section-dark .section-lead { color: var(--on-dark-muted); }

.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-lead { color: var(--muted); font-size: 1.06rem; margin: 0; }

.grid { display: grid; gap: 20px; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 0;
  border-radius: var(--radius-s);
  background: var(--accent-strong);
  color: #fff;
  font: 700 1rem var(--font);
  cursor: pointer;
  transition: background 0.18s, transform 0.12s;
  white-space: nowrap;
}
.btn:hover { background: var(--accent-hover); }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 32px; font-size: 1.06rem; }
.btn-outline {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 2px var(--line);
}
.btn-outline:hover { background: var(--bg-soft); box-shadow: inset 0 0 0 2px var(--muted); }
.section-dark .btn-outline, .hero .btn-outline, .page-hero .btn-outline, .cta-band .btn-outline {
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(232, 238, 247, 0.55);
}
.section-dark .btn-outline:hover, .hero .btn-outline:hover, .page-hero .btn-outline:hover, .cta-band .btn-outline:hover {
  background: rgba(232, 238, 247, 0.12);
  box-shadow: inset 0 0 0 2px #fff;
}
.btn-block { width: 100%; }

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

/* ---------- Верхняя полоска ---------- */
.topbar {
  background: var(--navy);
  color: var(--on-dark-muted);
  font-size: 0.85rem;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 15px; height: 15px; flex: none; }
.topbar-right { display: flex; gap: 18px; }

/* ---------- Шапка ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 16px; min-height: 68px; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; }
.logo-mark { position: relative; width: 38px; height: 38px; flex: none; }
.logo-mark span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 255, 255, 0.5) 0 8%, transparent 26%),
    radial-gradient(circle at 50% 50%, var(--navy-3) 0 28%, var(--navy-2) 30% 52%, var(--navy) 54% 74%, var(--navy-3) 76% 100%);
  box-shadow: inset 0 0 0 2.5px var(--accent);
}
.logo-mark::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rec);
  border: 2px solid #fff;
}
.logo-name b { color: var(--accent); }

.nav { display: flex; gap: 2px; margin-left: auto; }
.nav > div { position: relative; }
.nav a, .nav button.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 9px;
  border: 0;
  background: none;
  font: 500 0.92rem var(--font);
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}
.nav a:hover, .nav button.nav-link:hover { background: var(--bg-soft); color: var(--accent-strong); }
.nav .caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  z-index: 60;
}
/* Открытие по клику (тач, клавиатура) и по наведению — только на устройствах с мышью */
.nav > div.open .dropdown, .nav > div:focus-within .dropdown { display: block; }
@media (hover: hover) and (pointer: fine) {
  .nav > div:hover .dropdown { display: block; }
}
.dropdown a { display: flex; width: 100%; padding: 9px 12px; border-radius: 7px; font-weight: 500; }

.header-phone { text-align: right; line-height: 1.25; flex: none; }
.header-phone a.phone-link { font-weight: 800; font-size: 1.02rem; white-space: nowrap; }
.header-phone a.phone-link:hover { color: var(--accent-strong); }
.header-phone small { color: var(--muted); font-size: 0.78rem; }
.header-cta { flex: none; }
.header-cta .btn { padding: 12px 18px; font-size: 0.95rem; }

/* Компактная кнопка звонка — только на мобильных, вместо текстового номера */
.header-call {
  display: none;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  place-items: center;
}
.header-call:hover { background: var(--accent-hover); }

.burger {
  display: none;
  border: 0;
  background: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  cursor: pointer;
  color: var(--text);
  flex: none;
}

/* ---------- Мобильное меню ---------- */
.mobile-menu {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 12px 0 20px;
  max-height: calc(100vh - 68px);
  overflow: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 11px 4px; font-weight: 600; border-bottom: 1px solid var(--bg-soft); }
.mobile-menu details { border-bottom: 1px solid var(--bg-soft); }
.mobile-menu summary { padding: 11px 4px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.mobile-menu summary::after { content: "+"; color: var(--accent); font-size: 1.2rem; font-weight: 700; }
.mobile-menu details[open] summary::after { content: "–"; }
.mobile-menu details a { padding-left: 18px; font-weight: 500; border-bottom: 0; }
.mobile-menu .btn { margin-top: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(234, 88, 12, 0.16), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy) 100%);
  color: var(--on-dark);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(151, 168, 192, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(151, 168, 192, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(80% 90% at 50% 30%, #000 30%, transparent 100%);
}
.hero-lens {
  position: absolute;
  right: -140px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 32%, rgba(255, 255, 255, 0.13) 0 6%, transparent 22%),
    radial-gradient(circle at 50% 50%, #0e1c31 0 22%, #16294a 24% 38%, #0b1524 40% 55%, #142845 57% 72%, #0b1524 74% 100%);
  box-shadow: 0 0 0 1px rgba(151, 168, 192, 0.18), 0 0 120px rgba(234, 88, 12, 0.14);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) 0;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--accent-text); }
.hero-sub { font-size: 1.13rem; color: var(--on-dark-muted); max-width: 560px; }

.badge-rec {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(232, 238, 247, 0.08);
  border: 1px solid rgba(232, 238, 247, 0.16);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--on-dark);
  margin-bottom: 22px;
}
.badge-rec i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rec);
  animation: blink 1.6s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.hero-points { display: grid; gap: 10px; margin: 22px 0 28px; padding: 0; list-style: none; }
.hero-points li { display: flex; gap: 10px; align-items: flex-start; color: var(--on-dark); font-weight: 500; }
.hero-points svg { color: var(--accent-text); flex: none; margin-top: 3px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Карточка формы ---------- */
.lead-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(22px, 3vw, 32px);
}
.lead-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.lead-card .lead-note { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; }
.lead-form { display: grid; gap: 12px; }
.lead-form label { font-size: 0.86rem; font-weight: 600; display: block; margin-bottom: 5px; }
.lead-form input, .lead-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  font: 400 1rem var(--font);
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s;
}
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--accent); outline: none; }
.lead-form textarea { resize: vertical; min-height: 76px; }
.form-consent { font-size: 0.78rem; color: var(--muted); }
.form-consent a { text-decoration: underline; }
.form-status { font-weight: 600; font-size: 0.95rem; display: none; }
.form-status.ok { display: block; color: #15803d; }
.form-status.err { display: block; color: #b91c1c; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Полоса доверия ---------- */
.trustbar { background: var(--navy-2); color: var(--on-dark); }
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 20px 0;
}
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 0.93rem; line-height: 1.35; }
.trust-item svg { color: var(--accent-text); flex: none; }
.trust-item b { display: block; font-size: 1rem; }
.trust-item span { color: var(--on-dark-muted); font-size: 0.85rem; }

/* ---------- Карточки услуг ---------- */
.services-grid { grid-template-columns: repeat(4, 1fr); }
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.93rem; margin: 0 0 14px; flex: 1; }
.card-link { font-weight: 700; font-size: 0.93rem; color: var(--accent-strong); display: inline-flex; align-items: center; gap: 7px; margin-top: auto; }
.card-link svg { transition: transform 0.18s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Плитки объектов ---------- */
.objects-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
.object-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  font-weight: 600;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.object-tile:hover { border-color: var(--accent-strong); box-shadow: var(--shadow); color: var(--accent-strong); }
.object-tile svg { color: var(--accent); flex: none; }

/* ---------- Комплекты ---------- */
.kits-grid { grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.kit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.kit-popular { border: 2px solid var(--accent); box-shadow: var(--shadow-lg); }
.kit-badge {
  position: absolute;
  top: -13px;
  left: 22px;
  background: var(--accent-strong);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.kit h3 { font-size: 1.06rem; }
.kit-desc { color: var(--muted); font-size: 0.88rem; margin-bottom: 14px; }
.kit-price { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.kit-price small { font-size: 0.8rem; font-weight: 600; color: var(--muted); display: block; }
.kit ul { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 9px; flex: 1; }
.kit li { display: flex; gap: 9px; font-size: 0.9rem; align-items: flex-start; }
.kit li svg { color: var(--accent); flex: none; margin-top: 3px; }
.kits-note { color: var(--muted); font-size: 0.9rem; margin-top: 18px; }

/* ---------- Преимущества ---------- */
.benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 24px; }
.benefit { display: flex; gap: 16px; align-items: flex-start; }
.benefit-icon {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.14);
  color: var(--accent-text);
}
.benefit h3 { font-size: 1.02rem; margin-bottom: 5px; }
.benefit p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.section-dark .benefit p, .hero .benefit p { color: var(--on-dark-muted); }

/* ---------- Этапы ---------- */
.steps-grid { grid-template-columns: repeat(5, 1fr); gap: 0; counter-reset: step; }
.step { position: relative; padding: 0 18px 0 0; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.step::after {
  content: "";
  position: absolute;
  top: 20px;
  left: calc(100% - 14px);
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.step:last-child::after { display: none; }
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ---------- Кейсы ---------- */
.cases-grid { grid-template-columns: repeat(3, 1fr); }
.case-card { overflow: hidden; padding: 0; }
.case-media {
  height: 170px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.case-media .scene { width: 100%; height: 100%; display: block; }
.case-body { padding: 22px 24px; }
.case-params { color: var(--accent-strong); font-weight: 700; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.04em; }
.case-body h3 { margin: 6px 0 8px; }
.case-body p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* ---------- Отзывы ---------- */
.reviews-grid { grid-template-columns: repeat(3, 1fr); }
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}
.review::before {
  content: "“";
  position: absolute;
  top: 6px;
  right: 20px;
  font-size: 4.6rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
}
.review p { font-size: 0.95rem; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-2);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex: none;
}
.review-author b { display: block; font-size: 0.95rem; }
.review-author span { color: var(--muted); font-size: 0.83rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-s); margin-bottom: 10px; background: #fff; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 17px 52px 17px 20px;
  font-weight: 700;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-item div { padding: 0 20px 17px; color: var(--muted); }

/* ---------- Зона обслуживания ---------- */
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 14px; }
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(232, 238, 247, 0.07);
  border: 1px solid rgba(232, 238, 247, 0.18);
  font-weight: 600;
  font-size: 0.95rem;
}
.area-chip svg { color: var(--accent-text); }
a.area-chip:hover { border-color: var(--accent-text); color: var(--accent-text); }
.area-note { color: var(--on-dark-muted); max-width: 640px; }

/* ---------- CTA-блок ---------- */
.cta-band {
  background:
    radial-gradient(600px 300px at 15% 120%, rgba(234, 88, 12, 0.25), transparent 60%),
    linear-gradient(120deg, var(--navy-2), var(--navy));
  color: var(--on-dark);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-dark-muted); }
.cta-band .lead-card p, .section-dark .lead-card p, .hero .lead-card p { color: var(--muted); }
.lead-card .lead-note, .lead-card .form-consent { color: var(--muted); }
.cta-phone { font-size: 1.5rem; font-weight: 800; color: #fff; display: inline-flex; gap: 10px; align-items: center; }
.cta-phone:hover { color: var(--accent-text); }

/* ---------- Футер ---------- */
.footer { background: var(--navy); color: var(--on-dark-muted); font-size: 0.92rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding: clamp(40px, 6vw, 64px) 0 36px;
}
.footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a:hover { color: var(--accent-text); }
.footer .logo { color: #fff; margin-bottom: 12px; }
.footer-about { max-width: 300px; }
.footer-contact { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { color: var(--accent-text); flex: none; margin-top: 3px; }
.footer-contact a.phone-link { color: #fff; font-weight: 700; font-size: 1.05rem; }
.footer-bottom {
  border-top: 1px solid rgba(232, 238, 247, 0.1);
  padding: 18px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.footer-bottom a { text-decoration: underline; }

/* ---------- Cookie-полоска (информационная, ничего не блокирует) ---------- */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(11, 21, 36, 0.96);
  color: var(--on-dark);
  padding: 12px 0;
  display: none;
}
.cookie-bar.show { display: block; }
.cookie-inner { display: flex; align-items: center; gap: 18px; }
.cookie-inner p { margin: 0; font-size: 0.84rem; flex: 1 1 auto; min-width: 0; }
.cookie-inner a { text-decoration: underline; }
.cookie-ok { padding: 9px 26px; font-size: 0.9rem; flex: none; }

/* ---------- Хлебные крошки ---------- */
.breadcrumbs { padding: 14px 0 0; font-size: 0.84rem; color: var(--muted); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px 6px; margin: 0; padding: 0; }
.breadcrumbs li { display: flex; align-items: center; }
.breadcrumbs li + li::before { content: "→"; margin-right: 6px; color: var(--line); }
.breadcrumbs a { padding: 5px 0; }
.breadcrumbs a:hover { color: var(--accent-strong); }

/* ---------- Шапка внутренних страниц ---------- */
.page-hero {
  background:
    radial-gradient(700px 360px at 90% -20%, rgba(234, 88, 12, 0.14), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--on-dark);
  padding: clamp(36px, 6vw, 64px) 0;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: var(--on-dark-muted); font-size: 1.08rem; max-width: 720px; margin: 0; }
.page-hero .hero-actions { margin-top: 22px; }

/* ---------- Таблица прайса ---------- */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-s); overflow: hidden; }
.price-table th, .price-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table tr:last-child td { border-bottom: 0; }
.price-table th { background: var(--bg-soft); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--muted); }
.price-table td:last-child { font-weight: 700; white-space: nowrap; }
.table-wrap { overflow-x: auto; }

/* ---------- Текстовые страницы и статьи ---------- */
.prose { max-width: 780px; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose li { margin-bottom: 0.4em; }
.prose a { color: var(--accent-strong); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2em 0; font-size: 0.94rem; }
.prose table th, .prose table td { padding: 10px 14px; border: 1px solid var(--line); text-align: left; }
.prose table th { background: var(--bg-soft); }
.prose blockquote { margin: 1.2em 0; padding: 14px 20px; border-left: 4px solid var(--accent); background: var(--accent-soft); border-radius: 0 var(--radius-s) var(--radius-s) 0; }
.article-meta { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.4em; }

/* ---------- Карточки статей ---------- */
.articles-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1060px) { .articles-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Адаптив
   ============================================================ */
@media (max-width: 1180px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .burger { display: grid; }
  .header-phone { margin-left: auto; }
}

@media (max-width: 1060px) {
  .services-grid, .kits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .step::after { display: none; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .header-inner { gap: 12px; min-height: 62px; }
}

@media (max-width: 780px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-lens { width: 380px; height: 380px; right: -160px; bottom: auto; top: -120px; }
  .objects-grid, .cases-grid, .reviews-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .topbar-right { display: none; }
  .topbar .container { justify-content: center; }
  .cookie-inner { flex-wrap: wrap; gap: 10px; }
  .cookie-ok { width: 100%; }
}

/* Мобильная шапка: логотип + кнопка звонка + бургер (текстовый номер не влезает) */
@media (max-width: 620px) {
  .container { padding: 0 16px; }
  .services-grid, .kits-grid, .benefits-grid, .steps-grid, .trustbar-inner, .footer-grid { grid-template-columns: 1fr; }
  .header-phone { display: none; }
  .header-call { display: grid; margin-left: auto; }
  .hero-actions .btn { width: 100%; }
  .logo { font-size: 1.12rem; gap: 8px; }
  .logo-mark { width: 34px; height: 34px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cta-phone { font-size: 1.25rem; }
  .review::before { display: none; }
  .kit, .card, .review { padding: 20px 18px; }
  .faq-item summary { padding-right: 46px; }
}

@media (max-width: 380px) {
  .logo-name { font-size: 1rem; }
  .btn { padding: 13px 18px; }
}
