/* ============================================================
   ХолодМайстер Одеса — style.css
   ============================================================ */

/* 1. ПЕРЕМЕННЫЕ */
:root {
  --color-primary: #1565C0;
  --color-accent:  #0288D1;
  --color-dark:    #0D47A1;
  --color-light:   #E3F2FD;
  --color-white:   #FFFFFF;
  --color-text:    #212121;
  --color-gray:    #757575;
  --color-success: #388E3C;
  --color-border:  #BBDEFB;
  --header-height: 72px;
  --radius:        12px;
  --shadow-sm:     0 2px 8px rgba(21,101,192,0.10);
  --shadow:        0 4px 20px rgba(21,101,192,0.15);
  --shadow-lg:     0 8px 40px rgba(21,101,192,0.22);
  --transition:    0.3s ease;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* 3. ТИПОГРАФИКА */
h1 { font-size: clamp(1.65rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.25rem, 2.5vw, 1.85rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { color: var(--color-gray); }

/* 4. УТИЛИТЫ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 56px 0; }
.section--light { background: linear-gradient(180deg, #EBF3FD 0%, #E3F2FD 100%); }
.section--dark  { background: linear-gradient(135deg, var(--color-dark) 0%, #1565C0 100%); }
.section--dark .section-title { color: #fff; }
.section--dark .section-title::after { background: linear-gradient(90deg, rgba(255,255,255,0.4), #fff); }
.section--dark .section-subtitle { color: rgba(255,255,255,0.65); }

.section-title {
  text-align: center;
  margin-bottom: 8px;
  color: var(--color-dark);
  position: relative;
  padding-bottom: 18px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--color-gray);
  margin-bottom: 32px;
  font-size: 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* How-grid (steps) */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.how-step {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.how-step__num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}

/* Кнопки */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: inherit;
  white-space: nowrap;
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.75); }
.btn--outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: #0277BD; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: var(--color-light); color: var(--color-primary); }
.btn--ghost:hover { background: var(--color-border); }
.btn--full { width: 100%; justify-content: center; }

/* Ценник */
.price-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 10px;
  border: 1px solid rgba(255,255,255,0.25);
}

/* 5. ДВУЯЗЫЧНОСТЬ */
.lang-ua { display: none; }
.lang-ru { display: block; }
body.ua-mode .lang-ru { display: none; }
body.ua-mode .lang-ua { display: block; }
/* Строчные элементы */
span.lang-ru, a.lang-ru, strong.lang-ru, li.lang-ru { display: inline; }
span.lang-ua, a.lang-ua, strong.lang-ua, li.lang-ua { display: none; }
body.ua-mode span.lang-ru,
body.ua-mode a.lang-ru,
body.ua-mode strong.lang-ru,
body.ua-mode li.lang-ru { display: none; }
body.ua-mode span.lang-ua,
body.ua-mode a.lang-ua,
body.ua-mode strong.lang-ua,
body.ua-mode li.lang-ua { display: inline; }

/* 6. ШАПКА */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #0a1e46;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  height: var(--header-height);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.header__logo-icon { font-size: 1.5rem; }
.header__logo:hover { color: var(--color-accent); }

.header__phones {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}
.header__phone {
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.92);
  transition: color var(--transition);
}
.header__phone:hover { color: var(--color-accent); }

.header__nav { flex: 1; }
.nav__list { display: flex; gap: 2px; flex-wrap: wrap; }
.nav__link {
  padding: 6px 9px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-switcher {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}
.lang-switcher__btn {
  padding: 5px 11px;
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  background: transparent;
  cursor: pointer;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
}
.lang-switcher__btn.active {
  background: var(--color-accent);
  color: #fff;
}
.btn-cta {
  background: var(--color-primary);
  color: #fff;
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
}
.btn-cta:hover { background: var(--color-dark); box-shadow: var(--shadow); }

/* Бургер */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Мобильная навигация */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: #0d2355;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 999;
  padding: 20px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav .nav__list { flex-direction: column; gap: 2px; }
.mobile-nav .nav__link { font-size: 1rem; padding: 10px 14px; display: block; }
.mobile-nav__contacts {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav__contacts a {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
}

/* 7. ГЕРОЙ */
.hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1565C0 55%, #0288D1 100%);
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 44%;
  height: 100%;
  background: rgba(255,255,255,0.04);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero::after {
  content: '❄';
  position: absolute;
  font-size: 360px;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.05;
  pointer-events: none;
  line-height: 1;
  color: #fff;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  padding: 44px 0 48px;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.83rem;
  font-weight: 600;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.25);
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero__features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}
.hero__feat-icon { flex-shrink: 0; margin-top: 1px; }
.hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Карточка справа */
.hero__card {
  background: rgba(10,30,70,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 20px;
  padding: 28px 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.hero__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,30,70,0.68);
  border-radius: 20px;
  z-index: 0;
}
.hero__card > * {
  position: relative;
  z-index: 1;
}
.hero__card-label {
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.52);
  font-weight: 700;
  margin-bottom: 6px;
}
.hero__card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.hero__card-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  transition: opacity var(--transition);
}
.hero__card-phone:hover { opacity: 0.72; }
.hero__card-divider { height: 1px; background: rgba(255,255,255,0.14); margin: 16px 0; }
.hero__card-facts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.hero__card-fact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.82);
}
.hero__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.93rem;
  transition: all var(--transition);
  gap: 6px;
  text-decoration: none;
}
.hero__card-btn:hover {
  background: var(--color-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}
.hero__card-messengers { display: flex; gap: 6px; margin-top: 10px; }
.hero__card-messenger {
  flex: 1;
  text-align: center;
  padding: 7px 4px;
  border-radius: 8px;
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.80);
  font-size: 0.74rem;
  font-weight: 700;
  transition: background var(--transition);
}
.hero__card-messenger:hover { background: rgba(255,255,255,0.18); }

/* Полоса счётчиков */
.counters-strip { background: var(--color-dark); }
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
}
.counter-item {
  background: var(--color-dark);
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.counter-item__number {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.counter-item__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.3;
}

/* 8. ПРЕИМУЩЕСТВА */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.advantage-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 14px;
  text-align: center;
  transition: all var(--transition);
}
.advantage-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--color-accent);
}
.advantage-card__icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-border) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.advantage-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 5px;
}
.advantage-card p { font-size: 0.8rem; line-height: 1.4; }

/* 9. УСЛУГИ */
.services__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(0,0,0,0.07);
  display: flex;
  overflow: hidden;
  height: 110px;
  border-left: 3px solid #1565C0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 22px rgba(21,101,192,0.12);
}
.service-card__photo-wrap {
  width: 120px;
  min-width: 120px;
  overflow: hidden;
}
.service-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.service-card:hover .service-card__photo { transform: scale(1.06); }
.service-card__body {
  padding: 14px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card__title {
  font-size: 0.93rem;
  font-weight: 700;
  color: #1a2a4a;
  margin-bottom: 4px;
}
.service-card p { font-size: 0.8rem; color: #64748b; line-height: 1.4; }
.service-card__right {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
}
.service-card__right .price-tag { background: #E3F2FD; color: #1565C0; margin-top: 0; }
.service-card__more { color: #1565C0; font-size: 0.8rem; font-weight: 600; text-decoration: none; white-space: nowrap; }

/* 10. БРЕНДЫ */
.brands__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.brands__tab {
  padding: 8px 20px;
  border-radius: 20px;
  border: 1.5px solid var(--color-border);
  background: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-gray);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.brands__tab.active,
.brands__tab:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.brands__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.brand-card {
  display: block;
  text-align: center;
  padding: 13px 8px;
  background: #f8fafc;
  color: #1a2a4a;
  border: 1.5px solid #e8edf3;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.brand-card:hover {
  background: var(--brand, var(--color-primary));
  color: #fff;
  border-color: var(--brand, var(--color-primary));
  box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

/* 11. ПОЛОМКИ */
.breakdowns__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.breakdown-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.breakdown-item:hover { box-shadow: var(--shadow-sm); }
.breakdown-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  user-select: none;
}
.breakdown-header__icon { font-size: 1.4rem; flex-shrink: 0; }
.breakdown-header__title {
  flex: 1;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--color-dark);
}
.breakdown-header__arrow {
  font-size: 0.65rem;
  color: var(--color-gray);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.breakdown-item.open .breakdown-header { background: var(--color-light); }
.breakdown-item.open .breakdown-header__arrow { transform: rotate(180deg); }
.breakdown-body {
  display: none;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--color-border);
}
.breakdown-item.open .breakdown-body { display: block; }
.breakdown-body p { font-size: 0.88rem; margin-bottom: 6px; }
.breakdown-body .solution {
  font-size: 0.85rem;
  color: var(--color-success);
  font-weight: 600;
  margin-top: 6px;
}

/* 12. ПРАЙС */
.price-notice {
  background: #fff;
  border-left: 4px solid var(--color-primary);
  padding: 16px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 30px;
  font-size: 0.93rem;
  box-shadow: var(--shadow-sm);
}
.price-notice strong { color: var(--color-primary); }
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.price-table th {
  background: var(--color-primary);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 700;
}
.price-table th:last-child { text-align: center; }
.price-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  vertical-align: middle;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--color-light); }
.price-table td:last-child {
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  text-align: center;
}
.price-cta {
  margin-top: 20px;
  text-align: center;
  padding: 20px;
  background: var(--color-light);
  border-radius: var(--radius);
}
.price-cta p { margin-bottom: 16px; font-size: 0.95rem; color: var(--color-text); }

/* 13. РАЙОНЫ */
.districts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.district-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 14px;
  transition: all var(--transition);
}
.district-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}
.district-card__icon { font-size: 1.4rem; margin-bottom: 8px; }
.district-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 6px;
}
.district-card__name a {
  color: inherit;
  text-decoration: none;
}
.district-card__name a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}
.district-card p { font-size: 0.84rem; }

/* 14. FAQ */
.faq__list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-dark);
  user-select: none;
  gap: 12px;
}
.faq-item.open .faq-question { color: var(--color-primary); background: var(--color-light); }
.faq-question__arrow {
  font-size: 0.65rem;
  color: var(--color-gray);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question__arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 16px 22px 20px;
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
}
.faq-item.open .faq-answer { display: block; }

/* 15. ОТЗЫВЫ */
.section--dark .reviews__grid .review-card {
  background: rgba(255,255,255,0.10);
  border-left-color: rgba(255,255,255,0.30);
  box-shadow: none;
}
.section--dark .reviews__grid .review-card:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
}
.section--dark .review-card__text  { color: rgba(255,255,255,0.88); }
.section--dark .review-card__author { color: #fff; }
.section--dark .review-card__meta   { color: rgba(255,255,255,0.55); }
.section--dark .review-card__stars  { color: #FFD54F; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-card__stars { color: #FFA000; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card__text {
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.65;
}
.review-card__author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-dark);
}
.review-card__meta { font-size: 0.8rem; color: var(--color-gray); margin-top: 3px; }

/* 16. О НАС */
.about__inner { /* full container width */ }
.about__text h2 { margin-bottom: 24px; }
.about__text p { margin-bottom: 18px; font-size: 0.97rem; color: var(--color-text); line-height: 1.75; }
.about__text p:last-child { margin-bottom: 0; }

/* 17. SEO ВКЛАДКИ */
.tabs-nav { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:24px; }
.tab-btn {
  padding:8px 18px; border-radius:20px;
  border:1.5px solid #e8edf3; background:#fff;
  color:#475569; font-size:0.82rem; font-weight:600;
  cursor:pointer; transition:border-color .18s, color .18s, background .18s;
  line-height:1.3;
}
.tab-btn:hover { border-color:#1565C0; color:#1565C0; }
.tab-btn.active { background:#1565C0; border-color:#1565C0; color:#fff; }
.tab-panel { display:none; }
.tab-panel.active { display:block; }
.tab-panel h3 { font-size:1.15rem; color:#1565C0; margin-bottom:14px; font-weight:700; }
.tab-panel p { color:#334155; line-height:1.75; font-size:16px; }

/* 18. КОНТАКТЫ */
.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  align-items: start;
}
.contacts__info-title { margin-bottom: 24px; color: var(--color-dark); }
.contact-list { margin-bottom: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.93rem;
}
.contact-item__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-item__text strong {
  display: block;
  color: var(--color-gray);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-item__text a {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.02rem;
  transition: color var(--transition);
}
.contact-item__text a:hover { color: var(--color-accent); }
.contact-item__text span { color: var(--color-text); font-weight: 600; }

.messengers-row {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
  font-family: inherit;
}
.messenger-btn--viber    { background: #7360F2; color: #fff; }
.messenger-btn--viber:hover { background: #5E4CD4; transform: translateY(-2px); }
.messenger-btn--telegram { background: #0088CC; color: #fff; }
.messenger-btn--telegram:hover { background: #006CA8; transform: translateY(-2px); }
.messenger-btn--whatsapp { background: #25D366; color: #fff; }
.messenger-btn--whatsapp:hover { background: #1DA851; transform: translateY(-2px); }

/* Форма */
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 18px; color: var(--color-dark); }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--color-text);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.08);
}
.form-group input.error,
.form-group textarea.error { border-color: #D32F2F; }
.form-group textarea { height: 95px; resize: vertical; }
.form-success {
  display: none;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  color: var(--color-success);
  font-weight: 600;
  margin-top: 14px;
}
.form-success.visible { display: block; }

/* 18. ФУТЕР */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.82);
  padding: 40px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 30px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.footer__desc {
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.65);
}
.footer__messengers { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__messenger {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.82);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--transition);
}
.footer__messenger:hover { background: rgba(255,255,255,0.20); }
.footer__col-title {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 10px;
}
.footer__nav-list { display: flex; flex-direction: column; gap: 8px; }
.footer__nav-link {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.68);
  transition: color var(--transition);
}
.footer__nav-link:hover { color: #fff; }
.footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.72);
}
.footer__contact-item a {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  transition: color var(--transition);
}
.footer__contact-item a:hover { color: var(--color-accent); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer__bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer__bottom a:hover { color: rgba(255,255,255,0.80); }
.footer__lang { display: flex; gap: 8px; }

/* Плавающая кнопка звонка (только мобильный) */
.floating-call {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 950;
  background: var(--color-success);
  color: #fff;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(56,142,60,0.45);
  transition: background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.floating-call:hover { background: #2E7D32; box-shadow: 0 8px 32px rgba(56,142,60,0.55); }
.floating-call__icon { font-size: 1.2rem; }

/* Lang в мобильном меню */
.mobile-nav__lang {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

/* 19. КНОПКА ВВЕРХ */
.scroll-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--color-dark); transform: translateY(-2px); }

/* 20. АНИМАЦИИ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* 21. АДАПТИВНОСТЬ */
@media (max-width: 1100px) {
  .brands__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
  .header__nav { display: none; }
  .header__phones { display: none; }
  .burger { display: flex; }
  .header__actions .btn-cta { display: none; }
  .header__actions { margin-left: auto; }
  .floating-call { display: flex; }

  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .brands__grid { grid-template-columns: repeat(3, 1fr); }
  .breakdowns__grid { grid-template-columns: 1fr; }
  .districts__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }

  .contacts__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__right { max-width: 420px; }
}
@media (max-width: 640px) {
  :root { --header-height: 62px; }
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
  .scroll-top { bottom: 90px; right: 16px; }
  .nav__link { min-height: 44px; display: flex; align-items: center; }
  .breakdown-header { padding: 18px; min-height: 56px; }
  .hero__right { display: none; }

  .advantages__grid,
  .districts__grid,
  .reviews__grid { grid-template-columns: 1fr; }
  .service-card { height: auto; min-height: 0; }
  .service-card__photo-wrap { width: 85px; min-width: 85px; }
  .service-card__body { padding: 10px 10px; }
  .service-card__right { padding: 10px 10px; }
  .service-card p { display: none; }
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }

  .hero__grid { padding: 32px 0 36px; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; justify-content: center; }
  .hero__card { padding: 22px 18px; }

  .price-table th, .price-table td { padding: 10px 12px; font-size: 0.82rem; }
  .contact-form { padding: 22px 18px; }

  /* Счётчики — 4 в одну строку, мельче */
  .counters { grid-template-columns: repeat(4, 1fr); }
  .counter-item { padding: 14px 6px; }
  .counter-item__number { font-size: 1.15rem; }
  .counter-item__label { font-size: 0.65rem; }
  .header__logo-text { font-size: 1.1rem; }
  .breakdowns__grid { grid-template-columns: 1fr; }
}


/* === Страницы услуг: Вариант 7 === */
.uslugi-num-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.unl-item { display: flex; gap: 16px; padding: 18px 12px; border-bottom: 1px solid #f1f5f9; align-items: flex-start; }
.unl-num { font-size: 2rem; font-weight: 900; color: #e2e8f0; line-height: 1; min-width: 36px; flex-shrink: 0; }
.unl-body h3 { font-size: .93rem; font-weight: 700; margin-bottom: 3px; color: #1e293b; }
.unl-body p { font-size: .82rem; color: #64748b; line-height: 1.55; }

.uslugi-compare { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.09); }
.uslugi-compare thead th { padding: 14px 20px; font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.uslugi-compare thead th:first-child { background: #f8fafc; color: #64748b; }
.uslugi-compare thead th.uc-us { background: #1565C0; color: #fff; }
.uslugi-compare thead th.uc-th { background: #334155; color: #94a3b8; }
.uslugi-compare tbody tr:nth-child(even) td { background: #f8fafc; }
.uslugi-compare tbody td { padding: 12px 20px; border-bottom: 1px solid #e2e8f0; font-size: .9rem; }
.uslugi-compare tbody td.uc-feat { font-weight: 600; color: #1e293b; }
.uslugi-compare tbody td.uc-yes { color: #16a34a; font-weight: 700; text-align: center; }
.uslugi-compare tbody td.uc-no  { color: #ef4444; text-align: center; }

.uslugi-band { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.uslugi-band thead th { background: #1565C0; color: #fff; padding: 11px 20px; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; text-align: left; }
.uslugi-band tbody td { padding: 13px 20px; border-bottom: 1px solid #f1f5f9; font-size: .92rem; vertical-align: middle; }
.uslugi-band tbody tr:nth-child(even) td { background: #f8fafc; }
.ub-name { font-weight: 600; display: block; }
.ub-sub  { font-size: .79rem; color: #94a3b8; display: block; }
.ub-time { color: #94a3b8; font-size: .82rem; white-space: nowrap; }
.ub-price { font-weight: 800; color: #1565C0; white-space: nowrap; }

@media (max-width: 640px) {
  .uslugi-num-list { grid-template-columns: 1fr; }
  .uslugi-compare thead th:last-child,
  .uslugi-compare td:last-child { display: none; }
  .ub-time { display: none; }
  .uslugi-band th:nth-child(2) { display: none; }
}
