/* ===== БАЗА ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111827;
  background: #f4f6fb;
}

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.logo-block {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.logo-dark {
  color: #111827;
}

.logo-green {
  color: #16a34a;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
}

.main-nav a {
  color: #111827;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 1;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-whatsapp {
  padding: 10px 18px;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.header-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-1px);
}

/* Social icons */

.header-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #111827;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.header-icon:hover {
  transform: translateY(-2px);
}

.header-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
  color: #fff;
}

.header-icon.tiktok:hover {
  background: #000000;
  color: #ffffff;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 10px 16px;
    gap: 14px;
  }

  .main-nav {
    flex-basis: 100%;
    justify-content: center;
    flex-wrap: wrap;
    order: 3;
    gap: 16px;
  }

  .header-contacts {
    gap: 8px;
  }

  .header-whatsapp {
    padding: 9px 14px;
    font-size: 13px;
  }

  .header-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
.header-contacts {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #111827;
  text-decoration: none;
  transition: all 0.25s ease;
}

.header-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.header-icon:hover {
  transform: translateY(-2px);
}

.header-icon.whatsapp:hover {
  background: #25d366;
  color: #fff;
}

.header-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
  color: #fff;
}

.header-icon.tiktok:hover {
  background: #000;
  color: #fff;
}
.header-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  text-decoration: none;

  transition: all 0.25s ease;
}

/* SVG размер */
.header-icon svg {
  width: 20px;
  height: 20px;
}

/* === ПОСТОЯННЫЕ ЦВЕТА === */

/* WhatsApp */
.header-icon.whatsapp {
  background: #25d366;
  color: #fff;
}

/* Instagram */
.header-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
  color: #fff;
}

/* TikTok */
.header-icon.tiktok {
  background: #000;
  color: #fff;
}

/* === HOVER (легкий эффект, без смены цвета) === */

.header-icon:hover {
  transform: translateY(-2px) scale(1.06);
  filter: brightness(1.1);
}

/* ===== HERO — как на светлом макете ===== */

.hero {
  background: #f4f6fb;
  padding: 60px 0 80px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 52px;
  align-items: center;
}

.hero-left {
  flex: 1.1;
}

.hero-left h1 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 18px;
}

.hero-left p {
  font-size: 16px;
  color: #4b5563;
  margin: 0 0 26px;
}

/* кнопка + ссылка */

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.55);
  cursor: pointer;
}

.hero-btn:hover {
  filter: brightness(1.05);
}

.hero-small-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #16a34a;
}

.hero-arrow {
  font-size: 16px;
}

/* рейтинг */

/* отзыв под кнопкой */
.hero-review-card {
  margin-top: 6px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  max-width: 520px;
}

.hero-stars {
  color: #fbbf24;
  font-size: 18px;
}

.hero-review-text {
  font-size: 14px;
  color: #4b5563;
  margin: 0;
}

.hero-review-author {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

/* правая часть — фото + мягкое облако */

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px; /* делаем фото крупнее */
  padding: 24px 18px 28px; /* отступы вокруг картинки */
}

/* облако-фон под фото */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 10% 0%,
    #e0f2ff 0,
    #eff6ff 45%,
    #ffffff 100%
  );
  border-radius: 46px;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
  z-index: 0;
}

/* дополнительные мягкие «облака» */
.hero-photo-wrapper::before,
.hero-photo-wrapper::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.12),
    transparent 60%
  );
  z-index: -1;
}

.hero-photo-wrapper::before {
  width: 260px;
  height: 260px;
  right: -80px;
  top: -40px;
}

.hero-photo-wrapper::after {
  width: 220px;
  height: 220px;
  left: -60px;
  bottom: -60px;
}

/* само фото */

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 40px;
  object-fit: cover;
  /* убираем ощущение жёсткой рамки */
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* вертикальные кружки справа */

.hero-badges {
  position: absolute;
  right: -18px;
  top: 18%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.hero-badge {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* адаптив для мобильных, чтобы всё не вылезало за экран */

@media (max-width: 1000px) {
  .hero-photo-wrapper {
    max-width: 420px;
    padding: 18px 14px 22px;
  }

  .hero-badges {
    right: -10px;
  }
}

@media (max-width: 600px) {
  .hero-photo-wrapper {
    max-width: 100%;
    padding: 16px 10px 18px;
  }

  .hero-photo-bg {
    border-radius: 36px;
  }

  .hero-badges {
    right: 0;
  }
}

/* ===== HERO IMPROVEMENTS ===== */

/* Заголовок чуть мощнее */
.hero-left h1 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Subtitle аккуратнее */
.hero-subtitle {
  font-size: 15px;
  color: #4b5563;
  max-width: 520px;
  line-height: 1.5;
}

/* ===== FEATURES (Sofas / Mattresses и т.д.) ===== */

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 18px;
}

.hero-feature {
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(34, 197, 94, 0.2);
  font-size: 13px;
  font-weight: 600;
  color: #065f46;
  box-shadow: 0 6px 14px rgba(34, 197, 94, 0.08);
  transition: all 0.2s ease;
}

.hero-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.15);
}

/* ===== CTA BUTTON чуть сильнее ===== */

.hero-btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.55);
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* ===== HERO FINAL VERSION ===== */

.hero-left h1 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* FEATURES ПО ЦЕНТРУ */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 16px;
}

.hero-feature {
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(34, 197, 94, 0.2);
  font-size: 14px;
  font-weight: 600;
  color: #065f46;
  box-shadow: 0 6px 14px rgba(34, 197, 94, 0.08);
  transition: all 0.2s ease;
}

.hero-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.15);
}

/* SUBTITLE ПО ЦЕНТРУ */
.hero-subtitle {
  max-width: 560px;
  margin: 0 auto 6px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  color: #4b5563;
}

/* SAFE TEXT ПО ЦЕНТРУ */
.hero-safe {
  margin: 0 auto 26px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: #16a34a;
}

/* КНОПКА */
.hero-cta-row {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.55);
  transition: 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0; /* убираем скругление */
  box-shadow: none; /* убираем тень */
}
.hero-photo-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  max-width: none;
}
.hero-right {
  flex: 1.5;
  height: 100vh;
  position: relative;
}
/* ===== FULLSCREEN VIDEO HERO ===== */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* видео на весь экран */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* затемнение для читаемости */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* контент поверх */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* текст белый */
.hero-content h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: #e5e7eb;
}

.hero-safe {
  color: #86efac;
}

/* кнопка ярче */
.hero-btn {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 20px 50px rgba(22, 163, 74, 0.6);
}

/* ===== УСЛУГИ С ФОТО ===== */

.services {
  max-width: 1200px;
  margin: 60px auto 80px;
  padding: 0 24px;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 32px;
  text-align: center; /* заголовок по центру */
}

/* красиво адаптивная сетка */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 18px;
  margin: 14px 16px 6px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  margin: 0 16px 16px;
  flex-grow: 1;
}

/* мобильная адаптация блока услуг */
@media (max-width: 900px) {
  .services {
    padding: 0 16px;
  }
}

/* ===== УЗНАТЬ СТОИМОСТЬ ===== */

.request-price {
  max-width: 1100px;
  margin: 70px auto 90px;
  padding: 0 24px;
}

.request-inner {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  padding: 32px 32px;
  display: flex;
  gap: 32px;
}

/* левая колонка – шаги */
.request-text-col {
  flex: 1.3;
}

.request-price h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.request-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
}

.request-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.request-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #e0f7ec;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.step-body h3 {
  font-size: 16px;
  margin: 0 0 4px;
}

.step-body p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* правая колонка – CTA */

.request-cta-col {
  flex: 1;
  display: flex;
  align-items: center;
}

.request-cta-card {
  width: 100%;
  background: radial-gradient(
    circle at top left,
    #22c55e 0,
    #16a34a 35%,
    #0f766e 100%
  );
  border-radius: 22px;
  padding: 22px 20px 24px;
  color: #f9fafb;
  box-shadow: 0 14px 35px rgba(22, 163, 74, 0.4);
}

.request-time {
  font-size: 16px;
  margin-bottom: 18px;
}

.request-time span {
  font-weight: 700;
}

.request-btn {
  display: block;
  text-align: center;
  padding: 13px 18px;
  background: #f9fafb;
  color: #16a34a;
  text-decoration: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  transition: 0.2s ease;
}

.request-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
}

.request-small {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.95;
}

/* адаптация под телефон */

@media (max-width: 900px) {
  .request-inner {
    flex-direction: column;
    padding: 24px 20px;
  }

  .request-cta-card {
    margin-top: 10px;
  }
}

/* ===== ПОЧЕМУ ВЫБИРАЮТ НАС ===== */

.why-us {
  padding: 70px 0;
  background: #f7f8fa; /* мягкий общий фон секции */
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.why-inner h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.why-card {
  background: #fff;
  padding: 24px 18px;
  border-radius: 18px;
  box-shadow: 0px 8px 26px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 14px 30px rgba(0, 0, 0, 0.12);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.why-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* адаптация для планшета */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* адаптация для телефона */
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== REVIEWS ===== */

.reviews {
  padding: 80px 0;
  background: #f4f5f7;
}

.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.reviews-inner h2 {
  font-size: 34px;
  text-align: center;
  margin-bottom: 10px;
}

.reviews-subtitle {
  text-align: center;
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

/* GRID */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* CARD */

.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.review-name {
  font-weight: 700;
}

.review-place {
  font-size: 13px;
  color: #6b7280;
}

.review-stars {
  color: #fbbf24;
  margin: 6px 0;
}

.review-text {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

/* CTA */

.reviews-cta {
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.reviews-google-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
}

.g-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
}

.google-stars {
  color: #fbbf24;
  font-size: 14px;
}

.google-score {
  font-size: 13px;
}

.reviews-cta-btn {
  background: #22c55e;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.reviews-cta-link {
  color: #16a34a;
  font-weight: 700;
  text-decoration: none;
}

/* MOBILE */

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-cta {
    justify-content: center;
    text-align: center;
  }
}

/* ===== BEFORE / AFTER — SLIDER ===== */

.ba-section {
  padding: 90px 0;
  background: #f6f7f9;
}

.ba-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.ba-inner h2 {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 16px;
}

.ba-subtitle {
  max-width: 760px;
  margin: 0 auto 42px;
  font-size: 16px;
  line-height: 1.6;
  color: #667085;
}

/* Slider window */

.ba-slider-window {
  overflow: hidden;
  border-radius: 28px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  padding: 22px;
}

.ba-slider-track {
  display: flex;
  transition: transform 0.45s ease;
}

.ba-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0;
  position: relative;
}

/* Labels */

.ba-slide-labels {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.ba-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.ba-label.before {
  background: #6b7280;
}

.ba-label.after {
  background: #22c55e;
}

/* Images area */

.ba-slide-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  position: relative;
}

.ba-slide-images::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 36px;
  bottom: 36px;
  width: 1px;
  background: #e5e7eb;
  transform: translateX(-50%);
  z-index: 1;
}

.ba-img {
  width: 100%;
  height: 520px;
  border-radius: 18px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #eef2f7;
  border: 1px solid #dde3ea;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Real photos */

.ba-slide:nth-child(1) .before-img {
  background-image: url("rugbefore.jpg");
}
.ba-slide:nth-child(1) .after-img {
  background-image: url("rugafter.jpg");
}

.ba-slide:nth-child(2) .before-img {
  background-image: url("chairbefore.jpg");
}
.ba-slide:nth-child(2) .after-img {
  background-image: url("chairafter.jpg");
}

.ba-slide:nth-child(3) .before-img {
  background-image: url("sofabefore.jpg");
}
.ba-slide:nth-child(3) .after-img {
  background-image: url("sofaafter.jpg");
}

/* Controls */

.ba-controls {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.ba-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: #0f1f1a;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  box-shadow: 0 8px 20px rgba(15, 31, 26, 0.18);
}

.ba-arrow:hover {
  background: #22c55e;
  transform: translateY(-1px);
}

.ba-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ba-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ba-dot.active {
  width: 22px;
  background: #22c55e;
}

/* Tablet */

@media (max-width: 992px) {
  .ba-inner h2 {
    font-size: 46px;
  }

  .ba-img {
    height: 430px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .ba-section {
    padding: 70px 0;
  }

  .ba-inner {
    padding: 0 16px;
  }

  .ba-inner h2 {
    font-size: 34px;
    margin-bottom: 12px;
  }

  .ba-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .ba-slider-window {
    padding: 14px;
    border-radius: 22px;
  }

  .ba-slide-images {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ba-slide-images::after {
    display: none;
  }

  .ba-slide-labels {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .ba-label {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 13px;
  }

  .ba-img {
    height: 250px;
    max-width: 100%;
    border-radius: 14px;
  }

  .ba-controls {
    margin-top: 20px;
    gap: 12px;
  }

  .ba-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .ba-dot {
    width: 9px;
    height: 9px;
  }

  .ba-dot.active {
    width: 18px;
  }
}

/* ===== КОНТАКТНЫЙ БЛОК ===== */

.contact-section {
  padding: 80px 0 70px;
  background: #f7f8fa;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* левая часть */

.contact-left {
  flex: 1.1;
}

.contact-left h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.contact-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.contact-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
}

.contact-label {
  font-weight: 600;
  min-width: 110px;
  color: #374151;
}

.contact-text {
  color: #4b5563;
}

.contact-link {
  color: #1dbf73;
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

/* кнопки */

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.contact-btn.main {
  background: #22c55e;
  color: #ffffff;
  padding: 14px 26px;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-btn.main::before {
  content: "💬";
  font-size: 18px;
}

.contact-btn.main:hover {
  background: #16a34a;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(22, 163, 74, 0.55);
}

/* правая часть */

.contact-right {
  flex: 0.9;
  display: flex;
  justify-content: flex-end;
}

.contact-card {
  width: 100%;
  max-width: 380px;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 20px 20px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
  border: 1px solid #e5e7eb;
}

.contact-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #22c55e;
}

.contact-brand {
  font-size: 17px;
  font-weight: 700;
}

.contact-tagline {
  font-size: 13px;
  color: #6b7280;
}

.contact-note {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 14px;
}

.contact-note span {
  font-weight: 600;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #4b5563;
}

.contact-list li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 14px;
}

.contact-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
}

/* адаптация контактов */

@media (max-width: 900px) {
  .contact-inner {
    flex-direction: column;
  }

  .contact-right {
    justify-content: flex-start;
  }

  .contact-card {
    max-width: 100%;
  }
}

/* Блок под карту / районы */

.contact-map-wrapper {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 24px 0;
}

.contact-map {
  margin-top: 14px;
  border-radius: 18px;
  background: #0f172a;
  color: #e5e7eb;
  padding: 18px 20px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.35);
}

.contact-map-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-map-text {
  font-size: 13px;
  color: #cbd5f5;
  margin: 0;
}

/* если потом вставишь iframe карты – подгоним его так */
.contact-map iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 14px;
  margin-top: 10px;
}

/* ===== ФУТЕР ===== */

.site-footer {
  background: #0b1510;
  color: #e5e7eb;
  padding: 16px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #22c55e;
}

.footer-brand {
  font-weight: 600;
  font-size: 14px;
}

.footer-copy {
  margin: 0;
  color: #9ca3af;
}

.footer-right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-link {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-link:hover {
  color: #22c55e;
}

/* адаптация футера */

@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== FAQ / ЧАСТЫЕ ВОПРОСЫ ===== */

.faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-inner h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  font-size: 15px;
  color: #666;
  margin-bottom: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 14px;
  background: #f7f8fa;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

/* Кнопка-вопрос */

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-size: 18px;
  color: #6b7280;
  margin-left: 10px;
}

/* Ответ */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition:
    max-height 0.3s ease,
    padding-bottom 0.3s ease;
}

.faq-answer p {
  font-size: 14px;
  color: #4b5563;
  margin: 0 0 14px;
  line-height: 1.6;
}

/* Открытое состояние */

.faq-item.open .faq-answer {
  max-height: 300px; /* хватает для текста */
  padding-bottom: 12px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg); /* плюс превращается в крестик */
  color: #22c55e;
}
.site-footer {
  background: #0f2f22;
  color: #e5e7eb;
  padding: 50px 20px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-col h3 span {
  color: #22c55e;
}

.footer-col h4 {
  margin-bottom: 12px;
  color: #fff;
}

.footer-col p {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.footer-col a {
  display: block;
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 6px;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #22c55e;
}

.footer-socials {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  font-size: 20px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #6b7280;
}
.story-section {
  padding: 70px 20px;
  background: #eef5f0;
}

.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.story-text {
  flex: 1;
}

.story-label {
  font-size: 12px;
  color: #16a34a;
  font-weight: 700;
  letter-spacing: 1px;
}

.story-text h2 {
  font-size: 36px;
  margin: 10px 0 20px;
}

.story-text p {
  color: #4b5563;
  margin-bottom: 12px;
}

.story-stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.story-stats strong {
  font-size: 22px;
  color: #16a34a;
}

.story-stats span {
  display: block;
  font-size: 13px;
  color: #6b7280;
}

.story-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* мобильная версия */
@media (max-width: 768px) {
  .story-inner {
    flex-direction: column;
    text-align: center;
  }

  .story-stats {
    justify-content: center;
  }
}
/* SLIDE 4 */
.ba-slide:nth-child(4) .before-img {
  background-image: url("bef1.jpg");
}

.ba-slide:nth-child(4) .after-img {
  background-image: url("aft1.jpg");
}

/* SLIDE 5 */
.ba-slide:nth-child(5) .before-img {
  background-image: url("bef2.jpg");
}

.ba-slide:nth-child(5) .after-img {
  background-image: url("aft2.jpg");
}
.ba-img {
  width: 100%;
  height: 440px;

  background-size: contain; /* 🔥 не обрезает */
  background-position: center;
  background-repeat: no-repeat;

  background-color: #f8fafc; /* мягкий фон */
  border-radius: 16px;
}
