.home-slider{
  position: relative;
  min-height: 720px;
  border-radius: 0 0 32px 32px;
  overflow: hidden;
  background: #eef3f8;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.home-slider__track{
  position: relative;
  min-height: 720px;
}

.home-slider__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-slider__slide.is-active{
  opacity: 1;
  visibility: visible;
}

.home-slider__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.70) 42%, rgba(255,255,255,.38) 100%);
}

.home-slider__content{
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 180px 56px 120px;
}

.home-slider__eyebrow{
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #0f172a;
  opacity: .72;
}

.home-slider__title{
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: .95;
  font-weight: 800;
  letter-spacing: -.04em;
  color: #0f172a;
  text-transform: uppercase;
}

.home-slider__text{
  margin: 0;
  max-width: 640px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
  color: #334155;
}

.home-slider__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  min-width: 180px;
  padding: 16px 26px;
  border-radius: 999px;
  background: #00b4f0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 180, 240, 0.22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.home-slider__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 180, 240, 0.28);
  background: #07a8df;
}

.home-slider__dots{
  position: absolute;
  left: 56px;
  bottom: 42px;
  z-index: 3;
  display: flex;
  gap: 12px;
}

.home-slider__dot{
  width: 14px;
  height: 14px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.22);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.home-slider__dot.is-active{
  background: #00b4f0;
  transform: scale(1.15);
}

@media (max-width: 900px){
  .home-slider,
  .home-slider__track{
    min-height: 560px;
  }

  .home-slider__content{
    padding: 130px 24px 96px;
    max-width: 100%;
  }

  .home-slider__text{
    max-width: 100%;
  }

  .home-slider__dots{
    left: 24px;
    bottom: 24px;
  }
}
