.hero {
  position: relative;
  background-color: #0D1B3E;
  min-height: 753px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.hero__backdrop-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__backdrop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 27, 62, 0.95) 0%, rgba(13, 27, 62, 0.85) 45%, rgba(7, 26, 54, 0.6) 100%);
}

.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.hero__main {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-top: 138px;
  padding-bottom: 96px;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 584px) 1fr;
  align-items: stretch;
  gap: 32px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0ea5e9;
  opacity: 0.96;
  flex-shrink: 0;
}

.hero__badge-label {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.1504px;
}

.hero__heading {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.2637px;
  margin-bottom: 24px;
}

.hero__description {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  max-width: 584px;
}

.hero__actions {
  display: flex;
  margin-top: 20px;
  align-items: center;
  gap: 16px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 32px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3125px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.hero__btn--primary {
  background-color: #0ea5e9;
  border: none;
  color: #ffffff;
}
.hero__btn--primary:hover {
  background-color: #0284c7;
}
.hero__btn--secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.hero__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero__btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero__media {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-height: 0;
  height: 100%;
}

.hero__media-img {
  display: block;
  width: 100%;
  max-width: 700px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}

.hero__media--slider {
  width: 100%;
  justify-content: flex-end;
}

.hero__slider {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 100%;
  min-height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.hero__slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease-in-out;
  pointer-events: none;
}
.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero__slide-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.hero__slider-arrow:hover, .hero__slider-arrow:focus-visible {
  background-color: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}
.hero__slider-arrow--prev {
  left: 16px;
}
.hero__slider-arrow--next {
  right: 16px;
}

.hero__slider-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 100px;
}

.hero__slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease, width 0.2s ease;
}
.hero__slider-dot.is-active {
  background-color: #ffffff;
  width: 20px;
  border-radius: 100px;
}
.hero__slider-dot:hover:not(.is-active) {
  background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1280px) {
  .hero__layout {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
  }
  .hero__heading {
    font-size: 48px;
  }
  .hero__layout {
    grid-template-columns: 1fr;
  }
  .hero__media {
    justify-content: center;
    align-items: center;
    order: -1;
    height: auto;
  }
  .hero__media-img {
    max-width: 100%;
    max-height: 340px;
    height: auto;
  }
  .hero__slider {
    height: auto;
    min-height: 0;
    aspect-ratio: 700/466;
  }
  .hero__main {
    padding-top: 102px;
    padding-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .hero__heading {
    font-size: 40px;
  }
  .hero__description {
    font-size: 16px;
    max-width: 100%;
  }
  .hero__actions {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero__btn {
    font-size: 16px;
    padding: 0 24px;
  }
  .hero__main {
    padding-top: 102px;
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .hero__heading {
    font-size: 36px;
  }
  .hero__btn {
    width: 100%;
    justify-content: center;
  }
  .hero__media {
    display: none;
  }
}