/* Hero: video + form overlay */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.hero-overlay {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1100px;
  padding: 3rem 1.25rem 4rem;
  display: flex;
  justify-content: center;
}

.hero-form-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-form-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* Responsive tweaks */
@media (max-width: 800px) {   /* @media (max-width: 600px) is for mobile phones screens - @media (max-width: 1100px) for desktop screens */
  .hero-overlay { justify-content: center; padding-top: 4rem; }  
  .hero { min-height: 80vh; }
}