/* VIDEO HERO BASE */
.video-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

/* Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.85)
  );
  z-index: 1;
}

/* Ensure content is above video */
.video-hero .container {
  position: relative;
  z-index: 2;
}

/* Headings */
.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero .highlight {
  color: #00ffd5;
}

/* Stat Cards */
.stat-card {
  position: absolute;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}

.stat-card.top-right {
  top: -20px;
  right: -20px;
}

.stat-card.bottom-left {
  bottom: -20px;
  left: -20px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}
