/* =========================================
   АЛЮТЕХ-ЯКУТСК — Основные стили
   ========================================= */

/* --- Сброс и базовые настройки --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #E8232A;
  --color-secondary: #C41E1E;
  --color-white: #FFFFFF;
  --color-bg-section: #F5F5F5;
  --color-text: #1a1a1a;
  --color-text-light: #666666;
  --color-border: #E0E0E0;
  --color-success: #28a745;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.16);
  --radius: 8px;
  --transition: 0.25s ease;
  --font: 'Roboto', sans-serif;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

/* --- Контейнер --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Кнопки --- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  text-align: center;
  line-height: 1.4;
}

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

.btn-primary:hover {
  background: var(--color-secondary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

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

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--color-bg-section);
  box-shadow: var(--shadow);
}

/* --- Заголовки секций --- */
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

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

/* =========================================
   ШАПКА
   ========================================= */
.header {
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__top {
  background: #f0f0f0;
  padding: 6px 0;
  border-bottom: 1px solid #e0e0e0;
}

.header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.header__top-contacts {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.header__top-contacts a {
  color: #444;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.header__top-contacts a:hover {
  color: var(--color-primary);
}

.header__top-contacts .icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.header__top-schedule {
  color: #666;
  font-size: 12px;
}

.header__main {
  padding: 14px 0;
}

.header__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.logo__img {
  height: 52px;
  width: auto;
  display: block;
}

.logo__text {
  line-height: 1.2;
}

.logo__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  display: block;
}

.logo__subtitle {
  font-size: 11px;
  color: var(--color-text-light);
  display: block;
}

/* Навигация */
.nav__list {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav__link {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-primary);
  background: var(--color-bg-section);
}

/* Телефон в шапке */
.header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.header__phone a {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  transition: color var(--transition);
}

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

/* Бургер */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-text);
  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-menu {
  display: none;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 16px 0;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu .nav__list {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.mobile-menu .nav__link {
  display: block;
  padding: 12px 20px;
  width: 100%;
  font-size: 16px;
}

/* =========================================
   СЛАЙДЕР / БАННЕР
   ========================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.hero__slide.active {
  opacity: 1;
  z-index: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Промо-блок на первом слайде */
.hero__promo {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(204, 30, 30, 0.92);
  color: #fff;
  text-align: center;
  padding: 28px 36px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  min-width: 240px;
}

.hero__promo-percent {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.hero__promo-sub {
  font-size: 20px;
  font-weight: 700;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero__promo-note {
  font-size: 13px;
  margin-top: 12px;
  opacity: 0.9;
  font-weight: 400;
  border-top: 1px solid rgba(255,255,255,0.4);
  padding-top: 10px;
}

@media (max-width: 768px) {
  .hero__promo {
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    min-width: 130px;
    padding: 14px 18px;
  }
  .hero__promo-percent { font-size: 26px; }
  .hero__promo-sub { font-size: 13px; }
  .hero__promo-note { font-size: 11px; }
  .hero__desc { max-width: 50%; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 80px 0;
  max-width: 600px;
}

.hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: white;
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero__title {
  font-size: 44px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Стрелки слайдера */
.hero__arrows {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero__arrow {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background var(--transition), border-color var(--transition);
}

.hero__arrow:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.9);
}

/* Точки слайдера */
.hero__dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
}

.hero__dot.active {
  background: white;
  transform: scale(1.3);
}

.hero--campaign {
  min-height: 600px;
  background: #202424;
  isolation: isolate;
}

.hero__campaign-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../960x640px_ИЮНЬ_web-баннер-ВВ.png');
  background-color: #202424;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1.01);
}

.hero__campaign-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8,12,12,0.02) 0%, rgba(18,22,22,0.1) 42%, rgba(30,34,34,0.52) 58%, rgba(30,34,34,0.82) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.18) 100%);
}

.hero--campaign .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero--campaign .hero__content {
  margin-left: auto;
  max-width: 470px;
  width: 100%;
  padding: 72px 0 76px;
}

@media (min-width: 1320px) {
  /* На широких экранах ставим текст поверх темного полотна ворот. */
  .hero--campaign .hero__content {
    transform: translateX(clamp(110px, 7vw, 150px));
  }
}

.hero--campaign .hero__badge {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.92);
  letter-spacing: 0;
}

.hero__campaign-brand {
  color: #fff;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 28px;
}

.hero--campaign .hero__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 42px;
  line-height: 1.03;
  text-transform: uppercase;
  margin-bottom: 22px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero--campaign .hero__title span {
  min-width: 0;
}

.hero__discount {
  display: block;
  font-size: 132px;
  line-height: 0.82;
  font-weight: 900;
}

.hero--campaign .hero__desc {
  max-width: 430px;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.84);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  max-width: 100%;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
  border: 1px solid rgba(255,255,255,0.2);
  max-width: 100%;
  white-space: normal;
}

/* =========================================
   ПРЕИМУЩЕСТВА
   ========================================= */
.advantages {
  padding: 70px 0;
  background: var(--color-bg-section);
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.advantage-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.advantage-card__icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-card__icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.advantage-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.advantage-card__text {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* =========================================
   ЭТАПЫ РАБОТЫ
   ========================================= */
.steps {
  padding: 70px 0;
  background: var(--color-white);
}

.steps__list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  position: relative;
}

.steps__list::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 2px;
  background: var(--color-primary);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(232,35,42,0.3);
  flex-shrink: 0;
}

.step__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.step__text {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.4;
}

/* =========================================
   КАТАЛОГ (краткий)
   ========================================= */
.catalog-preview {
  padding: 70px 0;
  background: var(--color-bg-section);
}

.catalog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.cat-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.cat-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg-section);
}

.cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cat-card:hover .cat-card__img img {
  transform: scale(1.05);
}

.cat-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cat-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.cat-card__text {
  font-size: 14px;
  color: var(--color-text-light);
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.5;
}

.cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: gap var(--transition);
}

.cat-card__link:hover {
  gap: 10px;
}

.catalog-preview__footer {
  text-align: center;
  margin-top: 36px;
}

/* =========================================
   ВИДЕОБЛОК
   ========================================= */
.video-section {
  padding: 70px 0;
  background: var(--color-white);
}

.video-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

/* Горизонтальное видео */
.video--horizontal {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  object-fit: cover;
}

/* Вертикальное видео — на мобильных полный формат 9:16 */
.video--vertical {
  width: 100%;
  aspect-ratio: 9/16;
  display: block;
  object-fit: cover;
}

/* На десктопе оба видео одинаковой высоты */
@media (min-width: 769px) {
  .video--horizontal {
    aspect-ratio: unset;
    height: 340px;
    object-fit: cover;
  }
  .video--vertical {
    aspect-ratio: unset;
    height: 340px;
    object-fit: contain;
    background: #000;
  }
}

/* =========================================
   ГАЛЕРЕЯ ОБЪЕКТОВ
   ========================================= */
.gallery-section {
  padding: 70px 0;
  background: var(--color-bg-section);
}

.gallery-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--color-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(0,0,0,0.45);
}

.gallery-item__overlay svg {
  width: 40px;
  height: 40px;
  fill: white;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay svg {
  opacity: 1;
}

.gallery-section__footer {
  text-align: center;
  margin-top: 36px;
}

/* =========================================
   ЛАЙТБОКС
   ========================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: white;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  transition: opacity var(--transition);
  background: none;
  border: none;
}

.lightbox__close:hover { opacity: 0.7; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 40px;
  cursor: pointer;
  background: rgba(0,0,0,0.4);
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  line-height: 1;
  padding: 0;
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(0,0,0,0.7); }

@media (max-width: 480px) {
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__prev,
  .lightbox__next { width: 40px; height: 40px; font-size: 28px; }
}

/* =========================================
   ФОРМА ЗАМЕРА
   ========================================= */
.order-section {
  padding: 80px 0;
  background: var(--color-bg-section);
  position: relative;
  overflow: hidden;
}

.order-section::before {
  display: none;
}

.order-section::after {
  display: none;
}

.order-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.order-section__info .section-title {
  color: var(--color-text);
  font-size: 34px;
}

.order-section__info .section-subtitle {
  color: var(--color-text-light);
}

.order-section__features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-section__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-size: 15px;
}

.order-section__feature::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Форма */
.form-card {
  background: white;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  color: var(--color-text);
  transition: border-color var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
}

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

.form__submit {
  width: 100%;
  padding: 15px;
  font-size: 16px;
}

.form__success {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--color-success);
  font-weight: 500;
  font-size: 16px;
}

.form__success.show {
  display: block;
}

/* =========================================
   КАРТА
   ========================================= */
.map-section {
  height: 420px;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* =========================================
   МОДАЛЬНОЕ ОКНО (форма звонка)
   ========================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: white;
  border-radius: 12px;
  padding: 36px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: var(--color-text-light);
  background: none;
  border: none;
  line-height: 1;
  transition: color var(--transition);
}

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

.modal__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.modal__subtitle {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

/* =========================================
   ФУТЕР
   ========================================= */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__logo .logo__img {
  background: white;
  border-radius: 6px;
  padding: 4px;
}

.footer__about {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: background var(--transition);
}

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

.footer__col-title {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 18px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: white;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.footer__contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

.footer__contact a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: white;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* =========================================
   ФИКСИРОВАННЫЕ КНОПКИ
   ========================================= */
.fixed-buttons {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fixed-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.fixed-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

.fixed-btn--whatsapp {
  background: #25D366;
}

.fixed-btn--telegram {
  background: #2AABEE;
}

.fixed-btn svg {
  width: 26px;
  height: 26px;
  fill: white;
}

/* =========================================
   АДАПТИВНАЯ ВЁРСТКА
   ========================================= */

/* Компактная навигация (≤1100px) */
@media (max-width: 1100px) {
  .nav__link {
    padding: 7px 8px;
    font-size: 13px;
  }

  .logo__subtitle { display: none; }

  .header__phone a { font-size: 15px; }
}

/* Скрыть навигацию, показать бургер (≤900px) */
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header__phone .btn { display: none; }
}

/* Планшет (≤1024px) */
@media (max-width: 1024px) {
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .steps__list::before { display: none; }

  .catalog-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .order-section__inner {
    gap: 40px;
  }
}

/* Мобильный (≤768px) */
@media (max-width: 768px) {
  .section-title { font-size: 24px; }

  /* Шапка */
  .header__top { display: none; }
  .header__phone a { font-size: 15px; }

  /* Герой */
  .hero { min-height: 420px; }
  .hero__title { font-size: 28px; }
  .hero__content { padding: 60px 0; }
  .hero__desc { font-size: 15px; }

  .hero--campaign {
    min-height: 620px;
    align-items: flex-end;
  }

  .hero__campaign-bg {
    background-image: url('../300x600px_ИЮНЬ_web-баннер-ВВ.png');
    background-size: cover;
    background-position: center top;
    opacity: 1;
  }

  .hero__campaign-veil {
    background:
      linear-gradient(180deg, rgba(20,24,24,0.04) 0%, rgba(20,24,24,0.16) 34%, rgba(20,24,24,0.84) 59%, rgba(20,24,24,0.96) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.14) 100%);
  }

  .hero--campaign .hero__content {
    max-width: calc(100vw - 40px);
    margin-left: 0;
    width: calc(100vw - 40px);
    padding: 245px 0 36px;
  }

  .hero__campaign-brand {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .hero--campaign .hero__title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .hero__discount {
    font-size: 86px;
  }

  .hero--campaign .hero__desc {
    max-width: calc(100vw - 40px);
  }

  .hero__chips {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 18px;
  }

  .hero__chip {
    min-height: 31px;
    padding: 6px 12px;
    font-size: 13px;
    max-width: calc(100vw - 40px);
  }

  .hero__chip:last-child {
    grid-column: 1 / -1;
    width: fit-content;
  }

  /* Стрелки карусели */
  .hero__arrows { display: none; }

  /* Секции */
  .advantages { padding: 50px 0; }
  .advantages__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .advantage-card { padding: 22px 16px; }

  .steps { padding: 50px 0; }
  .steps__list { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .catalog-preview { padding: 50px 0; }
  .catalog-preview__grid { grid-template-columns: 1fr; }

  .video-section { padding: 50px 0; }
  .video-section__grid { grid-template-columns: 1fr; }

  .gallery-section { padding: 50px 0; }
  .gallery-section__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .order-section { padding: 50px 0; }
  .order-section__inner { grid-template-columns: 1fr; gap: 30px; }

  .map-section { height: 280px; }

  .footer { padding: 40px 0 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }

  .fixed-buttons { bottom: 20px; right: 16px; }
  .fixed-btn { width: 46px; height: 46px; font-size: 20px; }
}

/* Маленький мобильный (≤420px) */
@media (max-width: 420px) {
  .hero__title { font-size: 24px; }
  .hero__buttons { flex-direction: column; }
  .hero--campaign { min-height: 620px; }
  .hero--campaign .hero__content { padding-top: 245px; }
  .hero--campaign .hero__title { font-size: 24px; }
  .hero__discount { font-size: 74px; }
  .advantages__grid { grid-template-columns: 1fr; }
  .gallery-section__grid { grid-template-columns: 1fr; }
  .steps__list { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
}
