/* Hero — mpbg.mp4 arka plan videosu */
.hero-video {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-video__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(26, 35, 50, 0.55) 45%,
    rgba(15, 23, 42, 0.35) 100%
  );
  pointer-events: none;
}

.hero-video__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
  max-width: 640px;
}

.hero-video__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hero-video h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.12;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-video__lead {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-video__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 700px) {
  .hero-video {
    min-height: min(75vh, 560px);
  }

  .hero-video__content {
    padding: 3rem 0 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video__media {
    display: none;
  }

  .hero-video {
    background: linear-gradient(155deg, #0f172a 0%, #1e293b 50%, #1a2332 100%);
  }
}
