.hero-banner {
  position: relative;
  width: 100%;
  height: 1007px;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-banner__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-banner__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-banner__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 1007px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-banner__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.28) 42%,
    rgba(0, 0, 0, 0.08) 100%
  );
  pointer-events: none;
}

.hero-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 200px;
  display: flex;
  align-items: center;
}

.hero-banner__content {
  max-width: 820px;
  color: #ffffff;
}

.hero-banner__tagline {
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.33;
  color: #ffffff;
}

.hero-banner__title {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.04em;
}

.hero-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 180px;
  height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  background: #004098;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}


.hero-banner__cta-icon {
  display: inline-flex;
  font-size: 18px;
  line-height: 1;
}

.hero-banner__dots {
  position: absolute;
  left: 50%;
  bottom: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-banner__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}

.hero-banner__dot.is-active {
  width: 32px;
  border-radius: 999px;
  background: #ffffff;
}

.hero-banner__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.hero-banner__arrow:hover {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-banner__arrow--prev {
  left: 40px;
}

.hero-banner__arrow--next {
  right: 40px;
}

@media (min-width: 2560px) {
  .hero-banner,
  .hero-banner__slide {
    height: 1007px;
  }

  .hero-banner__slide {
    background-size: cover;
  }
}

@media (max-width: 1600px) {
  .hero-banner,
  .hero-banner__slide {
    height: 820px;
  }

  .hero-banner__inner {
    padding: 160px 32px 0;
  }

  .hero-banner__title {
    font-size: 42px;
  }

  .hero-banner__tagline {
    font-size: 15px;
  }

  .hero-banner__arrow--prev {
    left: 24px;
  }

  .hero-banner__arrow--next {
    right: 24px;
  }
}

@media (max-width: 1024px) {
  .hero-banner,
  .hero-banner__slide {
    height: 640px;
  }

  .hero-banner__inner {
    padding: 140px 24px 0;
  }

  .hero-banner__content {
    max-width: 640px;
  }

  .hero-banner__title {
    margin-bottom: 24px;
    font-size: 36px;
  }

  .hero-banner__tagline {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .hero-banner__cta {
    min-width: 160px;
    height: 52px;
    padding: 0 24px;
    font-size: 15px;
  }

  .hero-banner__dots {
    bottom: 32px;
  }

  .hero-banner__arrow {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }

  .hero-banner__arrow--prev {
    left: 16px;
  }

  .hero-banner__arrow--next {
    right: 16px;
  }
}

@media (max-width: 768px) {
  .hero-banner,
  .hero-banner__slide {
    height: 520px;
  }

  .hero-banner__inner {
    padding: 120px 16px 0;
  }

  .hero-banner__title {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.35;
  }

  .hero-banner__tagline {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .hero-banner__cta {
    min-width: 140px;
    height: 48px;
    padding: 0 20px;
    font-size: 14px;
  }

  .hero-banner__arrow {
    display: none;
  }

  .hero-banner__dots {
    bottom: 24px;
    gap: 8px;
  }
}
