/* ╔═══════════════════════════════════════════════════════════════╗
   ║         🎨 ГЛАВНЫЙ ФАЙЛ СТИЛЕЙ - БЕТОНОПРАВ 5                ║
   ║  Структура: Переменные → Основные → Навигация → Секции       ║
   ║  📱 Мобильные адаптивы в конце файла                          ║
   ╚═══════════════════════════════════════════════════════════════╝ */

/* ═══════════════════════════════════════════════════════════════════ */
/* 🎨 1. ЦВЕТОВАЯ ПАЛИТРА И ГЛОБАЛЬНЫЕ ПЕРЕМЕННЫЕ                    */
/* ═══════════════════════════════════════════════════════════════════ */

:root {
  --primary-color: #1e90ff; /* Ярко-синий - основной цвет */
  --secondary-color: #0a3d62; /* Темно-синий - акцентный */
  --bg-light: #acaeb1; /* Светлый фон страницы */
  --text-color: #1a1a1a; /* Основной текст - улучшенный контраст */
  --text-light: #4a4a4a; /* Светлый текст */
  --white: #ffffff; /* Белый */
  --transition: 0.3s ease; /* Стандартная длительность анимаций */
  --focus-ring: 0 0 0 3px rgba(30, 144, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* 🎯 2. ОБЩИЕ СТИЛИ ЭЛЕМЕНТОВ                                       */
/* ═══════════════════════════════════════════════════════════════════ */

* {
  box-sizing: border-box;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth; /* Плавный скролл при клике на якоря */
}


h1,
h2,
h3,
h4,
h5,
h6,
.logo-title,
.nav-cta,
.cta-button,
.btn,
button {
  font-family: "Inter Tight", "IBM Plex Sans", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
}

body {
  padding-top: 70px; /* Отступ под фиксированное меню */
  margin: 0;
  background: white;
  color: var(--text-color);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 80px 0; /* Вертикальные отступы для всех основных секций */
}

.center {
  text-align: center;
}

.form-info h2{
  color: var(--white);
}

.hero h1{
  color: var(--white);
}

h1,
h2,
h3 {
  margin-bottom: 15px;
  color: var(--text-color);
}

/* Улучшение фокуса для клавиатурной навигации */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ♿ ДОСТУПНОСТЬ И ПРОПУСК К КОНТЕНТУ                               */
/* ═══════════════════════════════════════════════════════════════════ */

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 5px 0;
  font-weight: 600;
  z-index: 10001;
}

.skip-to-content:focus {
  top: 0;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* 📍 3. НАВИГАЦИЯ И МЕНЮ                                            */
/* ═══════════════════════════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 34, 77, 0.72);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 18px 42px rgba(3, 16, 39, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
  background: rgba(4, 26, 60, 0.92);
  box-shadow: 0 20px 48px rgba(2, 13, 34, 0.42);
}

.nav-progress {
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #51c2ff, #7ce7ff);
  box-shadow: 0 0 20px rgba(81, 194, 255, 0.65);
  transition: width 0.15s linear;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: relative;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo {
  margin-left: 0;
  height: 44px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo {
  transform: scale(1.06);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-title {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 15px;
}

.logo-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 6px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.nav-links li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all var(--transition);
  font-size: 13px;
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 13px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-phone:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
}

.nav-cta {
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  padding: 9px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1ea4ff, #52d5ff);
  box-shadow: 0 12px 26px rgba(30, 164, 255, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(30, 164, 255, 0.45);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ⭐ 4. ГЛАВНЫЙ ЭКРАН (HERO SECTION)                               */
/* ═══════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  padding: 110px 0;
  background-image:
    url("image/photoOne.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.16), transparent 58%);
  pointer-events: none;
}

.hero-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.24),
    rgba(255, 255, 255, 0.1)
  );
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  padding: 44px;
  box-shadow: 0 35px 65px rgba(1, 18, 45, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 214, 255, 0.35), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

/* Текстовый блок на героле */
.text-block {
  background: linear-gradient(145deg, rgba(3, 20, 54, 0.6), rgba(6, 33, 84, 0.34));
  padding: 32px;
  border-radius: 24px;
  color: var(--white);
  border: 1px solid rgba(168, 224, 255, 0.26);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), 0 18px 40px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d9f2ff;
  border: 1px solid rgba(172, 224, 255, 0.42);
  background: rgba(125, 212, 255, 0.18);
}

.subtitle {
  font-size: 22px;
  color: #8dc6ff;
  margin-bottom: 15px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #e8f6ff;
}

.hero-highlights i {
  color: #8fd9ff;
}

/* 🎥 ВИДЕО И МЕДИА */

.video-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Видео в hero секции */
.hero-video {
  width: 100%;
  max-width: 600px;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-video:hover {
  transform: scale(1.02); /* Легкое увеличение при наведении */
}

/* Видео в секции процесса */
.video-wrapper {
  width: 100%;
  line-height: 0; /* Убирает лишний отступ снизу */
}

.process-visual video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* 🔘 5. КНОПКИ                                                      */
/* ═══════════════════════════════════════════════════════════════════ */

.btn {
  position: relative;
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  color: var(--white);
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 10px 25px rgba(30, 144, 255, 0.35);
  will-change: transform, box-shadow;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(30, 144, 255, 0.45);
}

/* Блик на кнопке при наведении */
.btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(25deg);
  transition: left 0.6s ease;
}

.btn:hover::after {
  left: 130%;
}

.btn-full {
  width: 100%;
  margin-top: 10px;
  font-size: 18px;
  padding: 20px;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ℹ️ 6. О МАТЕРИАЛЕ (ABOUT SECTION)                                */
/* ═══════════════════════════════════════════════════════════════════ */

.about-section {
  background: var(--bg-light);
  overflow: hidden;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  border-radius: 30px;
  position: relative;
  isolation: isolate;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("image/photoOne.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.about-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    130deg,
    rgba(84, 196, 255, 0.2) 0%,
    rgba(12, 42, 93, 0.08) 45%,
    rgba(255, 255, 255, 0.03) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.about-wrapper::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 218, 255, 0.28), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 36px rgba(4, 18, 44, 0.28);
  position: relative;
  z-index: 1;
}

.about-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
}

/* Значки и метки */
.badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.badge.white {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-wrapper h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 38px);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.about-lead {
  font-size: 20px;
  line-height: 1.6;
  color: #f3f8ff;
  margin-bottom: 22px;
}

.about-description {
  border-left: 4px solid rgba(106, 207, 255, 0.9);
  padding: 14px 0 14px 20px;
  color: #d9e8ff;
  line-height: 1.7;
  margin-bottom: 30px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  border-radius: 12px;
}

.about-description p {
  margin: 0;
}

/* Мини-иконки в About */
.about-mini-features {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.mini-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 9px 16px;
  transition: transform 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.mini-item:hover {
  transform: translateY(-1px);
  border-color: rgba(128, 224, 255, 0.6);
  background: rgba(255, 255, 255, 0.18);
}

.mini-item i {
  color: var(--primary-color);
  font-size: 18px;
  filter: drop-shadow(0 0 5px rgba(30, 144, 255, 0.5));
}

/* Изображение и плавающая статистика */
.about-visual {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin-left: auto;
}

.image-overlay-card {
  position: relative;
  border-radius: 24px;
  z-index: 1;
  padding: 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 40px rgba(3, 15, 38, 0.28);
}

.main-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.floating-stat {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(145deg, #0c4689, #0b2d62);
  color: var(--white);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  animation: float 3s ease-in-out infinite;
}

.stat-num {
  display: block;
  font-size: 24px;
  font-weight: 800;
}

.stat-desc {
  font-size: 12px;
  opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ✨ 7. ПРЕИМУЩЕСТВА (FEATURES SECTION)                            */
/* ═══════════════════════════════════════════════════════════════════ */

.features-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(30, 144, 255, 0.14), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(82, 213, 255, 0.18), transparent 40%),
    linear-gradient(180deg, #f7fbff 0%, #edf4ff 100%);
}

.features-section::before,
.features-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.features-section::before {
  width: 440px;
  height: 440px;
  top: -210px;
  right: -140px;
  background: radial-gradient(circle, rgba(25, 118, 210, 0.2), transparent 70%);
}

.features-section::after {
  width: 320px;
  height: 320px;
  bottom: -150px;
  left: -100px;
  background: radial-gradient(circle, rgba(57, 203, 255, 0.24), transparent 72%);
}

.features-section .container {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 34px 28px;
  border-radius: 22px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 36px rgba(11, 40, 79, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  will-change: transform, box-shadow;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 42px rgba(15, 62, 120, 0.18);
  border-color: rgba(30, 144, 255, 0.35);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 0 18px;
  background: linear-gradient(145deg, #e9f5ff 0%, #d7ecff 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background 0.35s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.feature-icon i {
  font-size: 25px;
  color: #0d5db3;
  transition: color 0.35s ease;
}


.feature-meta {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0f58a2;
  background: rgba(30, 144, 255, 0.12);
  border: 1px solid rgba(30, 144, 255, 0.22);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.feature-card p {
  margin: 0;
  line-height: 1.6;
  color: #35506f;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #1e90ff, #48c6ff);
  transform: translateY(-2px) scale(1.03);
}

.feature-card:hover .feature-icon i {
  color: var(--white);
}


@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* 📋 8. ПРОЦЕСС И ИНСТРУКЦИЯ                                        */
/* ═══════════════════════════════════════════════════════════════════ */

.process-section {
  background: #f4f7f9;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

/* Линия соединения шагов (только на десктопе) */
@media (min-width: 992px) {
  .process-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(30, 144, 255, 0.2);
    z-index: 0;
  }
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  height: auto;
}

.step-number {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  background: var(--secondary-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px rgba(10, 61, 98, 0.1);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--primary-color);
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.step-item:hover .step-icon {
  border: 2px solid var(--primary-color);
  transform: translateY(-5px);
  color: var(--secondary-color);
}

/* Скрытые детали для аккордионов */
.step-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  padding: 0 10px;
}

.step-item.active .step-details {
  max-height: 2000px;
  padding-bottom: 15px;
  overflow-y: visible;
}

/* Визуальный блок процесса */
.process-visual .visual-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.process-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Пошаговый регламент (горизонтальная карта шагов) */
.path-section {
  background:
    radial-gradient(circle at 5% 0%, rgba(30, 144, 255, 0.12), transparent 42%),
    radial-gradient(circle at 95% 100%, rgba(10, 61, 98, 0.12), transparent 38%),
    #f3f8ff;
  padding: 80px 0;
}

.path-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.path-item {
  position: relative;
  min-height: 100%;
}

.path-content {
  position: relative;
  height: 100%;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(30, 144, 255, 0.16);
  background: linear-gradient(165deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 14px 30px rgba(10, 61, 98, 0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
  overflow: hidden;
}

.path-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.15) 45%,
    rgba(126, 200, 255, 0.15) 100%
  );
  pointer-events: none;
}

.path-content::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 144, 255, 0.22), rgba(30, 144, 255, 0.06));
  box-shadow: 0 0 0 10px rgba(30, 144, 255, 0.06);
}

.path-item:hover .path-content {
  transform: translateY(-8px);
  box-shadow: 0 22px 42px rgba(30, 144, 255, 0.2);
  border-color: rgba(30, 144, 255, 0.45);
}

.path-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-color), #0f66be);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 8px 16px rgba(30, 144, 255, 0.25);
}

.path-content h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--secondary-color);
  font-size: 1.18rem;
}

.path-content p {
  position: relative;
  z-index: 1;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #0f1d2b;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* 📝 9. ФОРМА И ВВОД ДАННЫХ                                         */
/* ═══════════════════════════════════════════════════════════════════ */

.form-wrapper {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  color: var(--white);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(30, 144, 255, 0.3);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Левая - информация, правая - форма */
}

.form-info {
  padding: 60px;
}

.form-container {
  background: var(--white);
  padding: 60px;
  color: var(--text-color);
}

.form-benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.form-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #e0f0ff;
}

.form-benefits i {
  color: #25d366; /* Зеленая иконка для галочек */
}

/* Группа полей ввода */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.input-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
}

.input-group input,
.input-group select {
  padding: 15px;
  border-radius: 12px;
  border: 2px solid #eef2f6;
  background: #f8fbff;
  font-size: 16px;
  transition: var(--transition);
  width: 100%;
  font-family: inherit;
}

.input-group input::placeholder {
  color: #999;
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
  background: var(--white);
  outline: none;
}

/* Состояние отправки кнопки */
.input-group button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.privacy-note {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-top: 15px;
}

.phone-link {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.phone-link:hover {
  color: #25d366;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* 🌐 10. СОЦСЕТИ И ФУТЕР                                           */
/* ═══════════════════════════════════════════════════════════════════ */

.socials {
  position: fixed;
  right: 20px;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.socials a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  text-decoration: none;
}

.socials a:hover {
  transform: scale(1.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* Градиенты для социальных сетей */
.insta {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.whatsapp {
  background: #25d366;
}

.telegram {
  background: #0088cc;
}

/* Общие стили футера */
footer {
  padding: 60px 30px;
  margin-top: 80px;
  text-align: center;
  background: var(--secondary-color);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  text-align: left;
}

.footer-map iframe {
  width: 100%;
  height: 250px;
  border-radius: 15px;
  border: none;
}

.footer-contacts h4,
.footer-socials h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-contacts p {
  margin-bottom: 10px;
  color: #ccc;
}

.footer-contacts i {
  width: 20px;
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

/* Сертификаты */
.cert-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  line-height: 0;
}

.cert-card img {
  width: 100%;
  height: auto;
  display: block;
}

.cert-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 12px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(0deg, rgba(2, 23, 52, 0.84), rgba(2, 23, 52, 0));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.cert-card:hover .cert-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ✨ 11. КНОПКА "ВВЕРХ" И УВЕДОМЛЕНИЯ                                */
/* ═══════════════════════════════════════════════════════════════════ */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(30, 144, 255, 0.35);
  z-index: 999;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30, 144, 255, 0.45);
}

.back-to-top:active {
  transform: translateY(-2px);
}

/* Сообщения формы */
.form-error-message,
.form-success-message {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-error-message {
  background: #fee;
  color: #c33;
  border: 1px solid #fcc;
}

.form-success-message {
  background: #efe;
  color: #3c3;
  border: 1px solid #cfc;
}

.form-error-message.show,
.form-success-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ✨ 12. АНИМАЦИИ И ЭФФЕКТЫ                                         */
/* ═══════════════════════════════════════════════════════════════════ */

/* Блик на навигации */
@keyframes shine {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}

/* Пульсация свечения для ссылок */
@keyframes pulseGlowNav {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(30, 144, 255, 0);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(30, 144, 255, 0);
  }
}

/* Сходная пульсация для кнопок */
@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(30, 144, 255, 0);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(30, 144, 255, 0);
  }
}

/* Плавающее движение для статистики */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Пульс для точек */
@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(30, 144, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(30, 144, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(30, 144, 255, 0);
  }
}

/* Улучшение скролла к якорям */
:target {
  scroll-margin-top: 100px;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* 🎬 12. БЛОК ОТЗЫВОВ И ГАЛЕРЕЯ                                      */
/* ═══════════════════════════════════════════════════════════════════ */

.reviews-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 100px 0;
}

.reviews-gallery {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(30, 144, 255, 0.12);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(30, 144, 255, 0.16);
}

.review-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
  background: #eaf4ff;
  cursor: zoom-in;
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(10, 61, 98, 0.85);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.review-card:hover .review-zoom,
.review-image:focus-visible .review-zoom {
  opacity: 1;
  transform: translateY(0);
}

.review-content {
  padding: 18px 18px 20px;
}

.review-content h3 {
  margin: 0 0 8px;
  color: var(--secondary-color);
  font-size: 1.08rem;
}

.review-content p {
  margin: 0;
  color: #3e4f5e;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* 🎨 13. МОДАЛЬНОЕ ОКНО ДЛЯ ПРОСМОТРА ИЗОБРАЖЕНИЙ                   */
/* ═══════════════════════════════════════════════════════════════════ */

.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  padding: 48px 24px 24px;
}

.image-modal.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.modal-image {
  max-width: min(1100px, 90vw);
  max-height: 72vh;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.modal-caption {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  cursor: pointer;
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

@media (max-width: 1080px) {
  .reviews-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .review-image {
    aspect-ratio: 16 / 10;
  }

  .review-content {
    padding: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* 📱 МОБИЛЬНЫЕ АДАПТИВЫ (768px и ниже)                               */
/* ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 992px) {
  /* Отключаем линию соединения шагов */
  .process-steps::before {
    display: none;
  }

  /* Форма на мобильном */
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-info,
  .form-container {
    padding: 40px 30px;
  }

  /* About на мобильном */
  .about-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .about-visual {
    order: -1;
  }

  .floating-stat {
    left: 20px;
  }

  /* Footer на мобильном */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Hero на мобильном */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .text-block {
    margin: 0 auto 30px;
    max-width: 100%;
  }

  .video-container {
    margin: 0 auto;
    max-width: 500px;
  }

  /* Process visual */
  .process-visual .visual-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* 1️⃣ ОБЩИЕ ОТСТУПЫ */
  .section {
    padding: 40px 0;
  }

  .container {
    width: 95%;
  }

  h1 {
    font-size: 28px;
  }

  /* 2️⃣ НАВИГАЦИЯ */
  .logo-copy,
  .nav-phone span,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-actions {
    gap: 0;
  }

  .nav-phone {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 10px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .nav-links {
    display: none;
  }

  .nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    border-radius: 16px;
    padding: 14px;
    z-index: 1001;
    background: rgba(4, 27, 61, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-links li a {
    display: block;
    padding: 11px 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
  }

  .logo {
    height: 36px;
  }

  .nav-container {
    padding: 10px 0;
  }

  /* 3️⃣ HERO */
  .hero {
    padding: 40px 0;
    background-attachment: scroll;
  }

  .hero-card {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-grid {
    gap: 20px;
  }

  .text-block {
    padding: 22px;
  }

  .hero-kicker {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .subtitle {
    font-size: 18px;
  }

  .hero-highlights {
    justify-content: center;
    margin: 18px 0 24px;
  }

  .hero-highlights span {
    font-size: 13px;
    padding: 8px 12px;
  }

  /* 4️⃣ ABOUT */
  .about-wrapper {
    padding: 25px 15px;
    gap: 30px;
  }

  .about-lead {
    font-size: 17px;
  }

  .about-mini-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .about-section {
    padding: 40px 0;
  }

  .about-visual {
    max-width: 240px;
    margin: 0 auto;
  }

  .floating-stat {
    padding: 10px 15px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
  }

  .stat-num {
    font-size: 18px;
  }

  .about-content {
    padding: 22px;
    text-align: center;
  }

  .about-wrapper h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .about-lead {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .about-description {
    padding-left: 0;
    border-left: none;
    border-top: 2px solid var(--primary-color);
    padding-top: 15px;
    font-size: 14px;
  }

  .mini-item {
    font-size: 13px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 10px;
  }

  /* 5️⃣ FEATURES */
  .features-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px 5px 25px 5px;
    scrollbar-width: none;
  }

  .features-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
    margin-bottom: 0;
    text-align: left;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* 6️⃣ PROCESS */
  .step-item {
    flex: 0 0 280px;
    scroll-snap-align: center;
    margin-bottom: 0;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  /* 7️⃣ PATH SECTION */
  .path-steps {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding: 6px 4px 18px;
    margin-top: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .path-steps::-webkit-scrollbar {
    display: none;
  }

  .path-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .path-content {
    padding: 18px;
  }

  .path-content h3 {
    font-size: 1.05rem;
  }


  /* 8️⃣ ФОРМА */
  .form-info,
  .form-container {
    padding: 30px 20px;
  }

  .form-benefits li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  /* 9️⃣ SOCIALS */
  .socials {
    right: 10px;
    gap: 8px;
  }

  .socials a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* 🔟 STEP DETAILS */
  .step-details p {
    font-size: 15px;
    line-height: 1.5;
    padding-top: 15px;
    margin-top: 10px;
  }

  .step-header h3 {
    font-size: 18px;
  }

  /* 1️⃣1️⃣ REVIEWS */
  .reviews-section {
    padding: 60px 0;
  }

  .reviews-gallery {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    overflow-x: auto;
    padding: 4px 2px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .review-card {
    border-radius: 18px;
    flex: 0 0 min(86vw, 340px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .review-image {
    aspect-ratio: 5 / 3;
  }

  .review-content {
    padding: 14px 14px 16px;
  }

  .review-content h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .review-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .reviews-gallery::-webkit-scrollbar {
    height: 6px;
  }

  .reviews-gallery::-webkit-scrollbar-thumb {
    background: rgba(30, 144, 255, 0.35);
    border-radius: 20px;
  }

  .modal-image {
    max-width: 95%;
    max-height: 68vh;
  }

  .modal-nav {
    width: 40px;
    height: 40px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
  }
}

/* Поддержка сенсорных устройств */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .socials a,
  .feature-card,
  .step-item {
    padding: 15px;
  }

  .nav-links li a {
    padding: 12px 18px;
  }
}
@media (max-width: 480px) {
  .about-mini-features {
    grid-template-columns: 1fr;
  }

  .feature-card {
    flex: 0 0 240px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
  }

  .socials {
    right: 5px;
    bottom: 50px;
  }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* 🎯 14. ДОПОЛНИТЕЛЬНЫЕ ДИЗАЙН-ДОРАБОТКИ ПО БЛОКАМ                 */
/* ═══════════════════════════════════════════════════════════════════ */

.section-header {
  max-width: 760px;
  margin: 0 auto;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto;
}

.about-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px 14px;
  border-radius: 999px;
}

.feature-card {
  position: relative;
  background: linear-gradient(165deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #7ec8ff);
  opacity: 0.65;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(30, 144, 255, 0.24);
  box-shadow: 0 0 0 6px rgba(30, 144, 255, 0.08);
}

.step-item {
  border-radius: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);;
}

.step-item.active {
  box-shadow: 0 16px 35px rgba(30, 144, 255, 0.16);
  border-color: rgba(30, 144, 255, 0.35);
}

.path-content {
  background: linear-gradient(160deg, #ffffff, #f8fbff);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.path-item:hover .path-content {
  box-shadow: 0 18px 35px rgba(30, 144, 255, 0.12);
}

.form-wrapper {
  position: relative;
}

.form-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.2), transparent 45%);
  pointer-events: none;
}

.form-container {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.review-card {
  background: linear-gradient(180deg, #ffffff, #f9fcff);
}

.footer-grid > div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 20px;
}

.footer-social-links {
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .hero-btns .btn {
    width: 100%;
    max-width: 320px;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .path-item:hover .path-content {
    transform: none;
  }

  .path-content::after {
    width: 34px;
    height: 34px;
    right: 14px;
    top: 14px;
  }

  .input-group input,
  .input-group select {
    font-size: 15px;
    padding: 14px;
  }

  .footer-grid > div {
    text-align: left;
  }
}


/* Небольшие UX-улучшения */
body{line-height:1.55}
p{line-height:1.65}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap}
.btn-secondary{background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.35);box-shadow:none}
.btn-secondary:hover{box-shadow:0 14px 28px rgba(3,20,54,.24)}
.section-subtitle strong{font-weight:700}
.quick-actions{display:none}

@media (max-width:768px){
  .quick-actions{position:fixed;left:10px;right:10px;bottom:10px;display:grid;grid-template-columns:1fr 1fr;gap:10px;z-index:1000}
  .quick-actions a{display:flex;justify-content:center;align-items:center;gap:8px;padding:12px;border-radius:12px;text-decoration:none;color:#fff;font-weight:700;background:linear-gradient(135deg,var(--secondary-color),var(--primary-color));box-shadow:0 10px 24px rgba(0,0,0,.25)}
  .back-to-top{bottom:74px}
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}