/* * ========================================
 * Челленджи - Основные стили
 * Темная тема с яркими акцентами
 * ======================================== */

/* * CSS переменные для цветовой схемы */
:root {
  /* * Основные цвета */
  --color-primary: #1a1a1a;
  --color-secondary: #2a2a2a;
  --color-dark: #0f0f0f;
  --color-text: #ffffff;
  --color-text-muted: #b0b0b0;
  
  /* * Акцентные цвета */
  --color-accent-orange: #ff6b35;
  --color-accent-green: #4ecdc4;
  --color-accent-purple: #9b59b6;
  --color-accent-yellow: #f1c40f;
  
  /* * Градиенты */
  --gradient-primary: linear-gradient(135deg, #ff6b35, #f39c12);
  --gradient-secondary: linear-gradient(135deg, #4ecdc4, #44a08d);
  --gradient-purple: linear-gradient(135deg, #9b59b6, #8e44ad);
  
  /* * Тени */
  --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-large: 0 8px 40px rgba(0, 0, 0, 0.5);
  
  /* * Шрифты */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* * Размеры */
  --container-max-width: 1200px;
  --border-radius: 12px;
  --border-radius-large: 20px;
  
  /* * Отступы */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* * Переходы */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* * Сброс стилей */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-primary);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* * Адаптация для пользователей с ограниченными возможностями */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .sticky-cta .btn-primary,
  .scroll-down,
  .hero__title .highlight {
    animation: none !important;
  }

  .hero__title .highlight {
    filter: none !important;
  }
}

/* * Улучшенная видимость для фокуса (accessibility) */
*:focus-visible {
  outline: 2px solid var(--color-accent-orange);
  outline-offset: 2px;
}

a, button {
  cursor: pointer;
}

/* * Контейнер */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* * Типографика */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* * Кнопки */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-medium);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
  filter: brightness(1.1);
}

.btn-primary.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: var(--color-text);
  text-decoration: none;
  border: 2px solid var(--color-accent-orange);
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: all var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: var(--color-accent-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* * Sticky кнопка */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-medium);
}

.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-cta .btn-primary {
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

/* * Анимации */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes glow {
  from { filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5)); }
  to { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8)); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* * Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  transition: all var(--transition-medium);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 20px;
}

.nav__logo h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__menu a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-medium);
}

.nav__menu a:hover::after {
  width: 100%;
}

.nav__menu a:hover {
  color: var(--color-accent-orange);
}

.nav__toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
}

/* * Hero секция */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
}

.hero__bg-image {
  opacity: 1;
  filter: brightness(1);
  transition: opacity 0.3s ease;
  object-position: center 30%;
}

.hero__flashlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero__background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(6, 0, 18, 0.55) 0%, rgba(10, 0, 26, 0.38) 50%, rgba(5, 0, 18, 0.5) 100%);
  backdrop-filter: blur(1.5px);
  z-index: -1;
}

.hero__content {
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  margin-top: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.hero__title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  animation: glow 2s ease-in-out infinite alternate;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.hero__cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__cta .btn-primary {
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
}

.hero__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.4));
}

.qr-code, .qr-code-large {
  width: 100px;
  height: 100px;
  background: var(--color-secondary);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-accent-orange);
}

.qr-code-large {
  width: 150px;
  height: 150px;
}

.qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
}

.qr-placeholder i {
  font-size: 2rem;
}

.hero__qr p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-accent-orange);
  border-radius: 50%;
  color: var(--color-accent-orange);
  text-decoration: none;
  animation: bounce 2s infinite;
}

/* * Секция "О проекте" */
.about {
  padding: 6.5rem 0;
  background: var(--color-secondary);
  position: relative;
  overflow: visible;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
}

/* * Хедер секции */
.about__header {
  text-align: center;
  margin-bottom: 4rem;
}

.about__badge, .section__badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.about__lead {
  font-size: 1.3rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: var(--color-text);
  line-height: 1.8;
}

.highlight-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.features--grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .features--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  background: var(--color-primary);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  text-align: center;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-medium);
  border: 2px solid transparent;
  position: relative;
  overflow: visible;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-medium);
  z-index: 0;
}

.feature:hover::before {
  opacity: 0.1;
}

.feature:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--color-accent-orange);
}

.feature--animated {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.feature--animated:nth-child(1) { animation-delay: 0.1s; }
.feature--animated:nth-child(2) { animation-delay: 0.2s; }
.feature--animated:nth-child(3) { animation-delay: 0.3s; }
.feature--animated:nth-child(4) { animation-delay: 0.4s; }

.feature__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  position: relative;
  z-index: 1;
}

.feature__icon--pulse {
  animation: pulse 2s ease-in-out infinite;
}

.feature__count {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gradient-primary);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  border: 3px solid var(--color-primary);
}

.feature > * {
  position: relative;
  z-index: 1;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-text);
  font-weight: 700;
}

.feature p {
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* * Видео секция в About */
.about__video-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 5rem;
  align-items: center;
}

.about__video-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.about__video-content p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-primary);
  border-radius: var(--border-radius);
  flex: 1;
  transition: transform var(--transition-medium);
}

.stat:hover {
  transform: translateY(-5px);
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat__label {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.about__video-placeholder {
  position: relative;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  background: var(--color-primary);
  min-height: 300px;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  border: 2px solid transparent;
  transition: all var(--transition-medium);
}

.about__video-placeholder:hover {
  border-color: var(--color-accent-orange);
  box-shadow: var(--shadow-large);
  transform: translateY(-2px);
}

.about__video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius-large);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
  opacity: 1;
  backdrop-filter: blur(2px);
}

.video-overlay:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
}

.video-overlay.playing {
  opacity: 0;
  pointer-events: none;
}

.play-button {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-accent-orange), #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  transition: all var(--transition-medium);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

.play-button i {
  font-size: 1.3rem;
  color: white;
  margin-left: 3px;
}

.video-overlay p {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

/* * Уровни сложности */
.levels {
  padding: 6rem 0;
  background: var(--color-primary);
  position: relative;
}

.levels__header {
  text-align: center;
  margin-bottom: 4rem;
}

.levels__illustration {
  max-width: 520px;
  margin: 0 auto 3rem;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.levels__illustration img {
  width: 100%;
  height: auto;
}

.levels__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.level-card {
  background: var(--color-secondary);
  border-radius: var(--border-radius-large);
  overflow: visible;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-large);
  border: 3px solid transparent;
  position: relative;
}

.level-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.level-card__ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--gradient-secondary);
  color: white;
  padding: 0.5rem 3rem;
  font-weight: 700;
  font-size: 0.85rem;
  transform: rotate(45deg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.level-card__ribbon--hot {
  background: var(--gradient-primary);
  animation: pulse 2s ease-in-out infinite;
}

.level-card--easy .level-card__header {
  background: var(--gradient-secondary);
}

.level-card--medium .level-card__header {
  background: var(--gradient-primary);
}

.level-card--extreme .level-card__header {
  background: var(--gradient-purple);
}

.level-card--easy:hover {
  border-color: var(--color-accent-green);
}

.level-card--medium:hover {
  border-color: var(--color-accent-orange);
}

.level-card--extreme:hover {
  border-color: var(--color-accent-purple);
}

.level-card__header {
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  position: relative;
  border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
}

.level-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.level-card__header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.level-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
  font-weight: 400;
}

.age-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.level-card__content {
  padding: 2rem;
}

.level-highlights {
  display: flex;
  justify-content: space-around;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 107, 53, 0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  flex: 1;
}

.highlight-item i {
  font-size: 1.5rem;
  color: var(--color-accent-orange);
}

.highlight-item span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.level-features {
  list-style: none;
  margin-bottom: 2rem;
}

.level-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.level-features i {
  color: var(--color-accent-green);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.level-price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--color-primary);
  border-radius: var(--border-radius);
}

.price-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.25rem;
}

.price-per {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.price-note {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

.btn-level {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all var(--transition-medium);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
}

.btn-level--easy {
  background: var(--gradient-secondary);
  color: white;
}

.btn-level--medium {
  background: var(--gradient-primary);
  color: white;
}

.btn-level--extreme {
  background: var(--gradient-purple);
  color: white;
}

.btn-level:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-large);
  filter: brightness(1.1);
}

.btn-level i {
  font-size: 1.3rem;
}

/* * Дни рождения */
.birthday {
  padding: 6rem 0;
  background: var(--color-secondary);
}

.birthday__header {
  text-align: center;
  margin-bottom: 4rem;
}

.birthday__content {
  max-width: 800px;
  margin: 0 auto;
}

.birthday__info {
  background: var(--color-primary);
  padding: 3rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-large);
  text-align: center;
}

.birthday__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.birthday__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-secondary);
  border-radius: var(--border-radius);
  transition: transform var(--transition-medium);
}

.birthday__feature:hover {
  transform: translateY(-5px);
}

.birthday__feature i {
  font-size: 2rem;
  color: var(--color-accent-orange);
}

.birthday__feature span {
  font-weight: 600;
  color: var(--color-text);
}

.birthday__price {
  margin-bottom: 2rem;
}

.birthday__price .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.birthday__price .price-amount {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.birthday__price .price-currency {
  font-size: 2rem;
  color: var(--color-accent-orange);
  font-weight: 700;
}

.birthday__price .price-description {
  color: var(--color-text-muted);
  font-size: 1rem;
}


.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  border: 2px dashed var(--color-text-muted);
  border-radius: var(--border-radius);
  color: var(--color-text-muted);
  min-height: 200px;
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* * Галерея */
.gallery {
  padding: 6rem 0;
  background: var(--color-primary);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery__item {
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-medium);
  box-shadow: var(--shadow-medium);
  aspect-ratio: 4/3;
}

.gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.gallery__image {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  border: 2px dashed var(--color-text-muted);
  color: var(--color-text-muted);
  transition: all var(--transition-medium);
}

.gallery__placeholder i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.gallery__placeholder span {
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery__item:hover .gallery__placeholder {
  border-color: var(--color-accent-orange);
  color: var(--color-accent-orange);
  background: rgba(255, 107, 53, 0.05);
}

.gallery__item:hover .gallery__placeholder i {
  opacity: 1;
  transform: scale(1.1);
}

/* * Безопасность */
.safety {
  padding: 6rem 0;
  background: var(--color-secondary);
}

.safety__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.safety__item {
  background: var(--color-primary);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  text-align: center;
  transition: transform var(--transition-medium);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.safety__item:hover {
  transform: translateY(-5px);
}

.safety__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.safety__item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.safety__item p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* * Отзывы */
.reviews {
  padding: 6rem 0;
  background: var(--color-primary);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review {
  background: var(--color-secondary);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-medium);
}

.review:hover {
  transform: translateY(-5px);
}

.review__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review__avatar {
  width: 72px;
  height: 72px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.review__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.review__info h4 {
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.review__rating {
  display: flex;
  gap: 0.2rem;
}

.review__rating i {
  color: var(--color-accent-yellow);
  font-size: 0.9rem;
}

.review__text {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* * Контакты */
.contacts {
  padding: 6rem 0;
  background: var(--color-secondary);
  position: relative;
  overflow: hidden;
}

.contacts::before {
  content: '💬';
  position: absolute;
  top: 10%;
  left: 5%;
  font-size: 10rem;
  opacity: 0.03;
  transform: rotate(-20deg);
}

.contacts__header {
  text-align: center;
  margin-bottom: 4rem;
}

.contacts__content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: stretch;
}

.contacts__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 400px;
  height: fit-content;
}


.contact__card {
  background: var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--border-radius-large);
  transition: all var(--transition-medium);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.contact__card:hover::before {
  opacity: 1;
}

.contact__card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent-orange);
  box-shadow: var(--shadow-large);
}

.contact__card--phone:hover {
  border-color: var(--color-accent-green);
}

.contact__card--telegram:hover {
  border-color: #0088cc;
}

.contact__icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact__card--phone .contact__icon {
  background: var(--gradient-secondary);
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.contact__card--telegram .contact__icon {
  background: linear-gradient(135deg, #0088cc, #005f99);
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.contact__content h3 {
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 600;
}

.contact__content p {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.contact__content a {
  color: var(--color-accent-orange);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-weight: 600;
  font-size: 1.1rem;
}

.contact__card--phone a {
  color: var(--color-accent-green);
}

.contact__card--telegram a {
  color: #0088cc;
}

.contact__content a:hover {
  filter: brightness(1.2);
  text-decoration: underline;
}

.contact__hint {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 0.25rem;
}

.contacts__cta {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.cta-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: var(--color-primary);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  width: 100%;
  box-shadow: var(--shadow-large);
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.cta-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
  font-weight: 700;
}

.cta-block p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.cta-feature i {
  color: var(--color-accent-green);
  font-size: 1rem;
}

.cta-feature span {
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
}

.map-section {
  margin-top: 4rem;
}

.map-container {
  position: relative;
}

.cta-map {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-map .map-actions {
  margin-top: 1rem;
  justify-content: center;
}

.map-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-medium);
  border: 2px solid transparent;
}

.btn-map:hover {
  background: var(--color-accent-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-map i {
  font-size: 1rem;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--color-primary);
  border-radius: var(--border-radius-large);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-accent-green);
  color: var(--color-text-muted);
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* * Footer */
.footer {
  background: var(--color-dark);
  padding: 3rem 0 1rem;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer__logo h3 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.footer__logo p {
  color: var(--color-text-muted);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-accent-orange);
}

.footer__social {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-secondary);
  border-radius: 50%;
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition-medium);
}

.social-link:hover {
  background: var(--color-accent-orange);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
}

.footer__bottom p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.footer__legal-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.footer__legal-links a:hover {
  color: var(--color-accent-orange);
  border-bottom-color: var(--color-accent-orange);
}

@media (max-width: 768px) {
  .footer__legal-links {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .footer__legal-links a {
    font-size: 0.85rem;
  }
}

/* * Модальное окно */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
}

.modal.active {
  display: block;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10001;
}

.modal__image img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--border-radius);
}

.modal__navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.modal__prev,
.modal__next {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
  pointer-events: auto;
  transition: background var(--transition-fast);
}

.modal__prev:hover,
.modal__next:hover {
  background: rgba(0, 0, 0, 0.9);
}

/* * Адаптивность */
@media (max-width: 768px) {
  /* * ПРОИЗВОДИТЕЛЬНОСТЬ - ОТКЛЮЧАЕМ ТЯЖЕЛЫЕ ЭФФЕКТЫ */
  
  /* Отключаем flashlight эффект на мобильных */
  .hero__flashlight {
    display: none !important;
  }
  
  /* Уменьшаем box-shadow для производительности */
  .feature:hover,
  .level-card:hover,
  .safety__item:hover,
  .review:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important; /* Упрощаем тени */
  }
  
  /* Отключаем сложные анимации на мобильных */
  .feature--animated {
    animation: none !important;
    opacity: 1 !important;
  }
  
  /* Упрощаем градиенты для производительности */
  .btn-primary {
    background: var(--color-accent-orange) !important; /* Упрощаем градиент */
  }
  
  .btn-primary:hover {
    background: #e55a2b !important; /* Упрощаем hover */
  }
  
  /* * TOUCH-ИНТЕРФЕЙС - УЛУЧШАЕМ ДЛЯ МОБИЛЬНЫХ */
  
  /* Увеличиваем touch-зоны */
  .btn-primary,
  .btn-secondary,
  .btn-level {
    min-height: 44px; /* Минимальная touch-зона */
    min-width: 44px;
    touch-action: manipulation; /* Улучшаем отзывчивость */
  }
  
  /* Улучшаем активные состояния */
  .btn-primary:active,
  .btn-secondary:active,
  .btn-level:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
  }
  
  /* FAQ touch-оптимизация */
  .faq__question {
    min-height: 50px; /* Увеличиваем touch-зону */
    display: flex;
    align-items: center;
    touch-action: manipulation;
  }
  
  .faq__question:active {
    background: rgba(255, 107, 53, 0.1);
  }
  
  /* Навигация */
  .nav__menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--color-primary);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: left var(--transition-medium);
  }
  
  .nav__menu.active {
    left: 0;
  }
  
  .nav__toggle {
    display: block;
  }
  
  /* * Hero - ОПТИМИЗАЦИЯ ДЛЯ МОБИЛЬНЫХ */
  .hero {
    min-height: 75vh; /* Уменьшаем с 100vh */
  }
  
  .hero__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Более компактные заголовки */
    line-height: 1.1; /* Уменьшаем line-height */
    margin-bottom: 0.8rem; /* Меньше отступ */
  }
  
  .hero__subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem); /* Меньше размер */
    line-height: 1.4; /* Компактнее */
    margin-bottom: 1.2rem; /* Меньше отступ */
  }
  
  .hero__cta {
    flex-direction: column;
    gap: 0.8rem; /* Уменьшаем gap */
  }
  
  .hero__cta .btn-large {
    width: 100%;
    max-width: 320px;
    padding: 0.8rem 1.5rem; /* Меньше padding */
    font-size: 0.9rem; /* Меньше шрифт */
  }
  
  .hero__qr {
    order: 2;
  }
  
  /* * Секции - СКРАЩАЕМ ОТСТУПЫ */
  section {
    padding: 2.5rem 0 !important; /* Уменьшаем с 4rem */
  }
  
  .about {
    padding: 3rem 0; /* Уменьшаем с 6.5rem */
  }
  
  .levels {
    padding: 3rem 0; /* Уменьшаем с 6rem */
  }
  
  .birthday {
    padding: 3rem 0; /* Уменьшаем с 6rem */
  }
  
  .gallery {
    padding: 3rem 0; /* Уменьшаем с 6rem */
  }
  
  .safety {
    padding: 3rem 0; /* Уменьшаем с 6rem */
  }
  
  .reviews {
    padding: 3rem 0; /* Уменьшаем с 6rem */
  }
  
  .contacts {
    padding: 3rem 0; /* Уменьшаем с 6rem */
  }
  
  .faq {
    padding: 3rem 0; /* Уменьшаем с 4rem */
  }
  
  /* * Заголовки секций - КОМПАКТНЕЕ */
  .section__title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); /* Меньше размер */
    margin-bottom: 0.8rem; /* Меньше отступ */
  }
  
  .section__subtitle {
    font-size: 1rem; /* Уменьшаем */
    margin-bottom: 2rem; /* Меньше отступ */
  }
  
  /* * Features и Cards - КОМПАКТНЕЕ */
  .features, .features--grid {
    grid-template-columns: 1fr;
    gap: 1.5rem; /* Уменьшаем gap */
    margin-top: 2rem; /* Меньше отступ */
  }
  
  .feature {
    padding: 1.5rem; /* Уменьшаем с 2rem */
  }
  
  .feature__icon {
    width: 80px; /* Уменьшаем с 100px */
    height: 80px;
    margin-bottom: 1rem; /* Меньше отступ */
  }
  
  .feature h3 {
    font-size: 1.1rem; /* Уменьшаем */
    margin-bottom: 0.8rem; /* Меньше отступ */
  }
  
  .feature p {
    font-size: 0.9rem; /* Уменьшаем */
    line-height: 1.5; /* Компактнее */
  }

  .about__video-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem; /* Уменьшаем с 5rem */
  }
  
  .about__video {
    height: 120px; /* Уменьшаем с 150px */
  }
  
  .about__video-placeholder {
    min-height: 120px; /* Уменьшаем с 150px */
  }
  
  .play-button {
    width: 50px; /* Уменьшаем с 60px */
    height: 50px;
  }
  
  .play-button i {
    font-size: 1rem; /* Уменьшаем */
  }

  .about__stats {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem; /* Уменьшаем с 2rem */
  }
  
  .stat {
    padding: 1rem; /* Уменьшаем с 1.5rem */
  }
  
  .stat__number {
    font-size: 2rem; /* Уменьшаем с 2.5rem */
  }
  
  .levels__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem; /* Уменьшаем gap */
    margin-top: 2rem; /* Меньше отступ */
  }
  
  .level-card {
    margin-bottom: 1rem; /* Добавляем отступ между карточками */
  }
  
  .level-card__header {
    padding: 2rem 1.5rem 1.5rem; /* Уменьшаем padding */
  }
  
  .level-card__content {
    padding: 1.5rem; /* Уменьшаем с 2rem */
  }
  
  .level-icon {
    width: 60px; /* Уменьшаем с 80px */
    height: 60px;
    margin-bottom: 0.8rem; /* Меньше отступ */
  }
  
  .level-card__header h3 {
    font-size: 1.5rem; /* Уменьшаем с 1.8rem */
    margin-bottom: 0.4rem; /* Меньше отступ */
  }

  .level-highlights {
    flex-direction: column;
    gap: 0.8rem; /* Уменьшаем gap */
    padding: 0.8rem; /* Уменьшаем padding */
    margin-bottom: 1.2rem; /* Меньше отступ */
  }

  .highlight-item {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .highlight-item i {
    font-size: 1.2rem; /* Уменьшаем с 1.5rem */
  }
  
  .highlight-item span {
    font-size: 0.8rem; /* Уменьшаем с 0.85rem */
  }
  
  /* Birthday section responsive */
  .birthday__info {
    padding: 2rem;
  }
  
  .birthday__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .birthday__feature {
    padding: 1rem;
  }
  
  .birthday__feature i {
    font-size: 1.5rem;
  }
  
  .birthday__feature span {
    font-size: 0.9rem;
  }
  
  .birthday__price .price-amount {
    font-size: 2.5rem;
  }
  
  .birthday__price .price-currency {
    font-size: 1.5rem;
  }
  
  /* Safety section responsive */
  .safety__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem; /* Меньше отступ */
  }
  
  .safety__item {
    padding: 1.5rem; /* Уменьшаем с 2rem */
  }
  
  .safety__icon {
    width: 60px; /* Уменьшаем с 80px */
    height: 60px;
    margin-bottom: 1rem; /* Меньше отступ */
  }
  
  .safety__item h3 {
    font-size: 1.2rem; /* Уменьшаем с 1.3rem */
    margin-bottom: 0.8rem; /* Меньше отступ */
  }
  
  .safety__item p {
    font-size: 0.9rem; /* Уменьшаем */
    line-height: 1.5; /* Компактнее */
  }
  
  /* Reviews - КОМПАКТНЕЕ */
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem; /* Уменьшаем gap */
    margin-top: 2rem; /* Меньше отступ */
  }
  
  .review {
    padding: 1.5rem; /* Уменьшаем с 2rem */
  }
  
  .review__header {
    margin-bottom: 1rem; /* Уменьшаем с 1.5rem */
  }
  
  .review__avatar {
    width: 60px; /* Уменьшаем с 72px */
    height: 60px;
  }
  
  .review__text {
    font-size: 0.9rem; /* Уменьшаем */
    line-height: 1.6; /* Компактнее */
  }
  
  .contacts__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contacts__info {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 1rem; /* Уменьшаем gap */
  }
  
  .contact__card {
    padding: 1.2rem; /* Уменьшаем с 1.5rem */
  }
  
  .contact__icon {
    width: 40px; /* Уменьшаем с 50px */
    height: 40px;
    margin-bottom: 0.6rem; /* Меньше отступ */
  }

  .cta-block {
    padding: 1.5rem;
  }

  .map-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-map {
    width: 100%;
    justify-content: center;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  /* * Отступы */
  .container {
    padding: 0 15px;
  }
  
  /* * Модальное окно */
  .modal__overlay {
    padding: 1rem;
  }
  
  .modal__navigation {
    position: static;
    transform: none;
    margin-top: 1rem;
  }
  
  /* * Cookie Notice */
  .cookie-notice__content {
    flex-direction: column;
    text-align: center;
  }
  
  .btn-cookie {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* * ДОПОЛНИТЕЛЬНАЯ ОПТИМИЗАЦИЯ ДЛЯ МАЛЕНЬКИХ ЭКРАНОВ */
  
  /* Hero - ЕЩЁ КОМПАКТНЕЕ */
  .hero {
    min-height: 70vh; /* Ещё меньше */
  }
  
  .hero__title {
    font-size: 1.6rem; /* Уменьшаем с 2rem */
    line-height: 1.05; /* Ещё компактнее */
    margin-bottom: 0.6rem; /* Меньше отступ */
  }
  
  .hero__subtitle {
    font-size: 0.85rem; /* Ещё меньше */
    line-height: 1.3; /* Компактнее */
    margin-bottom: 1rem; /* Меньше отступ */
  }
  
  .hero__cta {
    gap: 0.6rem; /* Ещё меньше gap */
  }
  
  .hero__cta .btn-large {
    padding: 0.7rem 1.2rem; /* Ещё меньше padding */
    font-size: 0.85rem; /* Ещё меньше шрифт */
  }
  
  /* Секции - ЕЩЁ КОМПАКТНЕЕ */
  section {
    padding: 2rem 0 !important; /* Ещё меньше с 2.5rem */
  }
  
  .about {
    padding: 2.5rem 0; /* Уменьшаем с 3rem */
  }
  
  .levels {
    padding: 2.5rem 0; /* Уменьшаем с 3rem */
  }
  
  .birthday {
    padding: 2.5rem 0; /* Уменьшаем с 3rem */
  }
  
  .gallery {
    padding: 2.5rem 0; /* Уменьшаем с 3rem */
  }
  
  .safety {
    padding: 2.5rem 0; /* Уменьшаем с 3rem */
  }
  
  .reviews {
    padding: 2.5rem 0; /* Уменьшаем с 3rem */
  }
  
  .contacts {
    padding: 2.5rem 0; /* Уменьшаем с 3rem */
  }
  
  .faq {
    padding: 2.5rem 0; /* Уменьшаем с 3rem */
  }
  
  /* Заголовки - ЕЩЁ КОМПАКТНЕЕ */
  .section__title {
    font-size: 1.6rem; /* Уменьшаем с 2rem */
    margin-bottom: 0.6rem; /* Меньше отступ */
  }
  
  .section__subtitle {
    font-size: 0.9rem; /* Уменьшаем с 1rem */
    margin-bottom: 1.5rem; /* Меньше отступ */
  }
  
  /* Features - ЕЩЁ КОМПАКТНЕЕ */
  .features, .features--grid {
    gap: 1rem; /* Уменьшаем с 1.5rem */
    margin-top: 1.5rem; /* Меньше отступ */
  }
  
  .feature {
    padding: 1.2rem; /* Уменьшаем с 1.5rem */
  }
  
  .feature__icon {
    width: 70px; /* Уменьшаем с 80px */
    height: 70px;
    margin-bottom: 0.8rem; /* Меньше отступ */
  }
  
  .feature h3 {
    font-size: 1rem; /* Уменьшаем с 1.1rem */
    margin-bottom: 0.6rem; /* Меньше отступ */
  }
  
  .feature p {
    font-size: 0.85rem; /* Уменьшаем с 0.9rem */
    line-height: 1.4; /* Компактнее */
  }
  
  /* About video - ЕЩЁ КОМПАКТНЕЕ */
  .about__video-section {
    margin-top: 2rem; /* Уменьшаем с 3rem */
  }
  
  .about__video {
    height: 100px; /* Уменьшаем с 120px */
  }
  
  .about__video-placeholder {
    min-height: 100px; /* Уменьшаем с 120px */
  }
  
  .play-button {
    width: 45px; /* Уменьшаем с 50px */
    height: 45px;
  }
  
  .play-button i {
    font-size: 0.9rem; /* Уменьшаем с 1rem */
  }
  
  .about__stats {
    margin-top: 1rem; /* Уменьшаем с 1.5rem */
  }
  
  .stat {
    padding: 0.8rem; /* Уменьшаем с 1rem */
  }
  
  .stat__number {
    font-size: 1.8rem; /* Уменьшаем с 2rem */
  }
  
  /* Level cards - ЕЩЁ КОМПАКТНЕЕ */
  .levels__grid {
    gap: 1rem; /* Уменьшаем с 1.5rem */
    margin-top: 1.5rem; /* Меньше отступ */
  }
  
  .level-card__header {
    padding: 1.5rem 1.2rem 1.2rem; /* Уменьшаем padding */
  }
  
  .level-card__content {
    padding: 1.2rem; /* Уменьшаем с 1.5rem */
  }
  
  .level-icon {
    width: 50px; /* Уменьшаем с 60px */
    height: 50px;
    margin-bottom: 0.6rem; /* Меньше отступ */
  }
  
  .level-card__header h3 {
    font-size: 1.3rem; /* Уменьшаем с 1.5rem */
    margin-bottom: 0.3rem; /* Меньше отступ */
  }
  
  .level-highlights {
    gap: 0.6rem; /* Уменьшаем с 0.8rem */
    padding: 0.6rem; /* Уменьшаем с 0.8rem */
    margin-bottom: 1rem; /* Меньше отступ */
  }
  
  .highlight-item i {
    font-size: 1rem; /* Уменьшаем с 1.2rem */
  }
  
  .highlight-item span {
    font-size: 0.75rem; /* Уменьшаем с 0.8rem */
  }
  
  /* Birthday - ЕЩЁ КОМПАКТНЕЕ */
  .birthday__info {
    padding: 1.5rem; /* Уменьшаем с 2rem */
  }
  
  .birthday__features {
    gap: 0.8rem; /* Уменьшаем с 1rem */
    margin-bottom: 1.5rem; /* Меньше отступ */
  }
  
  .birthday__feature {
    padding: 0.8rem; /* Уменьшаем с 1rem */
  }
  
  .birthday__feature i {
    font-size: 1.3rem; /* Уменьшаем с 1.5rem */
  }
  
  .birthday__feature span {
    font-size: 0.8rem; /* Уменьшаем с 0.9rem */
  }
  
  .birthday__price .price-amount {
    font-size: 2rem; /* Уменьшаем с 2.5rem */
  }
  
  .birthday__price .price-currency {
    font-size: 1.3rem; /* Уменьшаем с 1.5rem */
  }
  
  /* Safety - ЕЩЁ КОМПАКТНЕЕ */
  .safety__grid {
    gap: 1rem; /* Уменьшаем с 1.5rem */
    margin-top: 1.5rem; /* Меньше отступ */
  }
  
  .safety__item {
    padding: 1.2rem; /* Уменьшаем с 1.5rem */
  }
  
  .safety__icon {
    width: 50px; /* Уменьшаем с 60px */
    height: 50px;
    margin-bottom: 0.8rem; /* Меньше отступ */
  }
  
  .safety__item h3 {
    font-size: 1.1rem; /* Уменьшаем с 1.2rem */
    margin-bottom: 0.6rem; /* Меньше отступ */
  }
  
  .safety__item p {
    font-size: 0.85rem; /* Уменьшаем с 0.9rem */
    line-height: 1.4; /* Компактнее */
  }
  
  /* Reviews - ЕЩЁ КОМПАКТНЕЕ */
  .reviews__grid {
    gap: 1rem; /* Уменьшаем с 1.5rem */
    margin-top: 1.5rem; /* Меньше отступ */
  }
  
  .review {
    padding: 1.2rem; /* Уменьшаем с 1.5rem */
  }
  
  .review__header {
    margin-bottom: 0.8rem; /* Уменьшаем с 1rem */
  }
  
  .review__avatar {
    width: 50px; /* Уменьшаем с 60px */
    height: 50px;
  }
  
  .review__text {
    font-size: 0.85rem; /* Уменьшаем с 0.9rem */
    line-height: 1.5; /* Компактнее */
  }
  
  /* Contacts - ЕЩЁ КОМПАКТНЕЕ */
  .contacts__info {
    gap: 0.8rem; /* Уменьшаем с 1rem */
  }
  
  .contact__card {
    padding: 1rem; /* Уменьшаем с 1.2rem */
  }
  
  .contact__icon {
    width: 35px; /* Уменьшаем с 40px */
    height: 35px;
    margin-bottom: 0.5rem; /* Меньше отступ */
  }
  
  .cta-block {
    padding: 1.2rem; /* Уменьшаем с 1.5rem */
  }
  
  /* Кнопки - ЕЩЁ КОМПАКТНЕЕ */
  .btn-primary.btn-large {
    padding: 0.7rem 1.2rem; /* Уменьшаем */
    font-size: 0.85rem; /* Уменьшаем */
  }
  
  /* Level cards, features, safety items - ЕЩЁ КОМПАКТНЕЕ */
  .level-card,
  .feature,
  .safety__item {
    padding: 1.2rem; /* Уменьшаем с 1.5rem */
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* * Утилиты */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* * Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-secondary);
  border-top: 3px solid var(--color-accent-orange);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-notice__content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-notice__content p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.95rem;
  flex: 1;
  min-width: 250px;
}

.btn-cookie {
  padding: 0.75rem 2rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-cookie:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* * ========================================
 * ХЛЕБНЫЕ КРОШКИ
 * ======================================== */
.breadcrumbs {
  background: var(--color-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.breadcrumbs a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--color-accent-orange);
}

.breadcrumbs span {
  color: var(--color-accent-orange);
}

/* * ========================================
 * FAQ СЕКЦИЯ
 * ======================================== */
.faq {
  padding: var(--spacing-xxl) 0;
  background: var(--color-primary);
}

.faq__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.faq__content {
  max-width: 900px;
  margin: 0 auto;
}

.faq__item {
  background: var(--color-secondary);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all var(--transition-medium);
}

.faq__item:hover {
  border-color: var(--color-accent-orange);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
}

.faq__question {
  padding: var(--spacing-md);
  cursor: pointer;
  position: relative;
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 600;
  user-select: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.faq__question::before {
  content: '▶';
  color: var(--color-accent-orange);
  font-size: 0.8rem;
  transition: transform var(--transition-medium);
}

.faq__item.active .faq__question::before {
  transform: rotate(90deg) !important;
}

.faq__item.active {
  border-color: var(--color-accent-orange) !important;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2) !important;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  padding: 0;
}

.faq__item.active .faq__answer {
  max-height: 500px !important;
  opacity: 1 !important;
  padding: 0 15px 15px !important;
}

.faq__answer p {
  padding: 0;
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* * ========================================
 * СТРАНИЦА ОТЗЫВОВ
 * ======================================== */
.reviews-stats {
  padding: var(--spacing-xxl) 0;
  background: var(--color-dark);
}

.stats__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.stat__card {
  background: var(--color-secondary);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-large);
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.stat__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.stat__card:hover::before {
  transform: scaleX(1);
}

.stat__card:hover {
  border-color: var(--color-accent-orange);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.stat__icon {
  font-size: 3rem;
  color: var(--color-accent-orange);
  margin-bottom: var(--spacing-md);
}

.stat__number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-text);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* * Виджет отзывов */
.reviews-widget {
  padding: var(--spacing-xxl) 0;
  background: var(--color-primary);
}

.widget__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.widget__content {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-widget__container {
  background: var(--color-secondary);
  border-radius: var(--border-radius-large);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.widget__actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* * Популярные отзывы */
.popular-reviews {
  padding: var(--spacing-xxl) 0;
  background: var(--color-dark);
}

.reviews__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.review__card {
  background: var(--color-secondary);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-large);
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.review__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transform: scaleY(0);
  transition: transform var(--transition-medium);
}

.review__card:hover::before {
  transform: scaleY(1);
}

.review__card:hover {
  border-color: var(--color-accent-orange);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.review__rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--spacing-md);
}

.review__rating i {
  color: var(--color-accent-orange);
  font-size: 1.2rem;
}

.review__content {
  margin-bottom: var(--spacing-md);
}

.review__content p {
  color: var(--color-text-muted);
  line-height: 1.8;
  font-style: italic;
}

.review__author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review__author strong {
  color: var(--color-text);
  font-weight: 600;
}

.review__author span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* * ========================================
 * ПРОГРАММЫ (для корпоративов)
 * ======================================== */
.programs {
  padding: var(--spacing-xxl) 0;
  background: var(--color-dark);
}

.programs__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.programs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.program__card {
  background: var(--color-secondary);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-large);
  border: 2px solid transparent;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.program__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.program__card:hover::before {
  transform: scaleX(1);
}

.program__card:hover {
  border-color: var(--color-accent-orange);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.program__card--featured {
  border-color: var(--color-accent-orange);
}

.program__badge {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program__card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

.program__price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-accent-orange);
  margin-bottom: var(--spacing-md);
  font-family: var(--font-heading);
}

.program__features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.program__features li {
  padding: 0.5rem 0;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.program__description {
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* * ========================================
 * ДОПОЛНИТЕЛЬНЫЕ СЕКЦИИ
 * ======================================== */
.benefits {
  padding: var(--spacing-xxl) 0;
  background: var(--color-primary);
}

.benefits__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.benefits__content {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.benefit__item {
  background: var(--color-secondary);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-accent-orange);
  transition: all var(--transition-medium);
}

.benefit__item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.benefit__item h3 {
  color: var(--color-accent-orange);
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
}

.benefit__item p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

.benefits__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.location {
  padding: var(--spacing-xxl) 0;
  background: var(--color-dark);
}

.location__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.location__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.location__info {
  background: var(--color-secondary);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-large);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.location__info h3 {
  color: var(--color-accent-orange);
  margin-bottom: var(--spacing-md);
  font-size: 1.3rem;
}

.location__info p {
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
}

.location__map {
  border-radius: var(--border-radius-large);
  overflow: hidden;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* * ========================================
 * АДАПТИВНОСТЬ ДЛЯ НОВЫХ ЭЛЕМЕНТОВ
 * ======================================== */
@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  
  .programs__grid {
    grid-template-columns: 1fr;
  }
  
  .location__content {
    grid-template-columns: 1fr;
  }
  
  .widget__actions {
    flex-direction: column;
  }
  
  /* FAQ мобильная адаптация */
  .faq__question {
    font-size: 1rem;
    padding: var(--spacing-sm) var(--spacing-md);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    touch-action: manipulation;
  }
  
  .faq__question::before {
    font-size: 1rem;
    margin-left: auto;
  }
  
  .faq__answer p {
    padding: 0 var(--spacing-sm) var(--spacing-sm);
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .faq__item {
    margin-bottom: var(--spacing-sm);
  }
  
  .widget__actions .btn-primary,
  .widget__actions .btn-secondary {
    width: 100%;
  }
}

/* Дополнительная адаптация для очень маленьких экранов */
@media (max-width: 480px) {
  .faq__question {
    font-size: 0.9rem;
    padding: var(--spacing-xs) var(--spacing-sm);
    min-height: 45px;
  }
  
  .faq__answer p {
    font-size: 0.85rem;
    padding: 0 var(--spacing-xs) var(--spacing-xs);
  }
  
  .faq__item {
    margin-bottom: var(--spacing-xs);
  }
}

@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
  
  .stat__number {
    font-size: 2.5rem;
  }
  
  .stat__icon {
    font-size: 2.5rem;
  }
}

