.hero {
  padding: 0;
  width: 100%;
}

.hero-swiper {
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(
      900px 320px at 18% 18%,
      rgba(222, 223, 243, 0.88),
      transparent 60%
    ),
    radial-gradient(
      700px 280px at 85% 25%,
      rgba(238, 151, 30, 0.1),
      transparent 55%
    ),
    #fff;
}

.hero-slide {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
  /* padding: 0px 0px 0px 44px;
 background: linear-gradient(135deg, #0a0a36, #101a66);*/
  color: #0a0a36;
}

.hero-content {
  max-width: 620px;
}

.hero-kicker {
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0.9;
  margin: 0 0 10px;
  color: #0a0a36;
}

.hero-title {
  font-size: 40px;
  line-height: 45px;
  margin: 0 0 14px;
  color: #1775c1;
  font-weight: 600;
  letter-spacing: -1.9;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.92;
  margin: 0 0 20px;
  color: #0a0a36;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-primary {
  background: #ee971e;
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-secondary {
  background: #1775c1;
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgb(23, 117, 193, 0.8);
}

.hero-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0.95;
  font-size: 14px;
}

.hero-points li {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(51, 62, 132);
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media img {
  width: auto;
  max-width: 565px;
  height: auto;
  transform: translateY(6px);
}

.hero-nav .swiper-button-prev,
.hero-nav .swiper-button-next {
  /*color: #ffffff;*/
  display: none;
}

.swiper-pagination-bullet {
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-slide {
    grid-template-columns: 1fr;
    padding: 28px;
    min-height: auto;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-media {
    display: none;
  }
}
span.swiper-pagination-bullet {
  background: rgba(10, 10, 54, 0.22);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    width 0.18s ease;
  border-radius: 999px;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #f28c3d;
  width: 26px;
}
