/* ============================================================
   ON-сервис — ремонт техники в Медведково
   Дизайн-система: navy #0e2a4d + оранжевый #ff6b1a, Golos Text
   ============================================================ */

:root {
  --navy-900: #081a30;
  --navy-800: #0e2a4d;
  --navy-700: #14365f;
  --navy-600: #1b4275;
  --navy-500: #24538f;
  --navy-100: #e8eef7;
  --accent: #ff6b1a;
  --accent-dark: #e85a08;
  --accent-soft: #fff1e6;
  --green: #15803d;
  --green-soft: #e7f6ec;
  --gold: #f59e0b;
  --ink: #16233a;
  --muted: #5b6b84;
  --bg: #f5f7fb;
  --card: #ffffff;
  --line: #e3e9f2;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(14, 42, 77, .06), 0 2px 8px rgba(14, 42, 77, .05);
  --shadow-md: 0 6px 20px rgba(14, 42, 77, .10);
  --shadow-lg: 0 16px 48px rgba(14, 42, 77, .16);
  --container: 1180px;
  --font: "Golos Text", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.2; font-weight: 700; color: var(--navy-900); }
p { margin: 0 0 1em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

:focus-visible { outline: 3px solid rgba(255, 107, 26, .55); outline-offset: 2px; border-radius: 4px; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 24px; border-radius: 12px;
  font-family: var(--font); font-size: 16px; font-weight: 600; line-height: 1;
  border: 1px solid transparent; cursor: pointer; text-align: center;
  transition: background .18s, color .18s, border-color .18s, transform .18s, box-shadow .18s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-1px); }
.btn-outline { border-color: rgba(255, 255, 255, .4); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--navy-800); background: var(--card); }
.btn-ghost:hover { border-color: var(--navy-500); }
.btn-lg { min-height: 56px; padding: 15px 32px; font-size: 17px; }
.btn-sm { min-height: 44px; padding: 10px 18px; font-size: 15px; }
.btn-block { width: 100%; }
.btn svg { flex: 0 0 auto; }

/* ---------- Шапка ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.logo img { width: 42px; height: 42px; border-radius: 10px; }
.logo-text { font-size: 20px; font-weight: 800; color: var(--navy-900); line-height: 1.1; display: flex; flex-direction: column; }
.logo-text small { font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: .02em; }
.nav { display: flex; gap: 4px; }
.nav a {
  padding: 10px 14px; border-radius: 10px; font-weight: 500; font-size: 15px; color: var(--ink);
  transition: background .15s, color .15s;
}
.nav a:hover { background: var(--navy-100); color: var(--navy-800); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { font-weight: 700; font-size: 17px; color: var(--navy-900); white-space: nowrap; }
.header-phone:hover { color: var(--accent); }
.nav-burger { display: none; }

/* Мобильное меню */
@media (max-width: 1024px) {
  .nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    flex-direction: column; gap: 4px; padding: 16px 20px;
    background: #fff; border-top: 1px solid var(--line);
    transform: translateX(100%); transition: transform .25s ease;
    overflow-y: auto;
    contain: paint;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 18px; padding: 14px 16px; }
  .nav-burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line);
    background: #fff; cursor: pointer;
  }
  .header-phone { font-size: 15px; }
  .header-cta .btn { display: none; }
}

/* ---------- Секции ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 10px; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}

/* ---------- Герой ---------- */
.hero { background: var(--navy-800); color: #fff; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 400px at 85% -10%, rgba(255, 107, 26, .16), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(36, 83, 143, .5), transparent 60%);
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding: 72px 20px 80px; position: relative;
}
.hero h1 { color: #fff; font-size: clamp(30px, 4.6vw, 52px); font-weight: 800; line-height: 1.12; margin-bottom: 18px; }
.hero h1 .accent { color: var(--accent); }
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: rgba(255, 255, 255, .82); max-width: 540px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px; padding: 8px 16px; margin-bottom: 24px;
  color: #fff; font-size: 14px;
}
.rating-badge .stars { color: var(--gold); display: inline-flex; gap: 1px; }
.rating-badge strong { font-size: 15px; }

.trust-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  color: #fff; font-size: 13.5px; font-weight: 500;
  padding: 8px 14px; border-radius: 999px;
}
.chip svg { color: #7dd3a8; }

.hero-media { position: relative; }
.hero-media .photo-main {
  border-radius: 20px; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit: cover; width: 100%;
}
.hero-float {
  position: absolute; left: -18px; bottom: 26px;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  max-width: 260px;
}
.hero-float .num { font-size: 26px; font-weight: 800; color: var(--navy-900); line-height: 1; }
.hero-float .lbl { font-size: 13px; color: var(--muted); line-height: 1.3; }
.hero-float .stars { color: var(--gold); font-size: 13px; }

/* ---------- Полоса цифр ---------- */
.stats { border-top: 1px solid rgba(255, 255, 255, .12); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 28px 20px; }
.stat { text-align: center; }
.stat .num { font-size: 30px; font-weight: 800; color: #fff; line-height: 1.1; }
.stat .num small { font-size: 16px; font-weight: 700; color: var(--accent); }
.stat .lbl { font-size: 13.5px; color: rgba(255, 255, 255, .65); margin-top: 4px; }

/* ---------- Сетки ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }

/* ---------- Карточка услуги (прайс-меню) ---------- */
.svc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; transition: box-shadow .18s, transform .18s, border-color .18s;
  display: flex; flex-direction: column; gap: 8px;
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--navy-500); }
.svc-card h3 { font-size: 17px; margin: 0; }
.svc-card .desc { font-size: 14px; color: var(--muted); margin: 0; flex: 1; }
.svc-card .row { display: flex; align-items: center; justify-content: space-between; gap: 8px 12px; flex-wrap: wrap; }
.svc-price { font-weight: 700; color: var(--navy-800); font-size: 16px; white-space: nowrap; }
.svc-link { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 600; color: var(--accent); }
.svc-link:hover { color: var(--accent-dark); }
.svc-link svg { transition: transform .15s; }
.svc-card:hover .svc-link svg { transform: translateX(3px); }

/* ---------- Преимущества ---------- */
.feat { display: flex; gap: 16px; align-items: flex-start; }
.feat-ico {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.feat h3 { font-size: 17px; margin-bottom: 6px; }
.feat p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---------- Шаги ---------- */
.step { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.step .n {
  font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--accent);
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.step .n::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---------- Фото ---------- */
.photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.photos-grid img { border-radius: 14px; aspect-ratio: 4/3; object-fit: cover; width: 100%; box-shadow: var(--shadow-sm); }

/* ---------- Отзывы ---------- */
.review-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; gap: 10px;
}
.review-card .who { display: flex; align-items: center; gap: 10px; }
.review-card .avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy-100);
  color: var(--navy-700); font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.review-card .name { font-weight: 600; font-size: 15px; line-height: 1.2; }
.review-card .when { font-size: 12.5px; color: var(--muted); }
.review-card .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.review-card p { font-size: 14.5px; margin: 0; color: var(--ink); }

.review-summary {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 32px; margin-bottom: 36px;
}
.review-summary .big { font-size: 44px; font-weight: 800; color: var(--navy-900); line-height: 1; }
.review-summary .stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }
.review-summary .lbl { color: var(--muted); font-size: 14.5px; }
.review-summary .divider { width: 1px; height: 44px; background: var(--line); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0; overflow: hidden;
}
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; font-weight: 600; font-size: 16px; cursor: pointer;
  list-style: none; color: var(--navy-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { transition: transform .2s; color: var(--accent); flex: 0 0 auto; }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .answer { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ---------- Форма заявки ---------- */
.lead { background: var(--navy-800); color: #fff; position: relative; overflow: hidden; }
.lead::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 400px at 15% 0%, rgba(255, 107, 26, .14), transparent 60%);
}
.lead-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; }
.lead h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.lead .lead-sub { color: rgba(255, 255, 255, .8); font-size: 16.5px; margin-bottom: 26px; }
.lead-points { display: flex; flex-direction: column; gap: 14px; }
.lead-points li { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, .92); font-size: 15.5px; }
.lead-points svg { color: #7dd3a8; flex: 0 0 auto; }

.lead-form {
  background: #fff; border-radius: 18px; padding: 28px;
  box-shadow: var(--shadow-lg); color: var(--ink);
}
.lead-form h3 { margin-bottom: 4px; font-size: 20px; }
.lead-form .form-note { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy-900); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 15px; color: var(--ink); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 84px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 107, 26, .18);
}
.form-foot { font-size: 12px; color: var(--muted); margin-top: 12px; }
.form-success {
  display: none; text-align: center; padding: 26px 10px;
}
.form-success.show { display: block; }
.form-success .ok-ico {
  width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.form-success h4 { font-size: 20px; margin-bottom: 6px; }
.form-success p { color: var(--muted); font-size: 14.5px; margin: 0; }
.lead-form .form-body.hidden { display: none; }

/* ---------- Контакты ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.contact-list { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item .ico {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy-100); color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
}
.contact-item .t { font-weight: 600; color: var(--navy-900); font-size: 15.5px; }
.contact-item .d { font-size: 14.5px; color: var(--muted); }
.contact-item .d a { color: var(--navy-800); font-weight: 600; }
.contact-item .d a:hover { color: var(--accent); }
.map-frame { border: 0; border-radius: var(--radius); width: 100%; min-height: 340px; box-shadow: var(--shadow-sm); }

/* ---------- Хлебные крошки ---------- */
.breadcrumbs { padding: 20px 0 0; font-size: 13.5px; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 6px; color: var(--line); }

/* ---------- Хиро-блок внутренних страниц ---------- */
.page-hero { background: var(--navy-800); color: #fff; }
.page-hero-inner { padding: 52px 0 56px; position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(26px, 3.6vw, 42px); margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, .8); font-size: 17px; max-width: 640px; margin: 0; }

/* ---------- Прайс-таблица ---------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th {
  text-align: left; padding: 14px 20px; background: var(--navy-100); color: var(--navy-900);
  font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.price-table td { padding: 13px 20px; border-top: 1px solid var(--line); font-size: 15px; }
.price-table tr:hover td { background: #fafbfe; }
.price-table td.price { font-weight: 700; color: var(--navy-800); white-space: nowrap; text-align: right; }
.price-table td.free { color: var(--green); font-weight: 700; text-align: right; white-space: nowrap; }

.price-group { margin-bottom: 40px; }
.price-group h2 { font-size: 22px; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }

.note-box {
  background: var(--accent-soft); border: 1px solid #ffd9bd; color: #8a4a12;
  border-radius: var(--radius-sm); padding: 14px 18px; font-size: 14.5px; margin-bottom: 32px;
}

/* ---------- Категории услуг ---------- */
.cat-head { display: flex; align-items: baseline; gap: 14px; margin: 44px 0 20px; }
.cat-head h2 { margin: 0; font-size: 24px; }
.cat-head .cnt { color: var(--muted); font-size: 14px; }
.cat-nav { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-nav a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-100); color: var(--navy-800);
  font-size: 14px; font-weight: 600; padding: 10px 16px; border-radius: 999px;
  transition: background .15s, color .15s;
}
.cat-nav a:hover { background: var(--navy-800); color: #fff; }
.cat-nav svg { color: var(--accent); flex: 0 0 auto; }
.cat-nav a:hover svg { color: #fff; }

/* ---------- Подвал ---------- */
.footer { background: var(--navy-900); color: rgba(255, 255, 255, .75); margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding: 56px 20px 40px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer a { color: rgba(255, 255, 255, .72); font-size: 14.5px; }
.footer a:hover { color: var(--accent); }
.footer li { margin-bottom: 9px; }
.footer .brand p { font-size: 14px; margin-top: 12px; }
.footer .legal { font-size: 12.5px; color: rgba(255, 255, 255, .45); line-height: 1.7; margin-top: 16px; }
.footer .f-contacts li { display: flex; gap: 10px; align-items: flex-start; }
.footer .f-contacts svg { color: var(--accent); flex: 0 0 auto; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 18px 0; font-size: 13px; color: rgba(255, 255, 255, .45); }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer .social { display: flex; gap: 10px; margin-top: 16px; }
.footer .social a {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255, 255, 255, .08); display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s;
}
.footer .social a:hover { background: var(--accent); transform: translateY(-2px); }

/* ---------- Мобильная панель вызова ---------- */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: #fff; border-top: 1px solid var(--line);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: 1.4fr 1fr 1fr; gap: 8px;
}
.mobile-bar .btn { min-height: 48px; padding: 10px; font-size: 14px; }
@media (max-width: 768px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: 74px; }
}

/* ---------- Адаптив ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 48px 20px 60px; gap: 36px; }
  .hero-media { max-width: 560px; }
  .stats-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lead-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .photos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-float { left: 12px; bottom: 12px; }
  .review-summary { flex-direction: column; gap: 16px; text-align: center; }
  .review-summary .divider { width: 100%; height: 1px; }
  .footer-top { grid-template-columns: 1fr; }
  .price-table { font-size: 14px; }
  .price-table th, .price-table td { padding: 11px 12px; }
}

@media (max-width: 480px) {
  .hero-inner { padding: 32px 20px 44px; }
  .hero h1 { font-size: 26px; }
  .hero-sub { font-size: 15.5px; }
  .rating-badge { font-size: 13px; padding: 7px 12px; gap: 7px; }
  .hero-actions .btn { min-height: 52px; }
  .btn { white-space: normal; }
  h1, h2, h3, p, .lead-sub, .svc-card .desc, .answer, .lbl, .form-note { overflow-wrap: break-word; }

  /* Шапка: чтобы номер не налезал на логотип */
  .header-inner { gap: 10px; }
  .logo { gap: 8px; }
  .logo img { width: 38px; height: 38px; }
  .logo-text { font-size: 17px; }
  .logo-text small { display: none; }
  .header-phone { font-size: 14px; }
  .header-cta { gap: 8px; }
}
@media (max-width: 359px) {
  .header-phone { font-size: 12.5px; }
}
@media (max-width: 360px) {
  .header-inner { gap: 8px; }
  .logo img { width: 34px; height: 34px; }
  .logo-text { font-size: 15px; }
  .header-phone { font-size: 13px; }
  .header-cta { gap: 6px; }
}
@media (max-width: 329px) {
  .header-phone { display: none; }
}

/* ---------- Прочее ---------- */
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.hide { display: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
