.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 12%;
  color: #fff;
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.1;
}

.hero-content p {
  margin-top: 16px;
  font-size: 24px;
  opacity: 0.9;
}

.hero-btn {
  margin-top: 28px;
  display: inline-block;
  padding: 16px 42px;
  border-radius: 14px;
  background: linear-gradient(135deg,#6a11cb,#2575fc);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
