/* 🔧 Сброс и базовые переменные */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #ff6b35;
  --secondary: #00d9ff;
  --dark: #1a1a1a;
  --light: #f5f5f5;
  --text: #333;
  --accent: #ff4500;
}

/* 🔤 Шрифты */
body {
  font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* 🧩 Заголовки */
.section-title {
  text-align: center;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--dark);
  letter-spacing: 2px;
}
.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 60px;
}

/* 🔘 Кнопки */
.btn {
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}
.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

/* 📱 Адаптация кнопок и заголовков */
@media (max-width: 1200px) {
  .section-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  .btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
}
/* === HEADER === */
header.site-header {
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--secondary);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

/* === Логотип — универсально */
.logo {
  display: flex;
  align-items: center;
  max-height: 80px;
  overflow: hidden;
}

.logo img {
  height: 100%;
  max-height: 140px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* === Десктоп === */
@media (min-width: 769px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
  }

  .main-nav {
    flex: 1;
    margin: 0 40px;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    justify-content: center;
    align-items: center;
  }

  .nav-links a {
    position: relative;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 4px 0;
    transition: color 0.3s ease;
    text-decoration: none;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
  }

  .nav-links a:hover {
    color: var(--secondary);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .header-meta {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .header-phones {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .phone-link i {
    font-size: 1rem;
    color: var(--accent);
    transition: color 0.3s ease;
  }

  .phone-link:hover span,
  .phone-link:hover i {
    color: var(--secondary);
  }

  .header-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-nav {
    display: none;
  }
}

/* === Мобилка === */
@media (max-width: 768px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .logo {
    min-width: 100%;
  }

  .logo img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
  }

  .header-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
  }

  .header-phones {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  .phone-link {
    font-size: 1.1rem;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    width: max-content;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }

  .phone-link i {
    font-size: 1.2rem;
    color: var(--accent);
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }

  .mobile-nav.active {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav .nav-links {
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav .nav-links a {
    position: relative;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 6px 0;
    transition: color 0.3s ease;
    text-decoration: none;
  }

  .mobile-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
  }

  .mobile-nav .nav-links a:hover,
  .mobile-nav .nav-links a:focus,
  .mobile-nav .nav-links a:active {
    color: var(--secondary);
  }

  .mobile-nav .nav-links a:hover::after,
  .mobile-nav .nav-links a:focus::after,
  .mobile-nav .nav-links a:active::after {
    width: 100%;
  }

  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
  }
@media (max-width: 768px) {
  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* 🔹 растягивает всё по ширине */
    gap: 20px;
    padding: 20px;
  }

  .logo {
    width: 100%;
    text-align: center;
  }

  .logo img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
  }

  .header-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 🔹 выравнивание по левому краю */
    gap: 16px;
    width: 100%;
  }

  .header-phones {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .phone-link {
    font-size: 1.1rem;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    width: 100%;
  }

  .header-cta {
    width: 100%;
  }

  .header-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-menu-btn {
    align-self: flex-start;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
}

}


/* 🔷 HERO */.hero {
  position: relative;
  min-height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('../img/bg.jpg') center/cover no-repeat;
 display: flex;
  flex-direction: column; /* 💡 вертикальное выравнивание */
  align-items: center;
  justify-content: flex-start; /* 💡 контент сверху */
  padding: 40px 20px 50px;
}
/* 🔸 Анимация спарклов */
.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ffa500;
  border-radius: 50%;
  animation: sparkle 3s infinite;
  box-shadow: 0 0 10px #ffa500;
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}
.spark:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.spark:nth-child(2) { top: 40%; right: 15%; animation-delay: 0.5s; }
.spark:nth-child(3) { top: 60%; left: 20%; animation-delay: 1s; }
.spark:nth-child(4) { bottom: 30%; right: 25%; animation-delay: 1.5s; }
.spark:nth-child(5) { top: 70%; right: 10%; animation-delay: 2s; }
.spark:nth-child(6) { bottom: 20%; left: 30%; animation-delay: 2.5s; }

/* 🔸 Контент HERO */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* 🔸 Текст */
.hero-text h1 {
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 0.9;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}
.hero-text .company-name {
  font-size: 6rem;
  background: linear-gradient(135deg, var(--secondary), #0099ff, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 30px;
  animation: glow 3s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}
.hero-text p {
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}
.top { margin-bottom:40px;
}
/* 🔸 Кнопки */
.btn-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: #007bff;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background: #0056b3;
}

/* 🔥 Кнопка попапа */
.btn-glow {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff6a00, #ffb347);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.6);
}
.btn-glow:active {
  transform: scale(0.98);
}

/* 🔸 Логотип */
.hero-logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  animation: float 6s ease-in-out infinite;
}
.hero-logo-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.4));
  transition: transform 0.3s ease;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* 📱 Адаптация HERO */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 120px 20px 50px;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-text .company-name {
    font-size: 3rem;
  }
  .hero-logo-img {
    max-width: 280px;
  }
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
  .btn-glow,
  .btn-primary {
    width: 100%;
    text-align: center;
  }

}

/* === WHAT WE DO === */
.what-we-do {
  background: var(--light);
  padding: 100px 20px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.work-item {
  background: white;
  border-radius: 20px;
  padding: 60px 30px 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
  position: relative;
}

.work-item:hover {
  transform: translateY(-10px);
}

.work-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.work-item:hover .work-icon {
  transform: scale(1.1);
}

.work-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.work-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* 🔹 Кнопка CTA */
.cta-center {
  margin-top: 60px;
  text-align: center;
}
.btn-glow {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff6a00, #ffb347);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.6);
}
.btn-glow:active {
  transform: scale(0.98);
}

/* 📱 Адаптация WHAT WE DO */
@media (max-width: 1200px) {
  .work-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
  }
  .work-item {
    padding: 50px 25px 30px;
  }
  .work-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .what-we-do {
    padding: 80px 15px;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .work-item h3 {
    font-size: 1.3rem;
  }
  .work-item p {
    font-size: 0.95rem;
  }
  .btn-glow {
    width: 100%;
    text-align: center;
  }
}

/* 🛡️ Защита заголовков от выделения */
.section-title,
.section-subtitle,
h1, h2, h3, h4, h5, h6 {
  cursor: default !important;
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
}

.section-title:focus,
.section-subtitle:focus {
  outline: none;
}

/* === ГАЛЕРЕЯ === */
.gallery {
  background: #fff;
  padding: 100px 20px;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.tab-btn {
  padding: 12px 30px;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  background: var(--light);
  color: var(--dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: var(--secondary);
  color: white;
}

.gallery-content {
  margin-top: 60px;
}

.tab-content {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tab-content.active {
  display: grid;
}

/* 🔹 Элементы галереи */
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: block;
}

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

.gallery-item img,
.gallery-item video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  z-index: 1;
}

/* 🔸 Лоадер для видео */
.video-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  color: #666;
  background: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: 6px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.video-item.error .video-loader {
  opacity: 1;
  visibility: visible;
}

/* 🔹 CTA внутри вкладок */
.cta-center {
  margin-top: 40px;
  text-align: center;
}
.tab-content .cta-center {
  grid-column: 1 / -1;
}

.btn-glow {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff6a00, #ffb347);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.6);
}

.btn-glow:active {
  transform: scale(0.98);
}

/* 📱 Адаптив */
@media (max-width: 1024px) {
  .tab-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tab-content {
    grid-template-columns: 1fr;
  }

  .btn-glow {
    width: 100%;
    text-align: center;
  }
  .gallery-tabs {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}


/* === ЦІНИ === */
.pricing {
  background: var(--light);
  padding: 100px 20px;
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: clamp(1rem, 3vw, 1.1rem);
  color: #666;
  margin-bottom: 60px;
}

/* === Сетка карточек === */
.pricing-group {
   display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* === Карточка === */
.price-block {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 580px;
  box-sizing: border-box;
 flex: 0 1 400px;
  max-width: 400px;
}

.price-block:hover {
  transform: translateY(-6px);
}

.price-block h3 {
  font-size: clamp(1.2rem, 4vw, 1.4rem);
  margin-bottom: 20px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-block h3 i {
  color: #ff6a00;
  font-size: 1.2rem;
}

/* === Таблица === */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  table-layout: fixed;
}

.price-table th,
.price-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.price-table th {
  background: #007BFF;
  color: #fff;
  font-weight: 600;
  border-bottom: 2px solid #007BFF;
}

.price-table td {
  color: #333;
}

.price-table tr:last-child td {
  border-bottom: none;
}

/* === Примечание === */
.price-note {
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  color: #777;
  margin-top: 6px;
margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-note i {
  color: #ff6a00;
}

/* === Список доп. послуг === */
.extra-services .price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #333;
}

.extra-services .price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.extra-services .price-list li i {
  color: #ff6a00;
  min-width: 18px;
  font-size: 1.1rem;
}

/* === CTA кнопка === */
.price-cta {
  margin-top: auto;
  text-align: center;

}

.btn-glow {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff6a00, #ffb347);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.5);
}

.btn-glow:active {
  transform: scale(0.98);
}

/* === Адаптив === */
@media (max-width: 1024px) {
  .pricing-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .price-block {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .pricing-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .price-block {
    width: 100%;
    max-width: 640px;
    padding: 28px;
    margin: 0 auto;
    box-sizing: border-box;
    min-height: auto;
  }

  .price-block h3,
  .price-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .price-table th,
  .price-table td {
    padding: 12px 14px;
    font-size: 1rem;
  }

  .btn-glow {
    width: 100%;
    text-align: center;
  }
.hero-top-buttons {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  margin-bottom: 30px;
  text-align: center;
}

.btn-group.top {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-group.top .btn {
  width: 100%;
  max-width: 320px;
  text-align: center;
font-size: 0.95rem;
}
}

@media (max-width: 480px) {
  body {
    overflow-x: hidden;
  }

 .pricing-group {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* 💡 растягивает карточки на всю ширину */
  justify-content: center;
  gap: 16px;
  padding: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

 .price-block {
  width: 100%;
  max-width: none;
  padding: 24px 20px;
  margin: 0;
  box-sizing: border-box;
}

  .price-block h3 {
    font-size: 1.3rem;
    padding: 0 12px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .price-note {
    font-size: 0.9rem;
    padding: 0 12px;
    text-align: center;
  }

  .price-table th,
  .price-table td {
    padding: 10px 10px;
    font-size: 0.95rem;
  }

  .btn-glow {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 24px;
    box-shadow: 0 0 8px rgba(255, 106, 0, 0.2);
    width: auto;
    min-width: 140px;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }
}


/* === СЕКЦІЯ ПЕРЕВАГИ === */
.benefits {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff7f0 0%, #ffe4cc 100%);
}

.benefits .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a1a1a;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--accent, #007bff);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* === СІТКА === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* === КАРТОЧКА === */
.benefit-item {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 123, 255, 0.05), transparent 70%);
  z-index: 0;
  transition: opacity 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--accent, #007bff);
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.benefit-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
  z-index: 1;
  position: relative;
}

.benefit-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  z-index: 1;
  position: relative;
}

/* === CTA КНОПКА === */
.cta-center {
  margin-top: 60px;
  text-align: center;
}

.btn-glow {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff6a00, #ffb347);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.5);
}

.btn-glow:active {
  transform: scale(0.98);
}

/* === АДАПТИВ === */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .benefit-icon {
    font-size: 2.5rem;
  }

  .benefit-item {
    padding: 28px 20px;
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .benefit-item h3 {
    font-size: 1.2rem;
  }

  .benefit-item p {
    font-size: 0.95rem;
  }

  .btn-glow {
    width: 100%;
    text-align: center;
  }
}


.testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
  position: relative;
  z-index: 1;
}

.testimonials .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

.testimonial-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-text {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #222;
  font-size: 1rem;
}
/* === SWIPER FIX === */
.swiper-slide {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.testimonial-card {
  width: 100%;
  max-width: 600px; /* ⬅️ фиксированная ширина, но не переполняет */
  margin: 0 auto;
  box-sizing: border-box;
}
.faq {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
}

.faq .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.faq-item {
  margin-bottom: 24px;
  border-bottom: 1px solid #ddd;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  text-align: left;
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.faq-question i {
  color: var(--accent, #007bff);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  font-size: 1rem;
  color: #555;
  padding-bottom: 16px;
  display: none;
  animation: fadeIn 0.3s ease;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  color: var(--accent, #007bff);
}

.faq-item.active .faq-question i {
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}
/* 🧩 Попап */.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
}
.modal.active {
  display: flex;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
}
.modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.4s ease;
}
.modal-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: center;
}
.modal-subtitle {
  font-size: 1rem;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

/* 📩 Форма */
.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #444;
}
.input-wrapper {
  position: relative;
}
.input-wrapper i.fa {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 1rem;
  pointer-events: none;
}
.input-wrapper input,
.input-wrapper textarea {
  padding: 14px 18px 14px 40px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: #f9f9f9;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}
.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  outline: none;
}
textarea {
  resize: vertical;
  min-height: 100px;
}
.btn-submit {
  align-self: center;
  padding: 14px 40px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-submit i.fa {
  margin-right: 8px;
}
.btn-submit:hover {
  background: #0056b3;
}
.form-status {
  text-align: center;
  font-size: 0.95rem;
  color: #333;
}

/* ✅ Подяка */
.thank-you {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 20px 30px;
  border-radius: 10px;
  z-index: 1000;
  font-size: 1rem;
  display: none;
  animation: fadeInOut 4s ease forwards;
}
.thank-you.active {
  display: block;
}
.thank-you h2 i.fa {
  margin-right: 8px;
}
@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-10px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-10px); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* 📱 Адаптив */
@media (max-width: 480px) {
  .modal-content {
    padding: 30px 20px;
    border-radius: 12px;
  }
  .modal-title {
    font-size: 1.5rem;
  }
  .btn-submit {
    width: 100%;
  }
}
/* 🔹 Секция *//* 🔹 Секция з фоном */
.contact-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, #f0f4f8 0%, #e2e8f0 100%);
  position: relative;
  z-index: 10;
}

/* 🔸 Карточка форми */
.contact-card {
  background: #ffffff;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  max-width: 860px;
  margin: 0 auto;
  transition: box-shadow 0.3s ease;
}
.contact-card:hover {
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
}

/* 🧠 Заголовки */
.section-title {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 12px;
  color: #1a202c;
}
.section-title i.fa {
  margin-right: 12px;
  color: #007bff;
}
.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #4a5568;
  margin-bottom: 50px;
}

/* 📩 Форма */
.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #2d3748;
}

/* 🧩 Иконки */
.input-wrapper {
  position: relative;
}
.input-wrapper i.fa {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  font-size: 1rem;
  pointer-events: none;
}

/* ✏️ Поля */
.input-wrapper input,
.input-wrapper textarea {
  padding: 16px 20px 16px 44px;
  border: 1px solid #cbd5e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #f7fafc;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}
.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
  outline: none;
}
textarea {
  resize: vertical;
  min-height: 140px;
}

/* 🚀 Кнопка */
.btn-submit {
  align-self: center;
  padding: 16px 48px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-submit i.fa {
  font-size: 1rem;
}
.btn-submit:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* 📊 Статус */
.form-status {
  text-align: center;
  font-size: 0.95rem;
  color: #2d3748;
  margin-top: 10px;
}

/* 📱 Адаптив */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .btn-submit {
    width: 100%;
    justify-content: center;
  }
  .contact-card {
    padding: 40px 24px;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
}
.thank-you {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #28a745;
  color: white;
  padding: 30px 40px;
  border-radius: 16px;
  z-index: 1000;
  font-size: 1rem;
  display: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: fadeInOut 4s ease forwards;
  max-width: 90%;
  width: 400px;
  text-align: center;
}
.thank-you.active {
  display: block;
}
.thank-you h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.thank-you h2 i.fa {
  margin-right: 8px;
}
.thank-you p {
  font-size: 1rem;
  line-height: 1.4;
}
@keyframes fadeInOut {
  0% { opacity: 0; transform: translate(-50%, -60%); }
  10% { opacity: 1; transform: translate(-50%, -50%); }
  90% { opacity: 1; transform: translate(-50%, -50%); }
  100% { opacity: 0; transform: translate(-50%, -60%); }
}

/* 📱 Адаптив */
@media (max-width: 600px) {
  .modal {
    width: 100vw;
    height: auto;
    max-height: 100vh;
    border-radius: 0;
    padding: 20px 16px;
    align-items: flex-start;
  }

  .modal-wrapper {
    max-width: 100%;
    box-sizing: border-box;
  }

  .modal-content {
    padding: 30px 20px;
    border-radius: 12px;
    box-sizing: border-box;
  }

  .modal-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .modal-subtitle {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 24px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    font-size: 1.4rem;
  }

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

  .modal input,
  .modal textarea {
    font-size: 1rem;
    padding: 12px 16px 12px 40px;
  }

  .modal .btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .thank-you {
    padding: 24px 20px;
    width: 90%;
    font-size: 0.95rem;
    word-break: break-word;
    box-sizing: border-box;
  }

  .thank-you h2 {
    font-size: 1.3rem;
  }

  .thank-you p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}
@media (max-width: 600px) {
  #popup-message-group {
    display: none;
  }
}
/* === Футер === */
.site-footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 60px 0 40px;
  font-size: 0.95rem;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* === Верхняя часть === */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 170px;
  overflow: hidden;
  margin: 0 auto;
  flex-shrink: 0;
}

.footer-logo img {
  height: 100%;
  max-height: 170px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.4;
  margin-top: 12px;
}

/* === Навигация === */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #00aaff;
  transition: width 0.3s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-nav a:hover {
  color: #fff;
}

/* === Контакты === */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-phone {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-phone:hover {
  color: #00aaff;
}

.footer-contacts a i {
  margin-right: 8px;
  color: #00aaff;
}

.footer-hours {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
}

.footer-hours i {
  margin-right: 6px;
  color: #00aaff;
}

/* === Соцсети === */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  color: #ccc;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-social a:hover {
  color: #00aaff;
  transform: scale(1.05);
}

/* === Нижняя часть === */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 0.85rem;
}

.footer-bottom a {
  position: relative;
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #00aaff;
  transition: width 0.3s ease;
}

.footer-bottom a:hover::after {
  width: 100%;
}

.footer-bottom a:hover {
  color: #fff;
}

/* === Адаптация под мобилку === */
@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    margin: 10px auto 0;
  }
}
@media (max-width: 600px) {
  .contact-section {
    padding: 60px 16px;
  }

  .contact-card {
    padding: 32px 20px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  }

  .section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 30px;
  }

  .form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

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

  .form-group label {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #2d3748;
  }

  .input-wrapper i.fa {
    left: 12px;
    font-size: 0.95rem;
    color: #a0aec0;
  }

  .input-wrapper input,
  .input-wrapper textarea {
    padding: 12px 16px 12px 38px;
    font-size: 1rem;
    border-radius: 10px;
    background: #f7fafc;
    border: 1px solid #cbd5e0;
    width: 100%;
    box-sizing: border-box;
  }

  .btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border-radius: 30px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
  }

  .btn-submit:hover {
    background: #0056b3;
  }

  .form-status {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 8px;
    color: #2d3748;
  }

  textarea {
    min-height: 100px;
    resize: vertical;
  }
}
/* === Кнопка скролла вверх === */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: #ff6a00;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-top:hover {
  background: #e65c00;
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(255, 106, 0, 0.6);
}

/* === Кнопка контактов === */
.side-contact {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 999;
}

.contact-toggle {
  width: 48px;
  height: 48px;
  background: #007BFF;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-toggle:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(0, 123, 255, 0.6);
}

/* === Попап контактов === */
.contact-popup {
  position: absolute;
  bottom: 60px;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
  animation: fadeIn 0.3s ease forwards;
}

.side-contact.active .contact-popup {
  display: flex;
}

.contact-popup a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-popup a i {
  color: #007BFF;
  transition: color 0.3s ease;
}

.contac007BFFt-popup a:hover {
  color: #;
  transform: translateX(4px);
}

.contact-popup a:hover i {
  color: #0056b3;
}

/* === Анимация появления === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Адаптив: скрыть на мобилке === */
@media (max-width: 768px) {
  .side-contact {
    display: none;
  }
}
.extra-services .price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #333;
}

.extra-services .price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.extra-services .price-list li i {
  color: #ff6a00; /* 🔶 оранжевый */
  min-width: 18px;
  font-size: 1.1rem;
}
/* === Партнери === */
.partners {
  background: #f9f9f9;
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title i {
  margin-right: 10px;
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
}

/* 🔹 Сітка карточок */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* 🔗 Картка як посилання */
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-decoration: none !important;
  color: inherit !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

/* 🖼 Логотип партнера */
.partner-card img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

/* 🔸 Білий логотип — фон для контрасту */
.partner-card.restart {
  background: linear-gradient(135deg, #ff4e00, #ec9f05);
}

/* 📝 Текст під логотипом */
.partner-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  line-height: 1.4;
}

/* 📱 Адаптив */
@media (max-width: 1024px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .partner-card img {
    max-height: 100px;
  }
}

@media (max-width: 600px) {
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .partner-card {
    padding: 24px 16px;
  }

  .partner-card img {
    max-height: 80px;
  }

  .partner-text {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}