/* Hero phone overlays — match live site zoom: 0.5 proportions */
.industry-hero-phone-overlay {
  zoom: 0.5;
}

/* Beauty industry hero background videos */
.industry-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-hero-media-wrap {
  transform: translateZ(0);
}

.group:hover .industry-hero-media-wrap {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .industry-hero-bg-video {
    transition: none;
  }

  .group:hover .industry-hero-media-wrap {
    transform: none;
  }
}
