/* ==========================================================================
   СБРОС СТИЛЕЙ И ПЕРЕМЕННЫЕ
   ========================================================================== */
:root {
  --primary-orange: #ff5500;
  --primary-orange-hover: #e04b00;
  --bg-dark: #0b1118;
  --text-white: #ffffff;
  --border-color: rgba(255, 255, 255, 0.15);
  --font-main: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.4;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   КНОПКИ
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--orange {
  background-color: var(--primary-orange);
  color: #fff;
}

.btn--orange:hover {
  background-color: var(--primary-orange-hover);
}

.btn--outline {
  background-color: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn--outline:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.btn--icon {
  gap: 10px;
}

.btn--icon i {
  font-size: 16px;
}

/* ==========================================================================
   ШАПКА (HEADER)
   ========================================================================== */
.header {
  background-color: #ffffff;
  color: #111;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Логотип */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__icon {
  font-size: 32px;
  color: #1b2838;
}

.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #1b2838;
  line-height: 1;
}

.logo__subtitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #555;
  margin-top: 2px;
}

/* Навигация */
.nav__list {
  display: flex;
  gap: 25px;
}

.nav__list a {
  font-size: 13px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
}

.nav__list a:hover {
  color: var(--primary-orange);
}

.nav__mobile-header {
  display: none;
}

/* Телефон */
.header__phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__phone-icon {
  color: var(--primary-orange);
  font-size: 18px;
}

.header__phone-info {
  display: flex;
  flex-direction: column;
}

.header__phone-number {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
}

.header__phone-sub {
  font-size: 11px;
  color: #666;
}

/* Гамбургер кнопка */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-btn span {
  width: 100%;
  height: 3px;
  background-color: #111;
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   ГЛАВНЫЙ БАННЕР (HERO)
   ========================================================================== */
.hero {
  position: relative;
  background: url('../images/hero-bg.jpg') center bottom / cover no-repeat;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(7, 13, 20, 0.95) 0%, rgba(7, 13, 20, 0.6) 50%, rgba(7, 13, 20, 0.1) 100%);
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  padding-top: 40px;
  padding-bottom: 20px;
}

.hero__content {
  max-width: 600px;
  z-index: 3;
}

.hero__title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.text-orange {
  color: var(--primary-orange);
}

.hero__divider {
  width: 60px;
  height: 4px;
  background-color: var(--primary-orange);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #e0e0e0;
  margin-bottom: 35px;
  line-height: 1.4;
  max-width: 510px;
}

.hero__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__actions .btn {
  padding: 16px 32px;
  font-size: 15px;
}

/* Стилизация картинок раций */
.hero__image-wrapper--desktop {
  max-width: 52%;
  z-index: 2;
  pointer-events: none;
}

.hero__image-wrapper--mobile {
  display: none; /* Скрыто по умолчанию на ПК */
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 920px) {

.hero {
    background: url(../images/hero-bg.jpg) right top / cover no-repeat;
	
	}
	
	}

/* ==========================================================================
   ПЛАШКА ПРЕИМУЩЕСТВ (ПОДВАЛ БАННЕРА)
   ========================================================================== */
.hero__features {
  position: relative;
  z-index: 5;
  background-color: rgba(6, 11, 17, 0.95);
  border-top: 1px solid var(--border-color);
  padding: 25px 0;
}

.hero__features-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 10px;
  position: relative;
}

.feature-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-color);
}

.feature-card__icon {
  font-size: 28px;
  color: var(--primary-orange);
}

.feature-card__text {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Оверлей меню на мобилках */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   АДАПТИВНОСТЬ (MEDIA QUERIES)
   ========================================================================== */

/* Ноутбуки */
@media (max-width: 1200px) {
  .hero__title {
    font-size: 40px;
  }
  
  .hero__image-wrapper--desktop {
    max-width: 50%;
  }
}

@media (max-width: 1100px) {
  .nav__list {
    gap: 15px;
  }

  .nav__list a {
    font-size: 12px;
  }

  .hero__features-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .feature-card:not(:last-child)::after {
    display: none;
  }
}

/* Планшеты и Мобильные устройствa */
@media (max-width: 920px) {
  .hamburger-btn {
    display: flex;
    order: 1;
  }

  .logo {
    order: 2;
  }

  .header__phone {
    display: none;
  }

  .header__btn {
    order: 3;
    padding: 10px 16px;
    font-size: 12px;
  }

  .nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background-color: #111b26;
    z-index: 1001;
    padding: 25px;
    transition: var(--transition);
    box-shadow: 5px 0 15px rgba(0,0,0,0.5);
  }

  .nav.active {
    left: 0;
  }

  .nav__mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
  }

  .nav__mobile-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
  }

  .nav__close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }

  .nav__list {
    flex-direction: column;
    gap: 20px;
  }

  .nav__list a {
    color: #fff;
    font-size: 15px;
  }

  /* Переключение раций с десктопной на мобильную версию */
  .hero__image-wrapper--desktop {
    display: none;
  }

  .hero__image-wrapper--mobile {
    display: block;
    width: 100%;
    max-width: 450px;
    margin: 0 auto 25px;
  }

  .hero__overlay {
    background: rgba(7, 13, 20, 0.85);
  }

  .hero__container {
    text-align: center;
    justify-content: center;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__divider {
    margin: 0 auto 20px;
  }

  .hero__actions {
    justify-content: center;
  }
}

/* Мобильные телефоны */
@media (max-width: 576px) {
  .header__container {
    height: 65px;
  }

  .logo__title {
    font-size: 18px;
  }

  .logo__subtitle {
    font-size: 9px;
  }

  .header__btn {
    display: none;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero__image-wrapper--mobile {
    max-width: 320px;
    margin-bottom: 20px;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ==========================================================================
   БЛОК 2: КАТАЛОГ (КАТАЛОГ РАЦИЙ)
   ========================================================================== */
.catalog {
  padding: 80px 0;
  background-color: #0f1722;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: #a0aab0;
}

/* Сетка карточек (3 в ряд на ПК) */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Карточка товара */
.product-card {
  background-color: #16222f;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--primary-orange);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Галерея в карточке */
.product-card__gallery {
  position: relative;
  background-color: #fff;
  padding: 20px;
}

.product-card__main-img {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__main-img .main-photo {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  cursor: pointer;
  transition: var(--transition);
}

.product-card__main-img:hover .main-photo {
  transform: scale(1.05);
}

/* Кнопка Увеличить */
.product-card__zoom-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-card__zoom-btn:hover {
  background: var(--primary-orange);
}

/* Бэйджи карточки */
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--primary-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

.product-card__badge--green {
  background-color: #27ae60;
}

/* Миниатюры */
.product-card__thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.product-card__thumbs .thumb {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.product-card__thumbs .thumb.active,
.product-card__thumbs .thumb:hover {
  border-color: var(--primary-orange);
}

/* Контент карточки */
.product-card__content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

/* Теги характеристик */
.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-card__tags span {
  background-color: rgba(255, 85, 0, 0.1);
  color: #c7c7c7;
  border: 1px solid rgba(255, 85, 0, 0.3);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Таблица характеристик */
.product-card__specs {
  background-color: #111b26;
  border-radius: 6px;
  padding: 12px 15px;
  margin-bottom: 20px;
  font-size: 13px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row span {
  color: #909ab0;
}

.spec-row strong {
  color: #fff;
  text-align: right;
}

.product-card__desc {
  font-size: 13px;
  color: #b0bac2;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Форма и кнопка заказа */
.product-card__form {
  margin-top: auto;
}

.product-card__btn {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  gap: 10px;
}

/* ==========================================================================
   LIGHTBOX (УВЕЛИЧЕНИЕ ФОТО)
   ========================================================================== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox__content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox__close:hover {
  color: var(--primary-orange);
}

/* ==========================================================================
   АДАПТИВНОСТЬ КАТАЛОГА
   ========================================================================== */
@media (max-width: 1100px) {
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .catalog {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .catalog__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   МОДАЛЬНЫЕ ОКНА (ORDER & CALLBACK)
   ========================================================================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 11, 17, 0.85);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal__dialog {
  background-color: #16222f;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  padding: 35px 30px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal.active .modal__dialog {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: #a0aab0;
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
}

.modal__close:hover {
  color: var(--primary-orange);
}

.modal__header {
  text-align: center;
  margin-bottom: 25px;
}

.modal__title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.modal__subtitle {
  font-size: 13px;
  color: var(--primary-orange);
  font-weight: 600;
}

/* Элементы формы в модалке */
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: #b0bac2;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  background-color: #0d151f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 12px 15px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 8px rgba(255, 85, 0, 0.3);
}

.form-input--textarea {
  resize: vertical;
  min-height: 80px;
}

.modal__submit-btn {
  width: 100%;
  padding: 14px;
  margin-top: 5px;
  font-size: 14px;
}

.form-policy {
  font-size: 11px;
  color: #6a7682;
  text-align: center;
  line-height: 1.3;
}


/* ==========================================================================
   БЛОК 3: ГОТОВЫЕ КОМПЛЕКТЫ (БЕЛЫЙ ФОН)
   ========================================================================== */
.kits {
  background-color: #ffffff;
  color: #222222;
  padding: 80px 0;
}

.kits__header {
  text-align: center;
  margin-bottom: 50px;
}

.kits__title {
  font-size: 34px;
  font-weight: 900;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.kits__subtitle {
  font-size: 16px;
  color: #6b7280;
}

/* Сетка из 4 карточек */
.kits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Общий стиль карточки комплекта */
.kit-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.kit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Шапка карточки */
.kit-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.kit-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  flex-shrink: 0;
}

.kit-card__category {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  line-height: 1;
}

.kit-card__name {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 2px;
}

.kit-card__desc {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.4;
  min-height: 38px;
  margin-bottom: 15px;
}

/* Картинка комплекта */
.kit-card__img-wrapper {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 10px;
}

.kit-card__img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Список возможностей */
.kit-card__features {
  list-style: none;
  margin-bottom: 20px;
}

.kit-card__features li {
  font-size: 13px;
  color: #374151;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.3;
}

.kit-card__features li i {
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Блок "Подходит для" */
.kit-card__target {
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 20px;
  margin-top: auto;
}

.kit-card__target-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.kit-card__target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.kit-card__target-grid span {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Цена */
.kit-card__price {
  margin-bottom: 15px;
  min-height: 36px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
}

.price-value {
  font-size: 26px;
  font-weight: 900;
}

.price-custom {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Кнопки в карточке */
.kit-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn--phone-outline {
  width: 100%;
  background: transparent;
  border: 2px solid;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.btn--kit-action {
  width: 100%;
  color: #ffffff;
  border: none;
  padding: 12px;
  font-size: 13px;
  font-weight: 800;
  border-radius: 6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--kit-action:hover {
  opacity: 0.9;
}


/* ==========================================================================
   ЦВЕТОВЫЕ СХЕМЫ ДЛЯ КАЖДОГО КОМПЛЕКТА
   ========================================================================== */

/* 1. СЕМЬЯ (ЗЕЛЕНЫЙ) */
.kit-card--green .kit-card__icon { background-color: #10b981; }
.kit-card--green .kit-card__name { color: #10b981; }
.kit-card--green .kit-card__features li i { color: #10b981; }
.kit-card--green .kit-card__target { background-color: #ecfdf5; }
.kit-card--green .kit-card__target-title { color: #047857; }
.kit-card--green .kit-card__target-grid i { color: #10b981; }
.kit-card--green .price-value { color: #10b981; }
.kit-card--green .btn--phone-outline { border-color: #10b981; color: #10b981; }
.kit-card--green .btn--phone-outline:hover { background-color: #10b981; color: #fff; }
.kit-card--green .btn--kit-action { background-color: #10b981; }

/* 2. ДОМ (СИНИЙ) */
.kit-card--blue .kit-card__icon { background-color: #2563eb; }
.kit-card--blue .kit-card__name { color: #2563eb; }
.kit-card--blue .kit-card__features li i { color: #2563eb; }
.kit-card--blue .kit-card__target { background-color: #eff6ff; }
.kit-card--blue .kit-card__target-title { color: #1d4ed8; }
.kit-card--blue .kit-card__target-grid i { color: #2563eb; }
.kit-card--blue .price-value { color: #2563eb; }
.kit-card--blue .btn--phone-outline { border-color: #2563eb; color: #2563eb; }
.kit-card--blue .btn--phone-outline:hover { background-color: #2563eb; color: #fff; }
.kit-card--blue .btn--kit-action { background-color: #2563eb; }

/* 3. ПРЕДПРИЯТИЕ (ОРАНЖЕВЫЙ) */
.kit-card--orange .kit-card__icon { background-color: #f97316; }
.kit-card--orange .kit-card__name { color: #f97316; }
.kit-card--orange .kit-card__features li i { color: #f97316; }
.kit-card--orange .kit-card__target { background-color: #fff7ed; }
.kit-card--orange .kit-card__target-title { color: #c2410c; }
.kit-card--orange .kit-card__target-grid i { color: #f97316; }
.kit-card--orange .price-custom { color: #f97316; }
.kit-card--orange .btn--phone-outline { border-color: #f97316; color: #f97316; }
.kit-card--orange .btn--phone-outline:hover { background-color: #f97316; color: #fff; }
.kit-card--orange .btn--kit-action { background-color: #f97316; }

/* 4. ОХРАНА (ФИОЛЕТОВЫЙ) */
.kit-card--purple .kit-card__icon { background-color: #7c3aed; }
.kit-card--purple .kit-card__name { color: #7c3aed; }
.kit-card--purple .kit-card__features li i { color: #7c3aed; }
.kit-card--purple .kit-card__target { background-color: #f5f3ff; }
.kit-card--purple .kit-card__target-title { color: #6d28d9; }
.kit-card--purple .kit-card__target-grid i { color: #7c3aed; }
.kit-card--purple .price-value { color: #7c3aed; }
.kit-card--purple .btn--phone-outline { border-color: #7c3aed; color: #7c3aed; }
.kit-card--purple .btn--phone-outline:hover { background-color: #7c3aed; color: #fff; }
.kit-card--purple .btn--kit-action { background-color: #7c3aed; }


/* ==========================================================================
   НИЖНЯЯ ПОЛОСА ПРЕИМУЩЕСТВ КОМПЛЕКТОВ
   ========================================================================== */
.kits__bottom-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.kits__feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.kits__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: #f3f4f6;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.kits__feature-text {
  display: flex;
  flex-direction: column;
}

.kits__feature-text strong {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
  text-transform: uppercase;
  line-height: 1.2;
}

.kits__feature-text span {
  font-size: 12px;
  color: #6b7280;
  margin-top: 3px;
}


/* ==========================================================================
   АДАПТИВНОСТЬ БЛОКА КОМПЛЕКТОВ
   ========================================================================== */
@media (max-width: 1200px) {
  .kits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kits__bottom-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 640px) {
  .kits {
    padding: 50px 0;
  }

  .kits__title {
    font-size: 24px;
  }

  .kits__grid {
    grid-template-columns: 1fr;
  }

  .kits__bottom-features {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   БЛОК 4: ВИДЕО (ВЕРТИКАЛЬНЫЕ ВИДЕО)
   ========================================================================== */
.video-section {
  padding: 80px 0;
  background-color: #0b1118;
}

/* Сетка для 3 вертикальных видео */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1050px;
  margin: 0 auto;
}

/* Карточка видео */
.video-card {
  background-color: #16222f;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.video-card:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}

/* Плеер с соотношением сторон 9:16 (Вертикальный формат) */
.video-card__player {
  position: relative;
  width: 100%;
  padding-top: 160%; /* Пропорция 9:16 */
  background-color: #000;
  overflow: hidden;
}

.video-card__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Кнопка Play по центру */
.video-card__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 85, 0, 0.9);
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px; /* Оптическое центрирование иконки play */
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.5);
  z-index: 2;
}

.video-card__play-btn:hover {
  background-color: var(--primary-orange-hover);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Скрытие кнопки при воспроизведении */
.video-card__player.playing .video-card__play-btn {
  opacity: 0;
  pointer-events: none;
}

.video-card__player.playing:hover .video-card__play-btn {
  opacity: 1;
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Описание под видео */
.video-card__info {
  padding: 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-card__title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.video-card__desc {
  font-size: 13px;
  color: #a0aab0;
  line-height: 1.4;
}

/* ==========================================================================
   АДАПТИВНОСТЬ БЛОКА ВИДЕО
   ========================================================================== */
@media (max-width: 992px) {
  .video-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 40px 0;
    overflow: hidden; /* Предотвращает горизонтальный скролл всей страницы */
  }

  /* Превращаем сетку в горизонтальный скролл-контейнер */
  .video-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Мягкая фиксация карточки по центру при скролле */
    gap: 15px;
    padding: 10px 20px 25px 20px; /* Отступы по бокам для красивого скролла */
    margin: 0 -20px; /* Выходим за пределы контейнера, чтобы карточки скроллились от края до края */
    -webkit-overflow-scrolling: touch; /* Плавный скролл на iOS */
  }

  /* Скрываем стандартный полосу скроллбара, чтобы выглядело как в приложении */
  .video-grid::-webkit-scrollbar {
    display: none;
  }
  .video-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Фиксируем ширину карточек для свайпа */
  .video-card {
    flex: 0 0 82%; /* Карточка занимает 82% экрана, край следующей виден справа */
    max-width: 300px;
    scroll-snap-align: center; /* Центрирование при остановке скролла */
  }

  /* Уменьшаем высоту видеоплеера (делаем компактнее) */
  .video-card__player {
    padding-top: 125%; /* Вместо 160% (пропорция сделана ниже и компактнее) */
  }

  .video-card__info {
    padding: 15px;
  }

  .video-card__title {
    font-size: 15px;
  }

  .video-card__desc {
    font-size: 12px;
  }
}

/* ==========================================================================
   БЛОК 5: О КОМПАНИИ (БЕЛЫЙ ФОН)
   ========================================================================== */
.about {
  background-color: #ededed;
  color: #222222;
  padding: 80px 0;
}

.about__header {
  text-align: center;
  margin-bottom: 40px;
}

.about__title {
  font-size: 32px;
  font-weight: 900;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about__content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Левая колонка с изображением */
.about__image-wrapper {
  flex: 0 0 45%;
  max-width: 641px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Правая колонка с текстом */
.about__text-block {
  flex: 1;
}

.about__subtitle {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about__paragraph {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about__paragraph strong {
  color: #111827;
  font-weight: 700;
}

/* Блок списков предложений */
.about__offers {
  margin-top: 20px;
  margin-bottom: 25px;
}

.about__offers-title {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.about__offers-list {
  list-style: none;
  padding-left: 0;
}

.about__offers-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Голубые буллеты как в макете */
.about__offers-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -2px;
  color: #2563eb;
  font-size: 20px;
  line-height: 1;
}

.about__more-link {
  display: inline-block;
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.about__more-link:hover {
  color: var(--primary-orange);
  text-decoration: underline;
}

/* ==========================================================================
   АДАПТИВНОСТЬ БЛОКА О КОМПАНИИ
   ========================================================================== */
@media (max-width: 992px) {
  .about__content {
    flex-direction: column;
  }

  .about__image-wrapper {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .about__subtitle {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 50px 0;
  }

  .about__title {
    font-size: 24px;
  }

  .about__subtitle {
    font-size: 18px;
  }
}

/* ==========================================================================
   БЛОК 6: СЕРВИС И РЕМОНТ (НА БЕЛОМ ФОНЕ)
   ========================================================================== */
.service {
  padding: 80px 0;
  background-color: #ffffff; /* Полностью белый фон секции */
  color: #222222;
}

/* Перекрашиваем заголовки секции под светлый фон */
.service .section-title h2 {
  color: #111827;
}

.service .section-subtitle {
  color: #6b7280;
}

.service__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1150px;
  margin: 0 auto;
}

/* Белая плашка с аккуратными скруглёнными углами */
.service-card {
  background-color: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  padding: 45px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: #d1d5db;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Текст слева */
.service-card__content {
  flex: 1;
  max-width: 650px;
}

.service-card__title {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 18px;
  line-height: 1.25;
}

.service-card__text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-card__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.service-card__link:hover {
  color: var(--primary-orange);
}

/* Картинки справа */
.service-card__image-wrapper {
  flex: 0 0 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__image {
  max-width: 100%;
  max-height: 230px;
  object-fit: contain;
}

/* ==========================================================================
   АДАПТИВНОСТЬ БЛОКА СЕРВИС
   ========================================================================== */
@media (max-width: 992px) {
  .service-card {
    padding: 30px;
    gap: 25px;
  }

  .service-card__title {
    font-size: 22px;
  }

  .service-card__image-wrapper {
    flex: 0 0 260px;
  }
}

@media (max-width: 768px) {
  .service {
    padding: 50px 0;
  }

  .service-card {
    flex-direction: column; /* На мобилке текст сверху, картинка снизу */
    text-align: left;
    padding: 25px 20px;
  }

  .service-card__content {
    max-width: 100%;
  }

  .service-card__image-wrapper {
    flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .service-card__title {
    font-size: 20px;
  }
}

/* до сюда сервис */


/* ==========================================================================
   БЛОК 7: КОНТАКТЫ (СВЕТЛАЯ ПЛАШКА С КАРТОЙ)
   ========================================================================== */
.contacts {
  padding: 20px 0;
  background-color: #0b1118;
}

/* Общая белая карточка контактов */
.contacts-card {
  background-color: #ffffff;
  border-radius: 0px;
  padding: 50px;
  display: flex;
  gap: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Левая часть: Текст и адреса */
.contacts-card__info {
  flex: 1;
  color: #111827;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contacts-card__top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contacts-card__email {
  font-size: 15px;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contacts-card__email:hover {
  color: var(--primary-orange);
  text-decoration: underline;
}

.contacts-card__phone-top {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
}

/* Блок компании */
.contacts-card__company-title {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.3;
}

.contacts-card__company-desc {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.55;
  margin-bottom: 18px;
}

/* Тёмно-синяя кнопка "Перейти на сайт" */
.btn--blue-dark {
  background-color: #003366;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
  transition: background-color 0.2s ease;
}

.btn--blue-dark:hover {
  background-color: #002244;
}

/* Офисы */
.contacts-card__office-title {
  font-size: 13px;
  font-weight: 800;
  color: #1d4ed8; /* Фирменный синий цвет заголовка филиала */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contacts-card__address {
  font-size: 14px;
  color: #374151;
  margin-bottom: 4px;
  line-height: 1.4;
}

.contacts-card__phone {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contacts-card__phone:hover {
  color: var(--primary-orange);
}

/* Правая часть: Яндекс Карта */
.contacts-card__map-wrapper {
  flex: 0 0 50%;
  min-height: 450px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contacts-card__map {
  width: 100%;
  height: 100%;
  min-height: 450px;
}

/* ==========================================================================
   АДАПТИВНОСТЬ БЛОКА КОНТАКТЫ
   ========================================================================== */
@media (max-width: 1024px) {
  .contacts-card {
    padding: 35px;
    gap: 30px;
  }

  .contacts-card__map-wrapper {
    flex: 0 0 45%;
  }
}

@media (max-width: 850px) {
  .contacts-card {
    flex-direction: column;
    padding: 25px;
  }

  /* Фиксируем высоту обертки карты и убираем min-height */
  .contacts-card__map-wrapper {
    width: 100%;
    height: 300px; /* Оптимальная высота карты на мобилках */
    min-height: auto; 
    flex: none;
  }

  /* Заставляем сам iframe и внутренний блок заполнять 100% высоты без дыр */
  .contacts-card__map,
  .contacts-card__map iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    display: block;
  }
}

@media (max-width: 576px) {
  .contacts {
    padding: 50px 0;
  }

  .contacts-card {
    border-radius: 12px;
  }

  .contacts-card__company-title {
    font-size: 15px;
  }
}

/* ==========================================================================
   КНОПКА MESSENGER MAX В ШАПКЕ
   ========================================================================== */
.messenger-button {
  background: linear-gradient(135deg, #00CFFF 0%, #5240FF 50%, #A044FF 100%);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(82, 64, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.messenger-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(82, 64, 255, 0.5);
  color: #ffffff;
}

.messenger-button i {
  font-size: 14px;
}

/* ==========================================================================
   КНОПКА ЗВОНКА ВНУТРИ ФОРМЫ КАРТОЧКИ
   ========================================================================== */
.product-card__form {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Отступ между кнопкой заказа и кнопкой звонка */
}

.product-card__phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #111b26;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 8px 16px;
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
}

.product-card__phone-btn:hover {
  border-color: var(--primary-orange);
  background-color: rgba(255, 85, 0, 0.1);
  color: #ffffff;
}

.product-card__phone-btn i {
  font-size: 16px;
  color: var(--primary-orange);
}

.product-card__phone-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.product-card__phone-text span {
  font-size: 14px;
  color: #a0aab0;
  font-weight: 500;
}

.product-card__phone-text strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   БЛОК ЦЕН В КАРТОЧКАХ ТОВАРА
   ========================================================================== */
.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 15px;
}

/* Старая перечёркнутая цена */
.price-old {
  font-size: 14px;
  color: #718096;
  text-decoration: line-through;
  font-weight: 600;
}

/* Новая акционная цена */
.price-new {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary-orange);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   ЧЕКБОКС ПОЛИТИКИ В МОДАЛКАХ
   ========================================================================== */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  text-align: left;
}

.checkbox-input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--primary-orange); /* Задаем фирменный оранжевый цвет галочки */
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label {
  font-size: 12px;
  color: #a0aab0;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
}

.checkbox-label a {
  color: #3b82f6;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.checkbox-label a:hover {
  color: var(--primary-orange);
}

/* ==========================================================================
   ЭЛЕМЕНТЫ В МОБИЛЬНОМ ГАМБУРГЕР-МЕНЮ
   ========================================================================== */
.nav__mobile-actions {
  display: none; /* На десктопе скрыто */
}

@media (max-width: 920px) {
  .nav {
    display: flex;
    flex-direction: column;
  }

  .nav__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
  }

  .nav__mobile-phone {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .nav__mobile-phone-number {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav__mobile-phone-number i {
    color: var(--primary-orange);
    font-size: 16px;
  }

  .nav__mobile-phone-sub {
    font-size: 12px;
    color: #94a3b8;
  }

  .nav__mobile-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* ==========================================================================
   МОБИЛЬНЫЙ ТЕЛЕФОН В ШАПКЕ
   ========================================================================== */
.header__mobile-phone {
  display: none; /* Скрыто на ПК */
}

@media (max-width: 920px) {
  /* Включаем отображение телефона на мобилках */
  .header__mobile-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 85, 0, 0.1);
    border: 1px solid var(--primary-orange);
    color: #111827;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    order: 3;
    white-space: nowrap;
    transition: var(--transition);
  }

  .header__mobile-phone i {
    color: var(--primary-orange);
    font-size: 12px;
  }

  .header__mobile-phone:hover {
    background-color: var(--primary-orange);
    color: #ffffff;
  }

  .header__mobile-phone:hover i {
    color: #ffffff;
  }

  /* Подноняем компактность логотипа на совсем маленьких экранах (до 380px) */
  .logo img {
    max-width: 130px !important;
  }
}

@media (max-width: 400px) {
  .header__mobile-phone span {
    display: none; /* На самых маленьких экранах оставляет только стильную иконку трубки */
  }

  .header__mobile-phone {
    padding: 8px 10px;
    border-radius: 50%;
  }
}

@media (max-width: 920px) {
  /* Скрываем кнопку Max из верхней шапки на мобилках и планшетах */
  .header__btn {
    display: none !important;
  }

  /* Показываем кликабельный номер */
  .header__mobile-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #fff;
    border: 1px solid var(--primary-orange);
    color: #111827;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    order: 3;
    white-space: nowrap;
  }
}

/* ==========================================================================
   ПОДВАЛ С ССЫЛКОЙ НА ПОЛИТИКУ
   ========================================================================== */
.contacts-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  font-size: 13px;
  color: #a0aab0;
}

.contacts-footer__link {
  color: #3b82f6;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.contacts-footer__link:hover {
  color: var(--primary-orange);
}

@media (max-width: 600px) {
  .contacts-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}