.hero-video {
  position: relative;
  min-height: 60vh;
  border-radius: 16px;
  overflow: hidden;
}

.hero-video__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05) brightness(0.85);
  transform: scale(1.02);
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  /* тёмный градиент для читабельности текста */
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.45) 30%, rgba(0,0,0,0.55) 100%);
}

.hero-video__content {
  position: relative;
  z-index: 2;
  padding-top: clamp(48px, 10vw, 96px);
  padding-bottom: clamp(32px, 8vw, 72px);
  color: #fff;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  opacity: 0.95;
  max-width: 60ch;
}

.hero-meta .badge {
  font-size: 0.85rem;
}

/* Мобильная оптимизация: более высокая затемнённость */
@media (max-width: 576px) {
  .hero-video__bg { filter: saturate(1.0) contrast(1.0) brightness(0.75); }
  .hero-video { min-height: 56vh; }
}
