.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero__slide.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 14, 26, 0.6) 0%,
    rgba(10, 22, 40, 0.75) 50%,
    rgba(10, 22, 40, 0.85) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--header-h);
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: var(--ls-wide);
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__slogan {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-white);
  font-weight: var(--fw-medium);
  font-style: italic;
  margin-bottom: 8px;
}

.hero__highlight {
  color: var(--color-accent);
  font-weight: var(--fw-bold);
}

.hero__desc {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.hero__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero .wave-divider {
  z-index: 2;
}
