.usp-wrapper {
  overflow: hidden;
  position: relative;
  text-align: center;
  font-size: 16px!important;
  font-weight: 400!important;
}

/* Slider */
.usp-slider {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  touch-action: pan-y;
}

/* Slide */
.usp-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 10px 0 !important;
}

.usp-slide img {
  height: 40px;
}

/* Item (2 per slide) */
.usp-item {
  flex: 1;
  display: flex;
  flex-direction: column; /* icon over text */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  text-decoration: none !important;
  color: #1A1D56 !important;
  gap: 6px;
  position: relative;
}

/* Divider between items */
.usp-item:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0,0,0,0.1);
}

/* Icon inside item */
.usp-item img {
  height: 26px;
  margin-bottom: 2px;
}

/* Text inside item */
.usp-item span {
  font-size: 13px;
  line-height: 1.3;
  max-width: 140px;
}

/* Progress bar */
.usp-progress {
  height: 2px;
 /* background: #eee; */
}

.usp-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    #903B8D 33%,
    #134486 66%,
    #B0DEF2 100%
  );
  will-change: width;
  border-radius: 25px;
}

/* Dots */
.usp-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
}

.usp-dot {
  width: 6px;
  height: 6px;
  background: #c9d1d9;
  border-radius: 50%;
  cursor: pointer;
}

.usp-dot.active {
  background: #1A1D56;
}

/* Mobile */
@media (max-width:768px){
  .usp-wrapper { font-size:14px; }
  .usp-slide img { height:24px; }
  .usp-slide {
    flex-direction: row; /* keep side-by-side on mobile */
  }

  .usp-item {
    padding: 8px 6px;
  }

  .usp-item img {
    height: 22px;
  }

  .usp-item span {
    font-size: 12px;
    max-width: 110px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .usp-slider { transition:none; }
}
