.hero {
  position: relative;
  overflow: hidden;
  padding: 128px 24px;
  color: #fff;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgb(30, 0, 46);
  opacity: 0.7;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.hero__badge {
  margin: 0 0 16px;
  color: rgb(207, 171, 226);
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.hero__heading {
  max-width: 640px;
  margin: 0 0 24px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 72px;
}

.hero__subtitle {
  max-width: 560px;
  margin: 0 0 32px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 25px;
  border-radius: 8px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.hero__actions .btn:hover {
  transform: translateY(-2px);
}

.hero__actions .btn::after {
  content: '\2192';
}

.hero__actions .btn--gradient-warm {
  background-image: linear-gradient(129.22deg, #fbac5c 0%, #ff5449 100%);
}

.hero__actions .btn--gradient-cool {
  background-image: linear-gradient(129.22deg, #7003a9 0%, #fbac5c 100%);
}

@media (max-width: 782px) {
  .hero {
    padding: 72px 20px;
  }

  .hero__heading {
    font-size: 36px;
    line-height: 44px;
  }

  .hero__subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}
