.new-stepper {
  position: fixed;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  padding: 20px 0;
}

.new-stepper__title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 30px;
  white-space: nowrap;
  mix-blend-mode: difference;
}

.new-stepper__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.new-stepper__item {
  position: relative;
  margin-bottom: 40px;
}

.new-stepper__item:last-child {
  margin-bottom: 0;
}

.new-stepper__link {
  display: block;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.new-stepper__line {
  height: 2px;
  width: 40px;
  background-color: #fff;
  transition: width 0.4s ease;
  margin-bottom: 8px;
  mix-blend-mode: difference;
}

.new-stepper__label {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding-left: 0;
  mix-blend-mode: difference;
}

/* Active state */
.new-stepper__item--active .new-stepper__line {
  width: 100px;
}

.new-stepper__item--active .new-stepper__label {
  opacity: 1;
  visibility: visible;
}

/* Hover state for non-active items */
.new-stepper__item:hover:not(.new-stepper__item--active) .new-stepper__line {
  width: 70px;
}

.new-stepper__item:hover:not(.new-stepper__item--active) .new-stepper__label {
  opacity: 0.7;
  visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
  .new-stepper {
    display: none;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .new-stepper {
    left: 20px;
  }

  .new-stepper__title {
    font-size: 18px;
  }

  .new-stepper__item--active .new-stepper__line {
    width: 80px;
  }

  .new-stepper__label {
    font-size: 14px;
  }
}
