/* ==========================================================================
   Hero — full-bleed banner slider, left-aligned content, dot/arrow controls
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 640px;
  height: 82vh;
  max-height: 780px;
  margin-top: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__slides { position: absolute; inset: 0; }

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
  z-index: 0;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(8,11,32,.93) 0%, rgba(8,11,32,.82) 32%, rgba(8,11,32,.5) 60%, rgba(8,11,32,.18) 85%),
    linear-gradient(0deg, rgba(8,11,32,.35), rgba(8,11,32,.05) 40%);
}

.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__content {
  max-width: 620px;
  transition: opacity .22s ease;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--clr-accent-400);
  margin-bottom: 24px;
}
.hero__badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--clr-accent-500);
  box-shadow: 0 0 0 4px rgba(255,176,32,.25);
}

.hero__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
  min-height: 2.3em;
}

.hero__subtitle {
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
  margin-bottom: 34px;
  min-height: 4.5em;
}

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

.hero__btn { box-shadow: 0 16px 34px -6px rgba(0,0,0,.45); }

.hero__btn-outline {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  backdrop-filter: blur(6px);
}
.hero__btn-outline:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

/* Controls: arrows + dots pinned near the bottom */
.hero__controls {
  position: absolute;
  left: 0; right: 0; bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero__arrow {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
  color: #fff;
  transition: all .2s ease;
}
.hero__arrow svg { width: 16px; height: 16px; }
.hero__arrow:hover { background: var(--grad-primary); border-color: transparent; transform: scale(1.06); }

.hero__dots { display: flex; align-items: center; gap: 10px; cursor: pointer; }

.hero__dot-indicator {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all .25s ease;
}
.hero__dot-indicator:hover { background: rgba(255,255,255,.6); }
.hero__dot-indicator.is-active {
  width: 26px;
  border-radius: var(--r-pill);
  background: var(--grad-accent);
}