/* Палитра и базовые настройки */
:root {
  --bg-main: #05050f;
  --bg-panel: rgba(10, 10, 25, 0.9);
  --bg-panel-strong: rgba(5, 5, 20, 0.98);
  --text-main: #f5f6ff;
  --text-muted: #aeb5ff;
  --text-soft: #c7cbff;
  --accent-red: #ff3b6c;
  --accent-blue: #4aa8ff;
  --shadow-strong: 0 18px 46px rgba(0, 0, 0, 0.65);
  --border-soft: rgba(255, 255, 255, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  
  /* Предотвращаем автоматическую прокрутку при загрузке страницы с якорем */
  scroll-padding-top: 0;
}

/* Предотвращаем автоматическую прокрутку к элементам с id при загрузке страницы */
html:not(:target),
body:not(:target) {
  scroll-margin-top: 0;
  scroll-padding-top: 0;
}

/* Отключаем автоматическую прокрутку к секции бронирования */
#booking {
  scroll-margin-top: 0;
  scroll-padding-top: 0;
}

body {
  font-family: "Inter", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(255, 59, 108, 0.15), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(74, 168, 255, 0.15), transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255, 59, 108, 0.05), transparent 60%),
              radial-gradient(circle at 10% 90%, rgba(74, 168, 255, 0.08), transparent 45%),
              var(--bg-main);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.5;
  position: relative;
  min-height: 100vh;
}

/* Анимированный фон с частицами */
.vs-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.vs-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  animation: float-particle 20s infinite ease-in-out;
  opacity: 0.4;
}

.vs-particle--red {
  background: var(--accent-red);
  box-shadow: 0 0 8px var(--accent-red);
}

.vs-particle--blue {
  background: var(--accent-blue);
  box-shadow: 0 0 8px var(--accent-blue);
}

@keyframes float-particle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(150px, -150px) scale(1.3);
    opacity: 0.5;
  }
  50% {
    transform: translate(-100px, -250px) scale(0.7);
    opacity: 0.2;
  }
  75% {
    transform: translate(-150px, 100px) scale(1.1);
    opacity: 0.4;
  }
}

/* Легкий эффект матрицы на фоне */
.vs-matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(74, 168, 255, 0.1) 2px,
      rgba(74, 168, 255, 0.1) 4px
    );
}

/* Убеждаемся что контент поверх фона */
.vs-container,
.vs-header,
.vs-section {
  position: relative;
  z-index: 1;
}

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

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

/* Контейнер */
.vs-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Кнопки */
.vs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  white-space: nowrap;
  color: #0b0b15;
  min-height: 48px; /* Минимум для touch */
  min-width: 120px; /* Минимум для удобного клика */
  touch-action: manipulation; /* Убирает задержку на touch */
  -webkit-tap-highlight-color: transparent; /* Убирает подсветку на мобильных */
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vs-btn--primary {
  background: linear-gradient(135deg, #ff3055, #ff4b8a);
  box-shadow: 0 0 18px rgba(255, 64, 129, 0.65), 0 10px 30px rgba(255, 64, 129, 0.28);
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

/* Убеждаемся, что текст белый во всех состояниях и для всех типов элементов */
.vs-btn--primary,
.vs-btn--primary:link,
.vs-btn--primary:visited,
.vs-btn--primary:active,
button.vs-btn--primary,
a.vs-btn--primary {
  color: #ffffff !important;
}

/* Убеждаемся, что дочерние элементы тоже белые */
.vs-btn--primary *,
.vs-btn--primary span {
  color: #ffffff !important;
}

.vs-btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: #ffffff !important; /* Сохраняем белый цвет при hover */
}

.vs-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-main);
}

.vs-btn--ghost:hover {
  border-color: #4aa8ff;
  box-shadow: 0 0 12px rgba(74, 168, 255, 0.6);
}

.vs-btn--full {
  width: 100%;
}

/* Пилюли / теги */
.vs-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  color: #d0d5ff;
  background: linear-gradient(135deg, rgba(255, 59, 108, 0.15), rgba(74, 168, 255, 0.18));
  backdrop-filter: blur(8px);
  margin: 4px;
}

/* Заголовки и секции */
.vs-section {
  padding: 48px 0;
}

.vs-section--dark {
  background: radial-gradient(circle at top, rgba(16, 16, 32, 0.9) 0, rgba(5, 5, 20, 0.95) 60%, #020208 100%);
}

.vs-section__title {
  font-size: 24px;
  margin: 0 0 8px;
  line-height: 1.2;
  text-align: center;
}

.vs-section__subtitle {
  margin: 0 auto 24px;
  color: var(--text-muted);
  max-width: 100%;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  display: block;
}

@media (min-width: 768px) {
  .vs-section {
    padding: 60px 0;
  }

  .vs-section__title {
    font-size: 28px;
  }

  .vs-section__subtitle {
    margin: 0 auto 32px;
    max-width: 640px;
    font-size: 15px;
    text-align: center;
    display: block;
  }
}

@media (min-width: 1024px) {
  .vs-section {
    padding: 72px 0;
  }

  .vs-section__title {
    font-size: 30px;
  }

  .vs-section__subtitle {
    font-size: 16px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Grid */
.vs-grid {
  display: grid;
  gap: 16px;
}

.vs-grid--cards {
  grid-template-columns: minmax(0, 1fr);
}

.vs-grid--prices {
  grid-template-columns: minmax(0, 1fr);
}

.vs-grid--events {
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 600px) {
  .vs-grid {
    gap: 20px;
  }

  .vs-grid--prices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .vs-grid {
    gap: 24px;
  }

  .vs-grid--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-grid--cards-2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-grid--prices-birthday {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-grid--events {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .vs-grid--cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vs-grid--cards-2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-grid--prices-birthday {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vs-grid--events {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Header */
.vs-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 18, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 
              0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.3s ease;
}

.vs-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  gap: 32px;
  position: relative;
}

.vs-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  position: absolute;
  left: 16px;
  transition: transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.vs-logo:hover {
  transform: scale(1.05);
}

.vs-logo__accent {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #d0d5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-logo__sub {
  font-size: 10px;
  text-transform: uppercase;
  color: #8ea0ff;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.vs-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 900px;
}

.vs-nav__list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.vs-nav__list--open {
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 20px;
  top: 70px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(5, 5, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  min-width: 200px;
  z-index: 1001;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vs-nav__list li {
  position: relative;
}

/* Выпадающее меню */
.vs-nav__list li.has-dropdown {
  position: relative;
}

.vs-nav__list li.has-dropdown > a {
  padding-right: 32px;
}

.vs-nav__list li.has-dropdown > a::after {
  content: '▼';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  transition: transform 0.2s ease;
}

.vs-nav__list li.has-dropdown:hover > a::after,
.vs-nav__list li.has-dropdown.active > a::after {
  transform: translateY(-50%) rotate(180deg);
}

.vs-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  min-width: 180px;
  background: rgba(5, 5, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1002;
  padding: 8px 0;
  list-style: none;
  margin: 0;
}

.vs-nav__list li.has-dropdown:hover .vs-nav__dropdown,
.vs-nav__list li.has-dropdown.active .vs-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vs-nav__dropdown li {
  margin: 0;
}

.vs-nav__dropdown a {
  padding: 10px 20px;
  font-size: 14px;
  color: #c7cbff;
  display: block;
  border-radius: 0;
}

.vs-nav__dropdown a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

/* Мобильная версия выпадающего меню */
@media (max-width: 767px) {
  .vs-nav__list--open .vs-nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px;
    margin-left: 16px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 4px 0;
  }
  
  .vs-nav__list--open .vs-nav__dropdown a {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .vs-nav__list li.has-dropdown > a::after {
    display: none;
  }
}

.vs-nav__list a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #c7cbff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.vs-nav__list a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 59, 108, 0.1), rgba(74, 168, 255, 0.1));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.vs-nav__list a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.vs-nav__list a:hover::before {
  opacity: 1;
}

.vs-nav__list a:active {
  transform: translateY(0);
}

.vs-nav__toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: absolute;
  right: 16px;
}

.vs-nav__toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.vs-nav__toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.vs-nav__toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.vs-nav__toggle--active span:nth-child(2) {
  opacity: 0;
}

.vs-nav__toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.vs-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  right: 16px;
}

.vs-header__cta .vs-btn {
  padding: 10px 24px;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(255, 64, 129, 0.4);
}

.vs-header__cta .vs-btn--primary {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.vs-header__meta {
  display: none;
  flex-direction: column;
  font-size: 10px;
  color: #99a0ff;
  line-height: 1.4;
  text-align: right;
  opacity: 0.8;
}

.vs-header__meta span {
  white-space: nowrap;
}

/* Десктоп версия */
@media (min-width: 1024px) {
  .vs-header__inner {
    padding: 16px 0;
    gap: 48px;
  }

  .vs-logo {
    position: static;
    left: auto;
  }

  .vs-logo__accent {
    font-size: 22px;
  }

  .vs-nav {
    flex: 1;
    max-width: none;
  }

  .vs-nav__list {
    display: flex;
    flex-direction: row;
    gap: 2px;
  }

  .vs-nav__list a {
    padding: 10px 18px;
    font-size: 13px;
  }

  .vs-nav__toggle {
    display: none;
  }

  .vs-header__cta {
    position: static;
    right: auto;
  }

  .vs-header__meta {
    display: flex;
  }
}

/* Планшет версия */
@media (min-width: 768px) and (max-width: 1023px) {
  .vs-header__inner {
    justify-content: space-between;
    padding: 12px 0;
  }

  .vs-logo {
    position: static;
    left: auto;
  }

  .vs-nav {
    flex: 1;
    justify-content: flex-end;
    margin-right: 16px;
  }

  .vs-nav__list {
    display: flex;
    flex-direction: row;
    gap: 2px;
    flex-wrap: wrap;
  }

  .vs-nav__list a {
    padding: 8px 14px;
    font-size: 12px;
  }

  .vs-nav__toggle {
    display: none;
  }

  .vs-header__cta {
    position: static;
    right: auto;
  }

  .vs-header__meta {
    display: none;
  }
}

/* Мобильная версия */
@media (max-width: 767px) {
  .vs-header__inner {
    padding: 12px 0;
    justify-content: space-between;
  }

  .vs-logo {
    position: static;
    left: auto;
  }

  .vs-logo__accent {
    font-size: 18px;
  }

  .vs-logo__sub {
    font-size: 9px;
  }

  .vs-nav {
    display: none;
  }

  .vs-header__cta .vs-btn {
    padding: 6px 12px;
    font-size: 11px;
    min-height: 36px;
    min-width: 100px;
  }

  .vs-header__meta {
    display: none;
  }
}

/* Hero */
.vs-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.vs-hero__overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.25;
  pointer-events: none;
  animation: vs-glow-pulse 7s ease-in-out infinite;
}

.vs-hero__overlay--red {
  background: radial-gradient(circle at left, rgba(255, 40, 96, 0.85), transparent 60%);
}

.vs-hero__overlay--blue {
  background: radial-gradient(circle at right, rgba(0, 140, 255, 0.85), transparent 60%);
}

.vs-hero__inner {
  position: relative;
  display: grid;
  gap: 24px;
}

.vs-hero__content {
  max-width: 560px;
}

.vs-hero__title {
  font-size: clamp(24px, 6vw, 48px);
  font-weight: 800;
  font-family: "Manrope", sans-serif !important;
  margin: 0 0 8px;
  line-height: 1.2;
  position: relative;
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroTitleGlitch 4s infinite;
  letter-spacing: -0.02em;
}

/* Гарантируем использование Manrope для всех вариантов hero секций */
.vs-hero--small .vs-hero__title,
.vs-hero--games .vs-hero__title,
.vs-hero--game-detail .vs-hero__title {
  font-family: "Manrope", sans-serif !important;
}

/* Красный градиент для страницы корпоративов */
.vs-hero__title[data-text="Корпоративы и тимбилдинг"] {
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff1744 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.vs-hero__title[data-text="Корпоративы и тимбилдинг"]::before {
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff1744 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Синий градиент для страницы тимбилдинга (как на странице 503) */
.vs-hero__title[data-text="Тимбилдинг в VR"] {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #00b0ff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.vs-hero__title[data-text="Тимбилдинг в VR"]::before {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #00b0ff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.vs-hero__title::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(15px);
  opacity: 0.5;
  z-index: -1;
  animation: heroTitleGlow 3s ease-in-out infinite;
}

@keyframes heroTitleGlitch {
  0%, 100% {
    transform: translate(0);
    filter: hue-rotate(0deg);
  }
  20% {
    transform: translate(-1px, 1px);
    filter: hue-rotate(3deg);
  }
  40% {
    transform: translate(-1px, -1px);
    filter: hue-rotate(-3deg);
  }
  60% {
    transform: translate(1px, 1px);
    filter: hue-rotate(2deg);
  }
  80% {
    transform: translate(1px, -1px);
    filter: hue-rotate(-2deg);
  }
}

@keyframes heroTitleGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.02);
  }
}

.vs-hero__title span {
  display: block;
  font-size: clamp(12px, 3vw, 18px);
  font-weight: 600;
  font-family: "Manrope", sans-serif;
  color: var(--text-muted);
  margin-top: 8px;
  background: linear-gradient(135deg, var(--text-soft), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0;
}

.vs-hero__subtitle {
  margin: 0 0 20px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.5;
}

.vs-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.vs-hero__actions .vs-btn {
  width: 100%;
  padding: 14px 16px;
  font-size: 12px;
  min-height: 48px; /* Минимум для touch */
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  line-height: 1.4;
  box-sizing: border-box;
}

.vs-hero__actions .vs-btn--primary {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.vs-hero__actions .vs-btn--primary:hover {
  color: #ffffff !important;
}

.vs-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vs-hero__split {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 20px;
  overflow: visible;
  position: relative;
  background: rgba(5, 5, 20, 0.95);
  border: 3px solid transparent;
  backdrop-filter: blur(10px);
  isolation: isolate;
  box-shadow: 
    0 0 30px rgba(255, 59, 108, 0.5),
    0 0 60px rgba(74, 168, 255, 0.5),
    inset 0 0 40px rgba(0, 0, 0, 0.5);
  animation: neonBorderPulse 3s ease-in-out infinite;
}

.vs-hero__split::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  background: linear-gradient(135deg, 
    rgba(255, 59, 108, 1) 0%,
    rgba(255, 59, 108, 0.6) 25%,
    rgba(74, 168, 255, 0.6) 75%,
    rgba(74, 168, 255, 1) 100%);
  z-index: -2;
  filter: blur(3px);
  opacity: 0.8;
  animation: neonBorderGlow 3s ease-in-out infinite;
}

.vs-hero__split::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 23px;
  padding: 3px;
  background: linear-gradient(135deg, 
    rgba(255, 59, 108, 0.95) 0%,
    rgba(255, 59, 108, 0.5) 30%,
    rgba(74, 168, 255, 0.5) 70%,
    rgba(74, 168, 255, 0.95) 100%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  box-shadow: 
    0 0 20px rgba(255, 59, 108, 0.6),
    0 0 40px rgba(74, 168, 255, 0.6);
}

.vs-hero__split::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  background: linear-gradient(135deg, 
    rgba(255, 59, 108, 1) 0%,
    rgba(255, 59, 108, 0.5) 30%,
    rgba(74, 168, 255, 0.5) 70%,
    rgba(74, 168, 255, 1) 100%);
  z-index: -2;
  animation: neonBorderPulse 3s ease-in-out infinite;
  filter: blur(2px);
  opacity: 0.8;
}

.vs-hero__split::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, 
    rgba(255, 59, 108, 0.9) 0%,
    rgba(255, 59, 108, 0.4) 30%,
    rgba(74, 168, 255, 0.4) 70%,
    rgba(74, 168, 255, 0.9) 100%);
  z-index: -1;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 
    0 0 20px rgba(255, 59, 108, 0.5),
    0 0 40px rgba(74, 168, 255, 0.5),
    inset 0 0 20px rgba(255, 59, 108, 0.2),
    inset 0 0 40px rgba(74, 168, 255, 0.2);
}

.vs-hero__split__glow {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: 
    radial-gradient(circle at top left, rgba(255, 59, 108, 0.15), transparent 50%),
    radial-gradient(circle at bottom right, rgba(74, 168, 255, 0.15), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

@keyframes neonBorderPulse {
  0%, 100% {
    box-shadow: 
      0 0 25px rgba(255, 59, 108, 0.4),
      0 0 50px rgba(74, 168, 255, 0.4),
      inset 0 0 30px rgba(0, 0, 0, 0.4);
    border-image-source: linear-gradient(135deg, 
      rgba(255, 59, 108, 0.8) 0%,
      rgba(255, 59, 108, 0.4) 30%,
      rgba(74, 168, 255, 0.4) 70%,
      rgba(74, 168, 255, 0.8) 100%);
  }
  50% {
    box-shadow: 
      0 0 40px rgba(255, 59, 108, 0.7),
      0 0 80px rgba(74, 168, 255, 0.7),
      inset 0 0 40px rgba(0, 0, 0, 0.5);
    border-image-source: linear-gradient(135deg, 
      rgba(255, 59, 108, 1) 0%,
      rgba(255, 59, 108, 0.6) 30%,
      rgba(74, 168, 255, 0.6) 70%,
      rgba(74, 168, 255, 1) 100%);
  }
}

@keyframes neonBorderGlow {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.9;
  }
}

.vs-hero__side {
  padding: 28px 20px;
  font-size: 14px;
  line-height: 1.7;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
  border-radius: 18px;
}

.vs-hero__side::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.vs-hero__side:hover {
  transform: translateY(-2px);
}

.vs-hero__side:hover::before {
  opacity: 1;
}

.vs-hero__side h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px currentColor;
  letter-spacing: 0.02em;
}

.vs-hero__side p {
  position: relative;
  z-index: 1;
  margin: 0;
  opacity: 0.95;
}

.vs-hero__side--red {
  border-bottom: 2px solid transparent;
  border-right: none;
  background: 
    linear-gradient(135deg, rgba(255, 20, 80, 0.15) 0%, rgba(255, 60, 120, 0.08) 100%),
    radial-gradient(circle at top left, rgba(255, 40, 96, 0.2), transparent 70%);
  position: relative;
}

.vs-hero__side--red::before {
  background: radial-gradient(circle at center, rgba(255, 59, 108, 0.2), transparent 70%);
  box-shadow: inset 0 0 40px rgba(255, 59, 108, 0.3);
}

.vs-hero__side--red::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 59, 108, 0.6) 20%,
    rgba(255, 59, 108, 1) 50%,
    rgba(255, 59, 108, 0.6) 80%,
    transparent 100%);
  box-shadow: 
    0 0 10px rgba(255, 59, 108, 0.8),
    0 0 20px rgba(255, 59, 108, 0.6),
    0 0 30px rgba(255, 59, 108, 0.4);
  animation: neonGlowRed 2s ease-in-out infinite alternate;
}

.vs-hero__side--red h2 {
  color: #ff3b6c;
  background: linear-gradient(135deg, #ff3b6c 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-hero__side--blue {
  border-top: 2px solid transparent;
  border-left: none;
  background: 
    linear-gradient(135deg, rgba(40, 140, 255, 0.15) 0%, rgba(74, 168, 255, 0.08) 100%),
    radial-gradient(circle at top right, rgba(0, 140, 255, 0.2), transparent 70%);
  position: relative;
}

.vs-hero__side--blue::before {
  background: radial-gradient(circle at center, rgba(74, 168, 255, 0.2), transparent 70%);
  box-shadow: inset 0 0 40px rgba(74, 168, 255, 0.3);
}

.vs-hero__side--blue::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(74, 168, 255, 0.6) 20%,
    rgba(74, 168, 255, 1) 50%,
    rgba(74, 168, 255, 0.6) 80%,
    transparent 100%);
  box-shadow: 
    0 0 10px rgba(74, 168, 255, 0.8),
    0 0 20px rgba(74, 168, 255, 0.6),
    0 0 30px rgba(74, 168, 255, 0.4);
  animation: neonGlowBlue 2s ease-in-out infinite alternate;
}

.vs-hero__side--blue h2 {
  color: #4aa8ff;
  background: linear-gradient(135deg, #4aa8ff 0%, #66b3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Анимации неонового свечения */
@keyframes neonGlowRed {
  0% {
    opacity: 0.6;
    box-shadow: 
      0 0 10px rgba(255, 59, 108, 0.6),
      0 0 20px rgba(255, 59, 108, 0.4),
      0 0 30px rgba(255, 59, 108, 0.2);
  }
  100% {
    opacity: 1;
    box-shadow: 
      0 0 15px rgba(255, 59, 108, 1),
      0 0 30px rgba(255, 59, 108, 0.8),
      0 0 45px rgba(255, 59, 108, 0.6),
      0 0 60px rgba(255, 59, 108, 0.4);
  }
}

@keyframes neonGlowBlue {
  0% {
    opacity: 0.6;
    box-shadow: 
      0 0 10px rgba(74, 168, 255, 0.6),
      0 0 20px rgba(74, 168, 255, 0.4),
      0 0 30px rgba(74, 168, 255, 0.2);
  }
  100% {
    opacity: 1;
    box-shadow: 
      0 0 15px rgba(74, 168, 255, 1),
      0 0 30px rgba(74, 168, 255, 0.8),
      0 0 45px rgba(74, 168, 255, 0.6),
      0 0 60px rgba(74, 168, 255, 0.4);
  }
}

/* Планшеты */
@media (min-width: 768px) {
  .vs-hero {
    padding: 96px 0 72px;
  }

  .vs-hero__title {
    font-size: clamp(30px, 7.5vw, 54px);
  }

  .vs-hero__title span {
    font-size: clamp(13.5px, 3.375vw, 21px);
  }

  .vs-hero__actions {
    flex-direction: row;
    gap: 12px;
  }

  .vs-hero__actions .vs-btn {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
    padding: 14px 18px;
    font-size: 12px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .vs-hero__split {
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
  }

  .vs-hero__side {
    padding: 32px 24px;
  }

  .vs-hero__side h2 {
    font-size: 22px;
  }

  .vs-hero__side--red {
    border-bottom: none;
    border-right: 2px solid transparent;
  }

  .vs-hero__side--red::after {
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
      transparent 0%,
      rgba(255, 59, 108, 0.6) 20%,
      rgba(255, 59, 108, 1) 50%,
      rgba(255, 59, 108, 0.6) 80%,
      transparent 100%);
    box-shadow: 
      2px 0 10px rgba(255, 59, 108, 0.8),
      2px 0 20px rgba(255, 59, 108, 0.6),
      2px 0 30px rgba(255, 59, 108, 0.4);
  }

  .vs-hero__side--blue {
    border-top: none;
    border-left: 2px solid transparent;
  }

  .vs-hero__side--blue::after {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
      transparent 0%,
      rgba(74, 168, 255, 0.6) 20%,
      rgba(74, 168, 255, 1) 50%,
      rgba(74, 168, 255, 0.6) 80%,
      transparent 100%);
    box-shadow: 
      -2px 0 10px rgba(74, 168, 255, 0.8),
      -2px 0 20px rgba(74, 168, 255, 0.6),
      -2px 0 30px rgba(74, 168, 255, 0.4);
  }
}

/* Десктоп */
@media (min-width: 900px) {
  .vs-hero {
    padding: 112px 0 88px;
  }

  .vs-hero__inner {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    align-items: center;
    gap: 32px;
  }

  .vs-hero__title {
    font-size: clamp(36px, 9vw, 60px);
  }

  .vs-hero__title span {
    font-size: clamp(15px, 3.75vw, 24px);
  }

  .vs-hero__subtitle {
    font-size: 16px;
  }

  .vs-hero__actions {
    flex-direction: row;
  }

  .vs-hero__actions .vs-btn {
    flex: 0 1 auto;
    min-width: 0;
    padding: 14px 20px;
    font-size: 13px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Карточки */
.vs-card {
  padding: 18px 16px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(16, 16, 40, 0.98), rgba(5, 5, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-strong);
  transform: translateY(0);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.vs-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.3;
}

.vs-card p {
  margin: 0 0 12px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .vs-card {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .vs-card h3 {
    font-size: 18px;
  }
}

.vs-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.vs-card__list li {
  margin-bottom: 4px;
}

/* Стилизованные карточки для блока "Для кого подходит" */
.vs-card--target {
  position: relative;
  padding: 28px 24px;
  background: linear-gradient(135deg, rgba(10, 10, 25, 0.95), rgba(5, 5, 18, 0.95));
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.vs-card--target::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(74, 168, 255, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vs-card--target:hover::before {
  opacity: 1;
}

.vs-card--target:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 168, 255, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
              0 0 25px rgba(74, 168, 255, 0.25);
}

.vs-card--target-1:hover {
  border-color: rgba(74, 168, 255, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
              0 0 25px rgba(74, 168, 255, 0.3);
}

.vs-card--target-1::before {
  background: linear-gradient(90deg, transparent, rgba(74, 168, 255, 0.6), transparent);
}

.vs-card--target-2:hover {
  border-color: rgba(255, 59, 108, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
              0 0 25px rgba(255, 59, 108, 0.3);
}

.vs-card--target-2::before {
  background: linear-gradient(90deg, transparent, rgba(255, 59, 108, 0.6), transparent);
}

.vs-card--target-3:hover {
  border-color: rgba(74, 168, 255, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
              0 0 25px rgba(74, 168, 255, 0.3);
}

.vs-card--target-3::before {
  background: linear-gradient(90deg, transparent, rgba(74, 168, 255, 0.6), transparent);
}

.vs-card__icon-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.vs-card--target .vs-card__icon {
  width: 56px;
  height: 56px;
  margin: 0;
}

.vs-card--target h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  background: linear-gradient(135deg, var(--text-main), var(--text-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-card--target p {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.vs-card__list--styled {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vs-card__list--styled li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vs-card__list--styled li:last-child {
  border-bottom: none;
}

.vs-card__list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 168, 255, 0.2), rgba(255, 59, 108, 0.2));
  border: 1px solid rgba(74, 168, 255, 0.3);
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.vs-card--target-2 .vs-card__list-icon {
  background: linear-gradient(135deg, rgba(255, 59, 108, 0.2), rgba(74, 168, 255, 0.2));
  border-color: rgba(255, 59, 108, 0.3);
  color: var(--accent-red);
}

@media (min-width: 768px) {
  .vs-card--target {
    padding: 32px 28px;
  }

  .vs-card--target .vs-card__icon {
    width: 64px;
    height: 64px;
  }

  .vs-card--target h3 {
    font-size: 22px;
  }

  .vs-card--target p {
    font-size: 16px;
  }

  .vs-card__list--styled li {
    font-size: 15px;
  }
}

/* Карточки для блока "Что входит в программу" */
.vs-grid--program {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.vs-card--program {
  position: relative;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(10, 10, 25, 0.95), rgba(5, 5, 18, 0.95));
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.vs-card--program::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(74, 168, 255, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vs-card--program:hover::before {
  opacity: 1;
}

.vs-card--program:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 168, 255, 0.5);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
              0 0 30px rgba(74, 168, 255, 0.3);
}

.vs-card--program-1:hover {
  border-color: rgba(74, 168, 255, 0.6);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
              0 0 35px rgba(74, 168, 255, 0.4);
}

.vs-card--program-1::before {
  background: linear-gradient(90deg, transparent, rgba(74, 168, 255, 0.7), transparent);
}

.vs-card--program-2:hover {
  border-color: rgba(255, 59, 108, 0.6);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
              0 0 35px rgba(255, 59, 108, 0.4);
}

.vs-card--program-2::before {
  background: linear-gradient(90deg, transparent, rgba(255, 59, 108, 0.7), transparent);
}

.vs-card--program-3:hover {
  border-color: rgba(74, 168, 255, 0.6);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
              0 0 35px rgba(74, 168, 255, 0.4);
}

.vs-card--program-3::before {
  background: linear-gradient(90deg, transparent, rgba(74, 168, 255, 0.7), transparent);
}

.vs-card--program .vs-card__icon-wrapper {
  margin-bottom: 24px;
}

.vs-card--program .vs-card__icon {
  width: 64px;
  height: 64px;
  margin: 0;
}

.vs-card--program h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--text-main), var(--text-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-card__list--program {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vs-card__list--program li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(8, 8, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  margin: 0;
}

.vs-card__list--program li:hover {
  background: rgba(12, 12, 28, 0.8);
  border-color: rgba(74, 168, 255, 0.3);
  transform: translateX(4px);
}

.vs-card--program-2 .vs-card__list--program li:hover {
  border-color: rgba(255, 59, 108, 0.3);
}

.vs-card__list-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(74, 168, 255, 0.2), rgba(255, 59, 108, 0.2));
  border: 2px solid rgba(74, 168, 255, 0.4);
  color: var(--accent-blue);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(74, 168, 255, 0.2);
}

.vs-card--program-2 .vs-card__list-number {
  background: linear-gradient(135deg, rgba(255, 59, 108, 0.2), rgba(74, 168, 255, 0.2));
  border-color: rgba(255, 59, 108, 0.4);
  color: var(--accent-red);
  box-shadow: 0 4px 12px rgba(255, 59, 108, 0.2);
}

.vs-card__list-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.vs-card__list-content strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.vs-card__list-content span {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .vs-grid--program {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-card--program {
    padding: 36px 28px;
  }

  .vs-card--program .vs-card__icon {
    width: 72px;
    height: 72px;
  }

  .vs-card--program h3 {
    font-size: 24px;
  }

  .vs-card__list--program li {
    padding: 20px;
  }

  .vs-card__list-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .vs-card__list-content strong {
    font-size: 17px;
  }

  .vs-card__list-content span {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .vs-grid--program {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Карточки для блока "Примеры программ" */
.vs-grid--examples {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.vs-card--example {
  position: relative;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(10, 10, 25, 0.95), rgba(5, 5, 18, 0.95));
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.vs-card--example::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(74, 168, 255, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vs-card--example:hover::before {
  opacity: 1;
}

.vs-card--example:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
              0 0 30px rgba(74, 168, 255, 0.3);
}

.vs-card--example-1 {
  border-color: rgba(255, 59, 108, 0.2);
}

.vs-card--example-1:hover {
  border-color: rgba(255, 59, 108, 0.5);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
              0 0 35px rgba(255, 59, 108, 0.4);
}

.vs-card--example-1::before {
  background: linear-gradient(90deg, transparent, rgba(255, 59, 108, 0.7), transparent);
}

.vs-card--example-2 {
  border-color: rgba(74, 168, 255, 0.2);
}

.vs-card--example-2:hover {
  border-color: rgba(74, 168, 255, 0.5);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
              0 0 35px rgba(74, 168, 255, 0.4);
}

.vs-card--example-2::before {
  background: linear-gradient(90deg, transparent, rgba(74, 168, 255, 0.7), transparent);
}

.vs-card--example-3 {
  border-color: rgba(255, 193, 7, 0.2);
}

.vs-card--example-3:hover {
  border-color: rgba(255, 193, 7, 0.5);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
              0 0 35px rgba(255, 193, 7, 0.4);
}

.vs-card--example-3::before {
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.7), transparent);
}

.vs-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 12px;
  z-index: 1;
}

.vs-card__badge--red {
  background: linear-gradient(135deg, rgba(255, 59, 108, 0.3), rgba(255, 59, 108, 0.2));
  border: 1px solid rgba(255, 59, 108, 0.4);
  color: #ff6b9d;
  box-shadow: 0 4px 12px rgba(255, 59, 108, 0.3);
}

.vs-card__badge--blue {
  background: linear-gradient(135deg, rgba(74, 168, 255, 0.3), rgba(74, 168, 255, 0.2));
  border: 1px solid rgba(74, 168, 255, 0.4);
  color: #7ab6ff;
  box-shadow: 0 4px 12px rgba(74, 168, 255, 0.3);
}

.vs-card__badge--gold {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.3), rgba(255, 193, 7, 0.2));
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: #ffd54f;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.vs-card--example .vs-card__icon-wrapper {
  margin-bottom: 20px;
  margin-top: 8px;
}

.vs-card--example .vs-card__icon {
  width: 64px;
  height: 64px;
  margin: 0;
}

.vs-card__icon--gold svg {
  filter: drop-shadow(0 0 12px rgba(255, 193, 7, 0.6))
          drop-shadow(0 0 24px rgba(255, 193, 7, 0.3));
}

.vs-card--example h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
  background: linear-gradient(135deg, var(--text-main), var(--text-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-card__duration {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vs-card__list--timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vs-card__list--timeline li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(8, 8, 20, 0.6);
  border-left: 3px solid rgba(74, 168, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  margin: 0;
}

.vs-card--example-1 .vs-card__list--timeline li {
  border-left-color: rgba(255, 59, 108, 0.3);
}

.vs-card--example-3 .vs-card__list--timeline li {
  border-left-color: rgba(255, 193, 7, 0.3);
}

.vs-card__list--timeline li:hover {
  background: rgba(12, 12, 28, 0.8);
  border-left-width: 4px;
  transform: translateX(4px);
}

.vs-card--example-1 .vs-card__list--timeline li:hover {
  border-left-color: rgba(255, 59, 108, 0.6);
}

.vs-card--example-2 .vs-card__list--timeline li:hover {
  border-left-color: rgba(74, 168, 255, 0.6);
}

.vs-card--example-3 .vs-card__list--timeline li:hover {
  border-left-color: rgba(255, 193, 7, 0.6);
}

.vs-card__time {
  display: block;
  min-width: 80px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-blue);
  font-family: 'Manrope', sans-serif;
  flex-shrink: 0;
}

.vs-card--example-1 .vs-card__time {
  color: var(--accent-red);
}

.vs-card--example-3 .vs-card__time {
  color: #ffc107;
}

.vs-card__event {
  display: block;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
  flex: 1;
}

.vs-card__price {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

.vs-card__price strong {
  color: var(--text-main);
  font-weight: 700;
}

@media (min-width: 768px) {
  .vs-grid--examples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vs-card--example {
    padding: 36px 28px;
  }

  .vs-card--example .vs-card__icon {
    width: 72px;
    height: 72px;
  }

  .vs-card--example h3 {
    font-size: 24px;
  }

  .vs-card__duration {
    font-size: 15px;
  }

  .vs-card__list--timeline li {
    padding: 16px 20px;
  }

  .vs-card__time {
    min-width: 90px;
    font-size: 14px;
  }

  .vs-card__event {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .vs-grid--examples {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Карточки с иконками для блока "Почему детям заходит" */
.vs-card--feature {
  position: relative;
  padding: 24px 20px;
  background: linear-gradient(135deg, rgba(10, 10, 25, 0.95), rgba(5, 5, 18, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.vs-card--feature:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 168, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(74, 168, 255, 0.2);
}

.vs-card--feature:nth-child(odd):hover {
  border-color: rgba(255, 59, 108, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(255, 59, 108, 0.2);
}

.vs-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: iconFloat 3s ease-in-out infinite;
}

.vs-card__icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px rgba(74, 168, 255, 0.6));
  animation: iconGlow 2s ease-in-out infinite;
}

.vs-card__icon--blue svg {
  filter: drop-shadow(0 0 12px rgba(74, 168, 255, 0.6)) 
          drop-shadow(0 0 24px rgba(74, 168, 255, 0.3));
}

.vs-card__icon--red svg {
  filter: drop-shadow(0 0 12px rgba(255, 59, 108, 0.6)) 
          drop-shadow(0 0 24px rgba(255, 59, 108, 0.3));
}

.vs-card--feature:nth-child(odd) .vs-card__icon {
  animation-delay: 0.5s;
}

.vs-card--feature:hover .vs-card__icon svg {
  filter: drop-shadow(0 0 20px rgba(74, 168, 255, 0.8)) 
          drop-shadow(0 0 40px rgba(74, 168, 255, 0.5));
  transform: scale(1.1);
}

.vs-card--feature:nth-child(odd):hover .vs-card__icon svg {
  filter: drop-shadow(0 0 20px rgba(255, 59, 108, 0.8)) 
          drop-shadow(0 0 40px rgba(255, 59, 108, 0.5));
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

@keyframes iconGlow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.vs-card--feature h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-main), var(--text-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.vs-card--feature p {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}

@media (min-width: 768px) {
  .vs-card--feature {
    padding: 32px 24px;
  }

  .vs-card__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }

  .vs-card--feature h3 {
    font-size: 22px;
  }

  .vs-card--feature p {
    font-size: 16px;
  }
}

/* Карточки цен для детских дней рождения */
.vs-grid--prices-birthday {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.vs-price-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(10, 10, 25, 0.95), rgba(5, 5, 18, 0.95));
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.vs-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(74, 168, 255, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vs-price-card:hover::before {
  opacity: 1;
}

.vs-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
              0 0 30px rgba(74, 168, 255, 0.2);
}

.vs-price-card--weekday {
  border-color: rgba(74, 168, 255, 0.2);
}

.vs-price-card--weekday:hover {
  border-color: rgba(74, 168, 255, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
              0 0 30px rgba(74, 168, 255, 0.3);
}

.vs-price-card--weekday::before {
  background: linear-gradient(90deg, transparent, rgba(74, 168, 255, 0.6), transparent);
}

.vs-price-card--weekend {
  border-color: rgba(255, 59, 108, 0.2);
}

.vs-price-card--weekend:hover {
  border-color: rgba(255, 59, 108, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
              0 0 30px rgba(255, 59, 108, 0.3);
}

.vs-price-card--weekend::before {
  background: linear-gradient(90deg, transparent, rgba(255, 59, 108, 0.6), transparent);
}

.vs-price-card--special {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
  border-color: rgba(255, 193, 7, 0.3);
  border-width: 2px;
}

.vs-price-card--special:hover {
  border-color: rgba(255, 193, 7, 0.6);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
              0 0 30px rgba(255, 193, 7, 0.3);
}

.vs-price-card--special::before {
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.6), transparent);
}

.vs-price-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #ffc107, #ffd54f);
  color: #eaeaf3;
  font-size: 12px;
  font-weight: 700;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.6);
  }
}

.vs-price-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.vs-price-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-price-card__icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(74, 168, 255, 0.5));
}

.vs-price-card--weekend .vs-price-card__icon svg {
  filter: drop-shadow(0 0 8px rgba(255, 59, 108, 0.5));
}

.vs-price-card--special .vs-price-card__icon svg {
  filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.5));
}

.vs-price-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, var(--text-main), var(--text-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-price-card--special h3 {
  background: linear-gradient(135deg, #ffc107, #ffd54f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-price-card__content {
  margin-bottom: 20px;
}

.vs-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vs-price-item:last-child {
  border-bottom: none;
}

.vs-price-item__label {
  font-size: 14px;
  color: var(--text-soft);
  flex: 1;
}

.vs-price-item__value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-left: 16px;
  white-space: nowrap;
}

.vs-price-card--weekday .vs-price-item__value {
  background: linear-gradient(135deg, #4aa8ff, #00b0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-price-card--weekend .vs-price-item__value {
  background: linear-gradient(135deg, #ff3b6c, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-price-card__footer {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.vs-price-card__deposit {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.vs-price-card--special .vs-price-card__content p {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.vs-price-card__promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 12px;
}

.vs-price-card__promo-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vs-price-card__promo-code {
  font-size: 24px;
  font-weight: 700;
  color: #ffc107;
  letter-spacing: 0.1em;
  font-family: 'Manrope', sans-serif;
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.vs-link--arrow {
  font-size: 15px;
  color: var(--accent-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vs-link--arrow:hover {
  color: var(--accent-red);
  gap: 12px;
}

@media (min-width: 768px) {
  .vs-price-card {
    padding: 32px 28px;
  }

  .vs-price-card__icon {
    width: 64px;
    height: 64px;
  }

  .vs-price-card h3 {
    font-size: 22px;
  }

  .vs-price-item__label {
    font-size: 15px;
  }

  .vs-price-item__value {
    font-size: 24px;
  }
}

.vs-card--event {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vs-card--split {
  display: flex;
}

.vs-card--split > div {
  flex: 1;
}

/* Ссылки */
.vs-link {
  font-size: 13px;
  color: #7ab6ff;
  position: relative;
}

.vs-link:hover {
  color: #ffffff;
}

.vs-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
  transition: width 0.18s ease-out;
}

.vs-link:hover::after {
  width: 100%;
}

/* Цены */
.vs-price {
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(5, 5, 22, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.vs-price h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.vs-price ul {
  margin: 0 0 8px;
  padding-left: 16px;
}

.vs-price__note {
  margin: 0;
  font-size: 12px;
  color: #9aa2ff;
}

/* Бронирование */
.vs-section--booking {
  background: radial-gradient(circle at top, #13132a 0, #050511 60%, #020207 100%);
}

.vs-booking {
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .vs-booking {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    align-items: flex-start;
  }
}

.vs-form {
  padding: 20px 16px;
  border-radius: 16px;
  background: rgba(5, 5, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

.vs-form__group {
  margin-bottom: 16px;
}

.vs-form__group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #dbe0ff;
  font-weight: 500;
}

@media (min-width: 768px) {
  .vs-form {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .vs-form__group {
    margin-bottom: 18px;
  }

  .vs-form__group label {
    font-size: 13px;
    margin-bottom: 4px;
  }
}

.vs-form__group input,
.vs-form__group select,
.vs-form__group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 25, 0.96);
  color: #f5f5ff;
  font-size: 16px; /* Предотвращает zoom на iOS */
  min-height: 48px; /* Минимум для touch */
  transition: all 0.2s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

.vs-form__group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Улучшенные стили для input полей */
.vs-form__group input:hover:not(:disabled),
.vs-form__group textarea:hover:not(:disabled) {
  border-color: rgba(74, 168, 255, 0.4);
  background-color: rgba(10, 10, 30, 0.98);
}

.vs-form__group input:focus,
.vs-form__group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  background-color: rgba(10, 10, 30, 0.98);
  box-shadow: 0 0 0 3px rgba(74, 168, 255, 0.2), 0 4px 12px rgba(74, 168, 255, 0.15);
}

/* Улучшенные стили для выпадающих списков */
.vs-form__group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23aeb5ff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
  position: relative;
}

.vs-form__group select:hover {
  border-color: rgba(74, 168, 255, 0.4);
  background-color: rgba(10, 10, 30, 0.98);
  box-shadow: 0 0 0 3px rgba(74, 168, 255, 0.1);
}

.vs-form__group select:focus {
  outline: none;
  border-color: var(--accent-blue);
  background-color: rgba(10, 10, 30, 0.98);
  box-shadow: 0 0 0 3px rgba(74, 168, 255, 0.2), 0 4px 12px rgba(74, 168, 255, 0.15);
}

.vs-form__group select:active {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(74, 168, 255, 0.25);
}

/* Стили для option элементов */
.vs-form__group select option {
  background: rgba(8, 8, 25, 0.98);
  color: #f5f5ff;
  padding: 10px 12px;
  border: none;
}

.vs-form__group select option:hover {
  background: rgba(74, 168, 255, 0.2);
}

.vs-form__group select option:checked {
  background: linear-gradient(135deg, rgba(255, 59, 108, 0.3), rgba(74, 168, 255, 0.3));
  color: #fff;
  font-weight: 600;
}

/* Дополнительные улучшения для select */
.vs-form__group select::-ms-expand {
  display: none; /* Скрываем стандартную стрелку в IE */
}

/* Улучшенная визуализация для выбранного значения */
.vs-form__group select:valid {
  color: #f5f5ff;
}

.vs-form__group--inline {
  display: grid;
  gap: 10px;
}

@media (min-width: 600px) {
  .vs-form__group--inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.vs-form__note {
  margin: 10px 0 0;
  font-size: 11px;
  color: #9da5ff;
  line-height: 1.5;
}

/* Упрощенная форма */
.vs-form--simple {
  max-width: 600px;
  margin: 0 auto;
}

.vs-form__hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
}

/* Контакты */
.vs-contacts {
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .vs-contacts {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    align-items: stretch;
  }
}

.vs-contacts__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0;
}

.vs-contacts__socials {
  margin-top: 10px;
  font-size: 13px;
}

.vs-contacts__socials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.vs-contacts__disclaimer {
  margin: 6px 0 0;
  font-size: 11px;
  color: #9096d4;
}

.vs-map-placeholder {
  height: 220px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #b5bcff;
  font-size: 13px;
  background: rgba(10, 10, 30, 0.7);
}

.vs-map-placeholder span {
  margin-top: 4px;
  font-size: 11px;
  color: #868ed0;
}

/* Footer */
.vs-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0 24px;
  background: #050511;
  font-size: 13px;
  color: #a0a6e8;
}

.vs-footer__inner {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

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

.vs-footer__section h3 {
  font-size: 14px;
  color: #ffffff;
  margin: 0 0 8px;
  font-weight: 600;
}

.vs-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vs-footer__nav a {
  color: #a0a6e8;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 13px;
  padding: 4px 0;
  display: block;
}

.vs-footer__nav a:hover {
  color: #ffffff;
}

@media (min-width: 600px) {
  .vs-footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (min-width: 768px) {
  .vs-footer {
    padding: 40px 0 32px;
    font-size: 12px;
  }

  .vs-footer__inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1.7fr);
    align-items: flex-start;
    gap: 40px;
  }

  .vs-footer__nav {
    flex-direction: column;
  }
}

.vs-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}

.vs-footer__nav a {
  font-size: 12px;
  color: #c0c5ff;
}

.vs-footer__nav a:hover {
  color: #ffffff;
}

.vs-footer__copy {
  margin: 6px 0 0;
}

.vs-footer__meta {
  margin: 0;
  color: #8a91d0;
}

/* Hover-состояния для карточек */
.vs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Плавное появление элементов */
.vs-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.vs-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Анимации */
@keyframes vs-glow-pulse {
  0% {
    opacity: 0.18;
    transform: scale(1);
  }
  50% {
    opacity: 0.32;
    transform: scale(1.02);
  }
  100% {
    opacity: 0.18;
    transform: scale(1);
  }
}

@keyframes vs-pill-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Отзывы */
/* Адаптивные стили для отзывов */
@media (max-width: 767px) {
  .vs-card--review {
    padding: 16px;
  }

  .vs-review__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .vs-review__author {
    width: 100%;
  }

  .vs-review__rating {
    align-self: flex-start;
  }

  .vs-review__text {
    font-size: 14px;
    line-height: 1.6;
  }
}

.vs-card--review {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vs-review__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.vs-review__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vs-review__author strong {
  color: #fff;
  font-size: 15px;
}

.vs-review__author span {
  color: #aeb5ff;
  font-size: 12px;
}

.vs-review__rating {
  color: #ffd700;
  font-size: 14px;
  letter-spacing: 2px;
}

.vs-review__text {
  color: #c7cbff;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.vs-review__date {
  color: #8a91d0;
  font-size: 12px;
  margin-top: auto;
}

/* Страница игр */
.vs-hero--games {
  padding: 80px 0 40px;
}

.vs-section--filters {
  padding: 32px 0;
  background: rgba(10, 10, 25, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vs-filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vs-filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vs-filter-group label {
  font-size: 13px;
  color: #aeb5ff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vs-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vs-filter-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 25, 0.8);
  color: #c7cbff;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.vs-filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(20, 20, 40, 0.9);
  color: #fff;
}

.vs-filter-btn--active {
  background: linear-gradient(135deg, rgba(255, 59, 108, 0.3), rgba(74, 168, 255, 0.3));
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 64, 129, 0.3);
}

.vs-grid--games {
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .vs-grid--games {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .vs-filters {
    flex-direction: row;
    align-items: flex-end;
  }
  
  .vs-filter-group {
    flex: 1;
  }
}

/* Карточки игр */
.vs-game-card {
  background: radial-gradient(circle at top left, rgba(16, 16, 40, 0.98), rgba(5, 5, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
  display: flex;
  flex-direction: column;
}

.vs-game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}

.vs-game-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.vs-game-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.vs-game-card:hover .vs-game-card__img {
  transform: scale(1.05);
}

.vs-game-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 59, 108, 0.2), rgba(74, 168, 255, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255, 255, 255, 0.3);
}

.vs-game-card__placeholder--red-blue {
  background: linear-gradient(135deg, rgba(255, 59, 108, 0.3), rgba(74, 168, 255, 0.3));
}

.vs-game-card__placeholder--quest {
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.3), rgba(233, 30, 99, 0.3));
}

.vs-game-card__placeholder--solo {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.3), rgba(255, 193, 7, 0.3));
}

.vs-game-card__placeholder--open {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(139, 195, 74, 0.3));
}

.vs-game-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(5, 5, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  color: #aeb5ff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vs-game-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vs-game-card__title {
  margin: 0 0 8px;
  font-size: 20px;
  color: #fff;
}

.vs-game-card__description {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
}

.vs-game-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vs-game-card__spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vs-game-card__spec-label {
  font-size: 11px;
  color: #aeb5ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vs-game-card__spec-value {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.vs-game-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vs-game-card__actions .vs-btn {
  flex: 1;
  min-width: 120px;
}

.vs-game-card.hidden {
  display: none;
}

/* Карточки игр на странице games.html всегда видимы */
.page-games .vs-game-card {
  opacity: 1 !important;
  transform: none !important;
}

/* Детальная страница игры */
.vs-hero--game-detail {
  padding: 100px 0 60px;
  background-image: url('../uploads/games/MILITARY_STATION/bg-1280.35d10a630c12.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.vs-hero--game-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255, 59, 108, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(74, 168, 255, 0.3) 0%, transparent 60%),
    rgba(5, 5, 15, 0.6);
  z-index: 1;
  pointer-events: none;
}

.vs-hero--game-detail .vs-hero__overlay {
  z-index: 2;
}

.vs-hero--game-detail .vs-hero__inner {
  position: relative;
  z-index: 3;
}

/* Адаптивные стили для hero секции игры */
@media (max-width: 768px) {
  .vs-hero--game-detail {
    padding: 80px 0 40px;
    background-size: cover;
    background-position: center center;
  }
  
  .vs-hero--game-detail::before {
    background: 
      radial-gradient(ellipse at 20% 50%, rgba(255, 59, 108, 0.4) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 50%, rgba(74, 168, 255, 0.4) 0%, transparent 60%),
      rgba(5, 5, 15, 0.8);
  }
}

@media (max-width: 480px) {
  .vs-hero--game-detail {
    padding: 60px 0 30px;
  }
  
  .vs-hero--game-detail::before {
    background: 
      radial-gradient(ellipse at 20% 50%, rgba(255, 59, 108, 0.5) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 50%, rgba(74, 168, 255, 0.5) 0%, transparent 60%),
      rgba(5, 5, 15, 0.85);
  }
}

.vs-game-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 59, 108, 0.3), rgba(74, 168, 255, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.vs-btn--large {
  padding: 14px 32px;
  font-size: 16px;
}

/* Режимы игры */
.vs-grid--modes {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .vs-grid--modes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .vs-grid--modes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.vs-card--mode {
  position: relative;
  padding-left: 50px;
}

.vs-mode__number {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3b6c, #4aa8ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 64, 129, 0.4);
}

/* Галерея локаций */
.vs-locations-gallery {
  margin: 40px 0;
}

.vs-locations-gallery__main {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(10, 10, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  aspect-ratio: 16 / 9;
}

.vs-locations-gallery__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
  opacity: 1;
}

.vs-locations-gallery__thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  max-width: 100%;
}

.vs-locations-gallery__thumb {
  position: relative;
  background: none;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  aspect-ratio: 16 / 9;
  background: rgba(10, 10, 25, 0.9);
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.vs-locations-gallery__thumb:hover {
  border-color: rgba(74, 168, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74, 168, 255, 0.3);
}

.vs-locations-gallery__thumb.active {
  border-color: var(--accent-blue);
  box-shadow: 0 0 20px rgba(74, 168, 255, 0.6);
}

.vs-locations-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  pointer-events: none;
  user-select: none;
}

.vs-locations-gallery__thumb:hover img,
.vs-locations-gallery__thumb.active img {
  opacity: 1;
}

@media (min-width: 768px) {
  .vs-locations-gallery__thumbnails {
    grid-template-columns: repeat(5, minmax(140px, 1fr));
    gap: 16px;
  }
  
  .vs-locations-gallery__main {
    border-radius: 24px;
  }
}

@media (min-width: 1024px) {
  .vs-locations-gallery__thumbnails {
    grid-template-columns: repeat(10, minmax(120px, 1fr));
  }
}

/* Локации */
.vs-grid--locations {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .vs-grid--locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .vs-grid--locations {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.vs-card--location {
  border-left: 3px solid #4aa8ff;
}

/* Характеристики */
.vs-grid--specs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

@media (min-width: 600px) {
  .vs-grid--specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.vs-spec-card {
  text-align: center;
  padding: 24px;
  background: rgba(10, 10, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.2s;
}

.vs-spec-card:hover {
  border-color: rgba(74, 168, 255, 0.5);
  background: rgba(10, 10, 25, 0.8);
  transform: translateY(-2px);
}

.vs-spec-card__value {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ff3b6c, #4aa8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-spec-card__label {
  font-size: 14px;
  color: #aeb5ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Активная ссылка в навигации */
.vs-nav__list a.vs-nav__active {
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(255, 59, 108, 0.2), rgba(74, 168, 255, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vs-nav__list a.vs-nav__active::before {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .vs-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Календарь доступных слотов */
.vs-calendar-slots {
  margin-top: 16px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(5, 5, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vs-calendar-slots__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.vs-calendar-slots__header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
}

.vs-calendar-slots__loading {
  color: var(--text-muted);
  font-size: 13px;
}

.vs-calendar-slots__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vs-calendar-slots__hour-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.vs-calendar-slots__hour-label {
  min-width: 60px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding-top: 8px;
}

.vs-calendar-slots__hour-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.vs-calendar-slot {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 8, 25, 0.8);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 70px;
  min-height: 44px; /* Минимум для touch */
  text-align: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.vs-calendar-slot:hover:not(:disabled) {
  background: rgba(74, 168, 255, 0.2);
  border-color: var(--accent-blue);
  transform: translateY(-1px);
}

.vs-calendar-slot--available {
  border-color: rgba(76, 175, 80, 0.4);
  background: rgba(76, 175, 80, 0.1);
}

.vs-calendar-slot--available:hover {
  background: rgba(76, 175, 80, 0.25);
  border-color: rgba(76, 175, 80, 0.6);
}

.vs-calendar-slot--selected {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-blue));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 59, 108, 0.4);
}

.vs-calendar-slot--unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 25, 0.4);
}

.vs-calendar-slots__empty {
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.vs-calendar-slots__error {
  padding: 16px;
  border-radius: 8px;
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.4);
  color: #e57373;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 600px) {
  .vs-calendar-slots__hour-group {
    flex-direction: column;
    gap: 8px;
  }
  
  .vs-calendar-slots__hour-label {
    padding-top: 0;
  }
  
  .vs-calendar-slot {
    flex: 1;
    min-width: calc(50% - 4px);
  }
}

/* Модальные окна */
.vs-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.vs-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease-out;
}

.vs-modal__content {
  position: relative;
  z-index: 1;
  background: var(--bg-panel-strong);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.vs-modal__content--large {
  max-width: 800px;
}
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-strong);
  animation: slideUp 0.3s ease-out;
}

.vs-modal__header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vs-modal__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--text-main);
}

.vs-modal__close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s;
}

.vs-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.vs-modal__body {
  padding: 24px;
}

.vs-modal__footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .vs-modal {
    padding: 0;
  }
  
  .vs-modal__content {
    border-radius: 0;
    max-height: 100vh;
  }
  
  .vs-modal__header,
  .vs-modal__body,
  .vs-modal__footer {
    padding: 20px;
  }
}

/* Рейтинг звезд */
.vs-form__rating {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.vs-rating-star {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, color 0.2s;
  line-height: 1;
}

.vs-rating-star:hover {
  transform: scale(1.2);
}

.vs-rating-star:focus {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================
   ДОПОЛНИТЕЛЬНЫЕ АДАПТИВНЫЕ СТИЛИ ДЛЯ МОБИЛЬНЫХ
   ============================================ */

/* Улучшение touch-интерфейсов */
@media (max-width: 767px) {
  /* Увеличение размеров кликабельных элементов */
  a, button, input[type="submit"], input[type="button"] {
    min-height: 44px;
    min-width: 44px;
  }

  /* Оптимизация пилюлей */
  .vs-pill {
    padding: 8px 14px;
    font-size: 12px;
    min-height: 36px;
  }

  /* Оптимизация ссылок */
  .vs-link {
    padding: 8px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Оптимизация карточек событий */
  .vs-card--split {
    flex-direction: column;
  }

  /* Оптимизация контейнера на очень маленьких экранах */
  .vs-container {
    padding: 0 12px;
  }
}

/* Оптимизация для очень маленьких экранов */
@media (max-width: 480px) {
  .vs-hero__title {
    font-size: clamp(21px, 5.25vw, 36px);
  }

  .vs-hero__title span {
    font-size: clamp(10.5px, 2.625vw, 15px);
  }

  .vs-hero__subtitle {
    font-size: 14px;
  }

  .vs-section__title {
    font-size: 22px;
  }

  .vs-card h3 {
    font-size: 16px;
  }

  .vs-price h3 {
    font-size: 16px;
  }

  .vs-btn {
    padding: 12px 16px;
    font-size: 12px;
  }

  .vs-hero__actions .vs-btn {
    padding: 12px 16px;
    font-size: 12px;
    white-space: normal;
    line-height: 1.3;
  }
}

/* Оптимизация для планшетов в портретной ориентации */
@media (min-width: 768px) and (max-width: 1023px) {
  .vs-hero__actions .vs-btn {
    flex: 1;
    max-width: 300px;
    padding: 14px 20px;
    font-size: 13px;
    white-space: nowrap;
  }

  .vs-grid--cards {
    gap: 20px;
  }
}

/* Оптимизация анимаций для пользователей с prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Улучшение читаемости на мобильных */
@media (max-width: 767px) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Улучшение контрастности текста */
  .vs-card p,
  .vs-section__subtitle {
    line-height: 1.6;
  }
}

/* ============================================
   СПЕЦИАЛЬНЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ ТИМБИЛДИНГА
   ============================================ */

/* Плавные переходы между секциями */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section--dark {
  background: radial-gradient(circle at 20% 20%, rgba(74, 168, 255, 0.08), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(74, 168, 255, 0.05), transparent 50%),
              rgba(5, 5, 15, 0.98);
  transition: background 0.5s ease;
}

/* Анимации появления карточек при скролле */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpTeambuilding 0.6s ease-out forwards;
  animation-delay: calc(var(--card-index, 0) * 0.1s);
}

@keyframes fadeInUpTeambuilding {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Улучшенные hover-эффекты для карточек форматов тимбилдинга */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(74, 168, 255, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6),
              0 0 30px rgba(74, 168, 255, 0.3),
              inset 0 0 20px rgba(74, 168, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Улучшенный timeline для программы тимбилдинга */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-timeline-item {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInLeftTeambuilding 0.6s ease-out forwards;
  animation-delay: calc(var(--timeline-index, 0) * 0.15s);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: -20px;
  width: 3px;
  background: linear-gradient(180deg, 
    var(--accent-blue) 0%,
    rgba(74, 168, 255, 0.5) 50%,
    transparent 100%);
  border-radius: 2px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-timeline-item::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 15px rgba(74, 168, 255, 0.8),
              0 0 30px rgba(74, 168, 255, 0.4);
  border: 2px solid rgba(5, 5, 15, 0.9);
  animation: pulseDotTeambuilding 2s ease-in-out infinite;
}

@keyframes fadeInLeftTeambuilding {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulseDotTeambuilding {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(74, 168, 255, 0.8),
                0 0 30px rgba(74, 168, 255, 0.4);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(74, 168, 255, 1),
                0 0 40px rgba(74, 168, 255, 0.6);
  }
}

/* Визуальные акценты на CTA кнопки */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-btn--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-blue), #00b0ff);
  box-shadow: 0 0 20px rgba(74, 168, 255, 0.5),
              0 10px 30px rgba(74, 168, 255, 0.3);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-btn--primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-btn--primary:hover::before {
  width: 300px;
  height: 300px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(74, 168, 255, 0.7),
              0 15px 40px rgba(74, 168, 255, 0.4);
  filter: brightness(1.1);
}

/* Визуальные акценты на цены */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-price {
  position: relative;
  border: 2px solid rgba(74, 168, 255, 0.2);
  transition: all 0.3s ease;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-price:hover {
  border-color: rgba(74, 168, 255, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5),
              0 0 25px rgba(74, 168, 255, 0.2);
  transform: translateY(-2px);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-price h3 {
  background: linear-gradient(135deg, var(--accent-blue), #00b0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Улучшение карточек форматов тимбилдинга */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format {
  position: relative;
  overflow: hidden;
  padding: 32px 24px;
  background: linear-gradient(135deg, 
    rgba(16, 16, 40, 0.98) 0%,
    rgba(74, 168, 255, 0.1) 50%,
    rgba(5, 5, 18, 0.98) 100%);
  border: 2px solid rgba(74, 168, 255, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), #00b0ff, var(--accent-blue), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow: 0 0 20px rgba(74, 168, 255, 0.6);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 168, 255, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(74, 168, 255, 0.6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
              0 0 50px rgba(74, 168, 255, 0.5),
              inset 0 0 40px rgba(74, 168, 255, 0.15);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format:hover::before {
  opacity: 1;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format:hover::after {
  opacity: 1;
}

/* Иконки для карточек форматов */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format .vs-card__icon-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format .vs-card__icon {
  width: 80px;
  height: 80px;
  color: var(--accent-blue);
  transition: all 0.4s ease;
  position: relative;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format .vs-card__icon::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 168, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format:hover .vs-card__icon {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 25px rgba(74, 168, 255, 0.9));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format:hover .vs-card__icon::before {
  opacity: 1;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format .vs-card__icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(74, 168, 255, 0.7));
  transition: filter 0.4s ease;
  animation: iconFloatFormat 3s ease-in-out infinite;
}

@keyframes iconFloatFormat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.08);
  }
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format:hover .vs-card__icon svg {
  filter: drop-shadow(0 0 30px rgba(74, 168, 255, 1));
}

/* Красная иконка для первой карточки (Командные бои) */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-1 {
  background: linear-gradient(135deg, 
    rgba(16, 16, 40, 0.98) 0%,
    rgba(255, 59, 108, 0.12) 50%,
    rgba(5, 5, 18, 0.98) 100%);
  border-color: rgba(255, 59, 108, 0.3);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-1::before {
  background: linear-gradient(90deg, transparent, var(--accent-red), #ff6b9d, var(--accent-red), transparent);
  box-shadow: 0 0 20px rgba(255, 59, 108, 0.6);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-1:hover {
  border-color: rgba(255, 59, 108, 0.6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
              0 0 50px rgba(255, 59, 108, 0.5),
              inset 0 0 40px rgba(255, 59, 108, 0.15);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-1 .vs-card__icon {
  color: var(--accent-red);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-1 .vs-card__icon svg {
  filter: drop-shadow(0 0 15px rgba(255, 59, 108, 0.7));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-1:hover .vs-card__icon {
  filter: drop-shadow(0 0 25px rgba(255, 59, 108, 0.9));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-1:hover .vs-card__icon svg {
  filter: drop-shadow(0 0 30px rgba(255, 59, 108, 1));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-1 .vs-card__icon::before {
  background: radial-gradient(circle, rgba(255, 59, 108, 0.4), transparent);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-1::after {
  background: radial-gradient(circle, rgba(255, 59, 108, 0.12), transparent 70%);
}

/* Золотая иконка для третьей карточки (Турнирный формат) */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-3 {
  background: linear-gradient(135deg, 
    rgba(16, 16, 40, 0.98) 0%,
    rgba(255, 193, 7, 0.12) 50%,
    rgba(5, 5, 18, 0.98) 100%);
  border-color: rgba(255, 193, 7, 0.3);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-3::before {
  background: linear-gradient(90deg, transparent, #ffc107, #ffd54f, #ffc107, transparent);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-3:hover {
  border-color: rgba(255, 193, 7, 0.6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
              0 0 50px rgba(255, 193, 7, 0.5),
              inset 0 0 40px rgba(255, 193, 7, 0.15);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-3 .vs-card__icon {
  color: #ffc107;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-3 .vs-card__icon svg {
  filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.7));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-3:hover .vs-card__icon {
  filter: drop-shadow(0 0 25px rgba(255, 193, 7, 0.9));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-3:hover .vs-card__icon svg {
  filter: drop-shadow(0 0 30px rgba(255, 193, 7, 1));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-3 .vs-card__icon::before {
  background: radial-gradient(circle, rgba(255, 193, 7, 0.4), transparent);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-3::after {
  background: radial-gradient(circle, rgba(255, 193, 7, 0.12), transparent 70%);
}

/* Заголовки карточек форматов */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-main), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-1 h3 {
  background: linear-gradient(135deg, var(--text-main), var(--accent-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-3 h3 {
  background: linear-gradient(135deg, var(--text-main), #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Текст в карточках форматов */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 20px;
  text-align: center;
}

/* Списки в карточках форматов */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format .vs-card__list {
  text-align: left;
  margin-top: 20px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format .vs-card__list li {
  font-size: 14px;
  line-height: 1.6;
  padding-left: 24px;
  margin-bottom: 10px;
  position: relative;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format .vs-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 16px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 168, 255, 0.15);
  border-radius: 50%;
  border: 1px solid rgba(74, 168, 255, 0.3);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-1 .vs-card__list li::before {
  color: var(--accent-red);
  background: rgba(255, 59, 108, 0.15);
  border-color: rgba(255, 59, 108, 0.3);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-3 .vs-card__list li::before {
  color: #ffc107;
  background: rgba(255, 193, 7, 0.15);
  border-color: rgba(255, 193, 7, 0.3);
}

/* Длительность в карточках форматов */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format .vs-card__duration {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid rgba(74, 168, 255, 0.2);
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format .vs-card__duration strong {
  color: var(--accent-blue);
  font-weight: 700;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-1 .vs-card__duration {
  border-top-color: rgba(255, 59, 108, 0.2);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-1 .vs-card__duration strong {
  color: var(--accent-red);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-3 .vs-card__duration {
  border-top-color: rgba(255, 193, 7, 0.2);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-3 .vs-card__duration strong {
  color: #ffc107;
}

/* Анимации для разных иконок */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-1 .vs-card__icon svg {
  animation-delay: 0s;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-2 .vs-card__icon svg {
  animation-delay: 0.2s;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format-3 .vs-card__icon svg {
  animation-delay: 0.4s;
}

/* Адаптация для мобильных */
@media (max-width: 767px) {
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format {
    padding: 24px 20px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format .vs-card__icon {
    width: 64px;
    height: 64px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-format h3 {
    font-size: 20px;
  }
}

/* Улучшение формы бронирования */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) #booking {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(16, 16, 40, 0.95) 0%,
    rgba(74, 168, 255, 0.05) 50%,
    rgba(5, 5, 18, 0.95) 100%);
  border-radius: 24px;
  padding: 48px 24px;
  border: 2px solid rgba(74, 168, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(74, 168, 255, 0.1);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-booking-header {
  text-align: center;
  margin-bottom: 40px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) #booking .vs-section__title {
  margin-bottom: 16px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) #booking .vs-section__subtitle {
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-form--teambuilding {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(5, 5, 15, 0.5);
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid rgba(74, 168, 255, 0.15);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-form--teambuilding .vs-form__group {
  position: relative;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-form--teambuilding .vs-form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-soft);
  font-size: 14px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-form--teambuilding .vs-form__input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(16, 16, 40, 0.8);
  border: 2px solid rgba(74, 168, 255, 0.2);
  border-radius: 12px;
  color: var(--text-main);
  font-size: 15px;
  transition: all 0.3s ease;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-form--teambuilding .vs-form__input:focus {
  border-color: rgba(74, 168, 255, 0.6);
  box-shadow: 0 0 20px rgba(74, 168, 255, 0.4),
              inset 0 0 15px rgba(74, 168, 255, 0.1);
  outline: none;
  background: rgba(16, 16, 40, 0.95);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-form--teambuilding .vs-form__input:valid:not(:placeholder-shown) {
  border-color: rgba(74, 168, 255, 0.5);
  box-shadow: 0 0 15px rgba(74, 168, 255, 0.2);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-form--teambuilding .vs-form__input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(255, 59, 108, 0.6);
  box-shadow: 0 0 15px rgba(255, 59, 108, 0.3);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-form--teambuilding .vs-form__input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-form--teambuilding .vs-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-form--teambuilding .vs-form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-form--teambuilding textarea {
  resize: vertical;
  min-height: 100px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-form--teambuilding .vs-btn--primary {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  font-size: 15px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-form--teambuilding .vs-form__note {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Улучшение заголовков секций */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section__title {
  position: relative;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #00b0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), #00b0ff);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(74, 168, 255, 0.6);
}

/* Улучшение карточек "Для кого подходит" */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target {
  position: relative;
  overflow: hidden;
  padding: 32px 24px;
  background: linear-gradient(135deg, 
    rgba(16, 16, 40, 0.98) 0%,
    rgba(74, 168, 255, 0.08) 50%,
    rgba(5, 5, 18, 0.98) 100%);
  border: 2px solid rgba(74, 168, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), #00b0ff, var(--accent-blue), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow: 0 0 20px rgba(74, 168, 255, 0.6);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 168, 255, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(74, 168, 255, 0.5);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(74, 168, 255, 0.4),
              inset 0 0 30px rgba(74, 168, 255, 0.1);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target:hover::before {
  opacity: 1;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target:hover::after {
  opacity: 1;
}

/* Иконки для карточек */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target .vs-card__icon-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target .vs-card__icon {
  width: 80px;
  height: 80px;
  color: var(--accent-blue);
  transition: all 0.4s ease;
  position: relative;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target .vs-card__icon::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 168, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target:hover .vs-card__icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 20px rgba(74, 168, 255, 0.8));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target:hover .vs-card__icon::before {
  opacity: 1;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target .vs-card__icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px rgba(74, 168, 255, 0.6));
  transition: filter 0.4s ease;
  animation: iconFloatTeambuilding 3s ease-in-out infinite;
}

@keyframes iconFloatTeambuilding {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.05);
  }
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target-2 .vs-card__icon svg {
  animation-delay: 0.3s;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target-3 .vs-card__icon svg {
  animation-delay: 0.6s;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target:hover .vs-card__icon svg {
  filter: drop-shadow(0 0 25px rgba(74, 168, 255, 1));
}

/* Красная иконка для второй карточки */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target-2 {
  background: linear-gradient(135deg, 
    rgba(16, 16, 40, 0.98) 0%,
    rgba(255, 59, 108, 0.08) 50%,
    rgba(5, 5, 18, 0.98) 100%);
  border-color: rgba(255, 59, 108, 0.2);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target-2::before {
  background: linear-gradient(90deg, transparent, var(--accent-red), #ff6b9d, var(--accent-red), transparent);
  box-shadow: 0 0 20px rgba(255, 59, 108, 0.6);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target-2:hover {
  border-color: rgba(255, 59, 108, 0.5);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(255, 59, 108, 0.4),
              inset 0 0 30px rgba(255, 59, 108, 0.1);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target-2 .vs-card__icon {
  color: var(--accent-red);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target-2 .vs-card__icon svg {
  filter: drop-shadow(0 0 12px rgba(255, 59, 108, 0.6));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target-2:hover .vs-card__icon svg {
  filter: drop-shadow(0 0 25px rgba(255, 59, 108, 1));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target-2 .vs-card__icon::before {
  background: radial-gradient(circle, rgba(255, 59, 108, 0.3), transparent);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target-2::after {
  background: radial-gradient(circle, rgba(255, 59, 108, 0.1), transparent 70%);
}

/* Заголовки карточек */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-main), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target-2 h3 {
  background: linear-gradient(135deg, var(--text-main), var(--accent-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Текст в карточках */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 20px;
  text-align: center;
}

/* Списки в карточках */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target .vs-card__list {
  text-align: left;
  margin-top: 20px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target .vs-card__list li {
  font-size: 14px;
  line-height: 1.6;
  padding-left: 24px;
  margin-bottom: 10px;
  position: relative;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target .vs-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 16px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 168, 255, 0.15);
  border-radius: 50%;
  border: 1px solid rgba(74, 168, 255, 0.3);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target-2 .vs-card__list li::before {
  color: var(--accent-red);
  background: rgba(255, 59, 108, 0.15);
  border-color: rgba(255, 59, 108, 0.3);
}

/* Адаптация для мобильных */
@media (max-width: 767px) {
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target {
    padding: 24px 20px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target .vs-card__icon {
    width: 64px;
    height: 64px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-target h3 {
    font-size: 20px;
  }
}

/* Улучшение карточек "Что даёт тимбилдинг" */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit {
  position: relative;
  overflow: hidden;
  padding: 32px 24px;
  background: linear-gradient(135deg, 
    rgba(16, 16, 40, 0.98) 0%,
    rgba(74, 168, 255, 0.12) 50%,
    rgba(5, 5, 18, 0.98) 100%);
  border: 2px solid rgba(74, 168, 255, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), #00b0ff, var(--accent-blue), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow: 0 0 20px rgba(74, 168, 255, 0.6);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 168, 255, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(74, 168, 255, 0.6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
              0 0 50px rgba(74, 168, 255, 0.5),
              inset 0 0 40px rgba(74, 168, 255, 0.15);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit:hover::before {
  opacity: 1;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit:hover::after {
  opacity: 1;
}

/* Иконки для карточек "Что даёт" */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit .vs-card__icon-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit .vs-card__icon {
  width: 80px;
  height: 80px;
  color: var(--accent-blue);
  transition: all 0.4s ease;
  position: relative;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit .vs-card__icon::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 168, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit:hover .vs-card__icon {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 0 25px rgba(74, 168, 255, 0.9));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit:hover .vs-card__icon::before {
  opacity: 1;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit .vs-card__icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(74, 168, 255, 0.7));
  transition: filter 0.4s ease;
  animation: iconFloatBenefit 3s ease-in-out infinite;
}

@keyframes iconFloatBenefit {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.08);
  }
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit:hover .vs-card__icon svg {
  filter: drop-shadow(0 0 30px rgba(74, 168, 255, 1));
}

/* Золотая иконка для второй карточки (Выявление лидеров) */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit-2 {
  background: linear-gradient(135deg, 
    rgba(16, 16, 40, 0.98) 0%,
    rgba(255, 193, 7, 0.12) 50%,
    rgba(5, 5, 18, 0.98) 100%);
  border-color: rgba(255, 193, 7, 0.3);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit-2::before {
  background: linear-gradient(90deg, transparent, #ffc107, #ffd54f, #ffc107, transparent);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit-2:hover {
  border-color: rgba(255, 193, 7, 0.6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
              0 0 50px rgba(255, 193, 7, 0.5),
              inset 0 0 40px rgba(255, 193, 7, 0.15);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit-2 .vs-card__icon {
  color: #ffc107;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit-2 .vs-card__icon svg {
  filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.7));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit-2:hover .vs-card__icon {
  filter: drop-shadow(0 0 25px rgba(255, 193, 7, 0.9));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit-2:hover .vs-card__icon svg {
  filter: drop-shadow(0 0 30px rgba(255, 193, 7, 1));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit-2 .vs-card__icon::before {
  background: radial-gradient(circle, rgba(255, 193, 7, 0.4), transparent);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit-2::after {
  background: radial-gradient(circle, rgba(255, 193, 7, 0.15), transparent 70%);
}

/* Заголовки карточек "Что даёт" */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-main), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit-2 h3 {
  background: linear-gradient(135deg, var(--text-main), #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Текст в карточках "Что даёт" */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 20px;
  text-align: center;
}

/* Списки в карточках "Что даёт" */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit .vs-card__list {
  text-align: left;
  margin-top: 20px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit .vs-card__list li {
  font-size: 14px;
  line-height: 1.6;
  padding-left: 24px;
  margin-bottom: 10px;
  position: relative;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit .vs-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 16px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 168, 255, 0.15);
  border-radius: 50%;
  border: 1px solid rgba(74, 168, 255, 0.3);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit-2 .vs-card__list li::before {
  color: #ffc107;
  background: rgba(255, 193, 7, 0.15);
  border-color: rgba(255, 193, 7, 0.3);
}

/* Анимации для разных иконок */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit-1 .vs-card__icon svg {
  animation-delay: 0s;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit-2 .vs-card__icon svg {
  animation-delay: 0.2s;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit-3 .vs-card__icon svg {
  animation-delay: 0.4s;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit-4 .vs-card__icon svg {
  animation-delay: 0.6s;
}

/* Grid для блока "Что даёт тимбилдинг" - 2 колонки на десктопе */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section--dark .vs-grid--cards:has(.vs-card--teambuilding-benefit) {
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 768px) {
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section--dark .vs-grid--cards:has(.vs-card--teambuilding-benefit) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section--dark .vs-grid--cards:has(.vs-card--teambuilding-benefit) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Адаптация для мобильных */
@media (max-width: 767px) {
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit {
    padding: 24px 20px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit .vs-card__icon {
    width: 64px;
    height: 64px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-benefit h3 {
    font-size: 20px;
  }
}

/* Улучшение карточек "Что вы получите" */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result {
  position: relative;
  overflow: hidden;
  padding: 32px 24px;
  background: linear-gradient(135deg, 
    rgba(16, 16, 40, 0.98) 0%,
    rgba(74, 168, 255, 0.1) 50%,
    rgba(5, 5, 18, 0.98) 100%);
  border: 2px solid rgba(74, 168, 255, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), #00b0ff, var(--accent-blue), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow: 0 0 20px rgba(74, 168, 255, 0.6);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 168, 255, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(74, 168, 255, 0.6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
              0 0 50px rgba(74, 168, 255, 0.5),
              inset 0 0 40px rgba(74, 168, 255, 0.15);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result:hover::before {
  opacity: 1;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result:hover::after {
  opacity: 1;
}

/* Иконки для карточек "Что вы получите" */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result .vs-card__icon-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result .vs-card__icon {
  width: 80px;
  height: 80px;
  color: var(--accent-blue);
  transition: all 0.4s ease;
  position: relative;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result .vs-card__icon::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 168, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result:hover .vs-card__icon {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 0 25px rgba(74, 168, 255, 0.9));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result:hover .vs-card__icon::before {
  opacity: 1;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result .vs-card__icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(74, 168, 255, 0.7));
  transition: filter 0.4s ease;
  animation: iconFloatResult 3s ease-in-out infinite;
}

@keyframes iconFloatResult {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.08);
  }
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result:hover .vs-card__icon svg {
  filter: drop-shadow(0 0 30px rgba(74, 168, 255, 1));
}

/* Заголовки карточек "Что вы получите" */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-main), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

/* Текст в карточках "Что вы получите" */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 20px;
  text-align: center;
}

/* Списки в карточках "Что вы получите" */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result .vs-card__list {
  text-align: left;
  margin-top: 20px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result .vs-card__list li {
  font-size: 14px;
  line-height: 1.6;
  padding-left: 24px;
  margin-bottom: 10px;
  position: relative;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result .vs-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 16px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 168, 255, 0.15);
  border-radius: 50%;
  border: 1px solid rgba(74, 168, 255, 0.3);
}

/* Анимации для разных иконок "Что вы получите" */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result-1 .vs-card__icon svg {
  animation-delay: 0s;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result-2 .vs-card__icon svg {
  animation-delay: 0.2s;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result-3 .vs-card__icon svg {
  animation-delay: 0.4s;
}

/* Улучшение карточек цен */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price {
  position: relative;
  overflow: hidden;
  padding: 32px 24px;
  background: linear-gradient(135deg, 
    rgba(16, 16, 40, 0.98) 0%,
    rgba(74, 168, 255, 0.12) 50%,
    rgba(5, 5, 18, 0.98) 100%);
  border: 2px solid rgba(74, 168, 255, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), #00b0ff, var(--accent-blue), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow: 0 0 20px rgba(74, 168, 255, 0.6);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 168, 255, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(74, 168, 255, 0.6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
              0 0 50px rgba(74, 168, 255, 0.5),
              inset 0 0 40px rgba(74, 168, 255, 0.15);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price:hover::before {
  opacity: 1;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price:hover::after {
  opacity: 1;
}

/* Иконки для карточек цен */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price .vs-card__icon-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price .vs-card__icon {
  width: 80px;
  height: 80px;
  color: var(--accent-blue);
  transition: all 0.4s ease;
  position: relative;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price .vs-card__icon::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 168, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price:hover .vs-card__icon {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 25px rgba(74, 168, 255, 0.9));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price:hover .vs-card__icon::before {
  opacity: 1;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price .vs-card__icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(74, 168, 255, 0.7));
  transition: filter 0.4s ease;
  animation: iconFloatPrice 3s ease-in-out infinite;
}

@keyframes iconFloatPrice {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.08);
  }
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price:hover .vs-card__icon svg {
  filter: drop-shadow(0 0 30px rgba(74, 168, 255, 1));
}

/* Золотая иконка для второй карточки цен (Выходные дни) */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-2 {
  background: linear-gradient(135deg, 
    rgba(16, 16, 40, 0.98) 0%,
    rgba(255, 193, 7, 0.12) 50%,
    rgba(5, 5, 18, 0.98) 100%);
  border-color: rgba(255, 193, 7, 0.3);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-2::before {
  background: linear-gradient(90deg, transparent, #ffc107, #ffd54f, #ffc107, transparent);
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-2:hover {
  border-color: rgba(255, 193, 7, 0.6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7),
              0 0 50px rgba(255, 193, 7, 0.5),
              inset 0 0 40px rgba(255, 193, 7, 0.15);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-2 .vs-card__icon {
  color: #ffc107;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-2 .vs-card__icon svg {
  filter: drop-shadow(0 0 15px rgba(255, 193, 7, 0.7));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-2:hover .vs-card__icon {
  filter: drop-shadow(0 0 25px rgba(255, 193, 7, 0.9));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-2:hover .vs-card__icon svg {
  filter: drop-shadow(0 0 30px rgba(255, 193, 7, 1));
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-2 .vs-card__icon::before {
  background: radial-gradient(circle, rgba(255, 193, 7, 0.4), transparent);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-2::after {
  background: radial-gradient(circle, rgba(255, 193, 7, 0.15), transparent 70%);
}

/* Заголовки карточек цен */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-main), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-2 h3 {
  background: linear-gradient(135deg, var(--text-main), #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Списки цен */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price .vs-card__list--prices {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price .vs-card__list--prices li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(74, 168, 255, 0.15);
  font-size: 14px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price .vs-card__list--prices li:last-child {
  border-bottom: none;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price .vs-price__label {
  color: var(--text-soft);
  flex: 1;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price .vs-price__value {
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 18px;
  margin-left: 16px;
  white-space: nowrap;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-2 .vs-price__value {
  color: #ffc107;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-2 .vs-card__list--prices li {
  border-bottom-color: rgba(255, 193, 7, 0.15);
}

/* Депозит в карточках цен */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price .vs-card__deposit {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid rgba(74, 168, 255, 0.2);
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price .vs-card__deposit strong {
  color: var(--accent-blue);
  font-weight: 700;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-2 .vs-card__deposit {
  border-top-color: rgba(255, 193, 7, 0.2);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-2 .vs-card__deposit strong {
  color: #ffc107;
}

/* Третья карточка цен (Индивидуальный расчёт) */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-3 {
  background: linear-gradient(135deg, 
    rgba(16, 16, 40, 0.98) 0%,
    rgba(74, 168, 255, 0.15) 50%,
    rgba(5, 5, 18, 0.98) 100%);
  border-color: rgba(74, 168, 255, 0.4);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-3 p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 20px;
  text-align: center;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-3 h3 {
  background: linear-gradient(135deg, var(--accent-blue), #00b0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Анимации для разных иконок цен */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-1 .vs-card__icon svg {
  animation-delay: 0s;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-2 .vs-card__icon svg {
  animation-delay: 0.2s;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price-3 .vs-card__icon svg {
  animation-delay: 0.4s;
}

/* Улучшение списков в карточках */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 14px;
}

/* Декоративные разделители между секциями */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section:not(:last-child)::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(74, 168, 255, 0.2) 20%,
    rgba(74, 168, 255, 0.4) 50%,
    rgba(74, 168, 255, 0.2) 80%,
    transparent 100%);
  margin-top: 48px;
  box-shadow: 0 0 10px rgba(74, 168, 255, 0.2);
}

/* Улучшение подзаголовков секций */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section__subtitle {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 700px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Улучшение HERO подзаголовка */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-hero__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 600px;
}

/* Улучшение ссылок */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-link {
  color: var(--accent-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), #00b0ff);
  transition: width 0.3s ease;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-link:hover::after {
  width: 100%;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-link:hover {
  color: #00b0ff;
  text-shadow: 0 0 10px rgba(74, 168, 255, 0.5);
}

/* Улучшение карточек форматов тимбилдинга */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section:nth-of-type(3) .vs-card {
  position: relative;
  overflow: visible;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section:nth-of-type(3) .vs-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-main), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section:nth-of-type(3) .vs-price__note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(74, 168, 255, 0.2);
  color: var(--text-muted);
  font-size: 13px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section:nth-of-type(3) .vs-price__note strong {
  color: var(--accent-blue);
}

/* Улучшение программы тимбилдинга */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section--dark:nth-of-type(2) .vs-card {
  background: linear-gradient(135deg, 
    rgba(16, 16, 40, 0.98) 0%,
    rgba(74, 168, 255, 0.08) 50%,
    rgba(5, 5, 18, 0.98) 100%);
  border: 1px solid rgba(74, 168, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(74, 168, 255, 0.1);
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section--dark:nth-of-type(2) .vs-card h3 {
  background: linear-gradient(135deg, var(--accent-blue), #00b0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 22px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section--dark:nth-of-type(2) .vs-price__note {
  background: rgba(74, 168, 255, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 3px solid var(--accent-blue);
  margin-top: 24px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section--dark:nth-of-type(2) .vs-price__note strong {
  color: var(--accent-blue);
}

/* Улучшение кнопки "Обсудить программу" */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section--dark:nth-of-type(2) .vs-btn--primary {
  margin-top: 8px;
}

/* Улучшение формы бронирования - заголовок */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) #booking .vs-section__title {
  margin-bottom: 16px;
}

body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) #booking .vs-section__subtitle {
  margin-bottom: 32px;
}

/* Улучшение footer на странице тимбилдинга */
body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-footer {
  border-top: 1px solid rgba(74, 168, 255, 0.2);
  background: linear-gradient(180deg, 
    rgba(5, 5, 15, 0.98) 0%,
    rgba(5, 5, 20, 0.95) 100%);
}

/* Адаптация для мобильных устройств */
@media (max-width: 767px) {
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card {
    animation-delay: 0s;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-timeline-item {
    animation-delay: 0s;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section__title::after {
    width: 40px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-section:not(:last-child)::after {
    margin-top: 32px;
  }
  
  /* Адаптация карточек "Что вы получите" */
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result {
    padding: 24px 20px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result .vs-card__icon {
    width: 64px;
    height: 64px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-result h3 {
    font-size: 20px;
  }
  
  /* Адаптация карточек цен */
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price {
    padding: 24px 20px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price .vs-card__icon {
    width: 64px;
    height: 64px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price h3 {
    font-size: 20px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price .vs-price__value {
    font-size: 16px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price .vs-card__list--prices li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-card--teambuilding-price .vs-price__value {
    margin-left: 0;
  }
  
  /* Адаптация формы бронирования */
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) #booking {
    padding: 32px 16px;
    border-radius: 16px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-form--teambuilding {
    padding: 24px 16px;
  }
  
  body:has(.vs-hero__title[data-text="Тимбилдинг в VR"]) .vs-booking-header {
    margin-bottom: 32px;
  }
}

/* ============================================
   ЦЕНТРИРОВАНИЕ ПОДЗАГОЛОВКОВ НА СТРАНИЦАХ ИГР И МЕРОПРИЯТИЙ
   ============================================ */

/* Гарантируем центрирование подзаголовков на всех страницах игр */
.vs-section .vs-section__subtitle {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
}

/* Специфичные правила для страниц мероприятий */
body:has(.vs-hero--small) .vs-section__subtitle,
body:has(.vs-hero--game-detail) .vs-section__subtitle {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
}

/* Для страниц birthday, corporate, teambuilding, open-games */
.birthday .vs-section__subtitle,
.corporate .vs-section__subtitle,
.teambuilding .vs-section__subtitle,
.open-games .vs-section__subtitle,
.vs-section__subtitle {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
}

/* ============================================
   СТИЛИ ДЛЯ СТРАНИЦЫ ЦЕН
   ============================================ */

/* Таблица цен */
.vs-table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 16px;
  background: rgba(5, 5, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vs-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.vs-table thead {
  background: linear-gradient(135deg, rgba(74, 168, 255, 0.15), rgba(255, 59, 108, 0.15));
}

.vs-table th {
  padding: 16px 12px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.vs-table td {
  padding: 20px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.vs-table tbody tr:hover {
  background: rgba(74, 168, 255, 0.05);
}

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

.vs-table__desc {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 400;
}

.vs-table strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.vs-price-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vs-price-cell > span:first-child {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  background: linear-gradient(135deg, #4aa8ff, #00b0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-price-cell__sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.vs-table__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vs-table__list li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

.vs-table__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4aa8ff;
  font-weight: 700;
}

.vs-info-block {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(74, 168, 255, 0.1);
  border: 1px solid rgba(74, 168, 255, 0.2);
  border-radius: 12px;
  text-align: center;
}

.vs-info-block p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

.vs-info-block strong {
  color: var(--text-main);
}

/* Карточки открытых игр */
.vs-grid--prices-simple {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

@media (min-width: 600px) {
  .vs-grid--prices-simple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.vs-price-card--simple {
  text-align: center;
  padding: 32px 24px;
}

.vs-price-card--simple h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

.vs-price-val {
  font-size: 36px;
  font-weight: 700;
  margin: 16px 0;
  background: linear-gradient(135deg, #4aa8ff, #ff3b6c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-price-card--simple p {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--text-muted);
}

/* Калькулятор */
.vs-calculator {
  max-width: 600px;
  margin: 0 auto;
}

.vs-form--calculator {
  margin-bottom: 24px;
}

.vs-calculator__result {
  padding: 24px;
  background: linear-gradient(135deg, rgba(74, 168, 255, 0.15), rgba(255, 59, 108, 0.15));
  border: 2px solid rgba(74, 168, 255, 0.3);
  border-radius: 16px;
  text-align: center;
}

.vs-calculator__result h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

.vs-calculator__price {
  font-size: 42px;
  font-weight: 700;
  margin: 16px 0;
  background: linear-gradient(135deg, #4aa8ff, #ff3b6c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vs-calculator__details {
  margin: 16px 0;
  font-size: 14px;
  color: var(--text-soft);
}

@media (min-width: 768px) {
  .vs-table-wrapper {
    margin: 32px 0;
  }

  .vs-table th {
    padding: 20px 16px;
    font-size: 15px;
  }

  .vs-table td {
    padding: 24px 16px;
  }

  .vs-table strong {
    font-size: 17px;
  }

  .vs-price-cell > span:first-child {
    font-size: 20px;
  }

  .vs-price-cell__sub {
    font-size: 13px;
  }

  .vs-table__list li {
    font-size: 15px;
  }

  .vs-info-block {
    padding: 20px 24px;
  }

  .vs-info-block p {
    font-size: 15px;
  }

  .vs-price-card--simple {
    padding: 40px 32px;
  }

  .vs-price-card--simple h3 {
    font-size: 20px;
  }

  .vs-price-val {
    font-size: 42px;
  }

  .vs-calculator__result {
    padding: 32px;
  }

  .vs-calculator__price {
    font-size: 48px;
  }
}