.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.4);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 var(--container-padding);
  max-width: 800px;
}

.hero__title {
  font-family: var(--font-logo);
  font-size: var(--font-size-hero);
  font-weight: 800;
  line-height: var(--line-height-heading);
  margin-bottom: var(--space-lg);
  letter-spacing: 6px;
}

.hero__subtitle {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-normal);
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.hero__indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
  z-index: 10;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero__dot.active {
  background: var(--color-white);
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Slide fallback backgrounds (shown while SVG loads) */
.hero__slide--1 {
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 50%, #2563eb 100%);
}

.hero__slide--2 {
  background: linear-gradient(135deg, #0f2849 0%, #1d4ed8 50%, #60a5fa 100%);
}

.hero__slide--3 {
  background: linear-gradient(135deg, #0c1e3d 0%, #1e40af 50%, #3b82f6 100%);
}

@media (max-width: 768px) {
  .hero {
    min-height: 400px;
    max-height: 600px;
  }

  .hero__title {
    font-size: var(--font-size-2xl);
    letter-spacing: 2px;
  }

  .hero__subtitle {
    font-size: var(--font-size-lg);
  }

  .hero__indicators {
    bottom: 24px;
  }
}
