.purchase-steps {
  position: relative;
}

.progress {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

/* Лінія по центру між кроками */
.scroll-appearance:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 0;
  height: calc(100% - 50px);
  width: 6px;
  background: var(--chinazes-color);
}

.progress li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 50px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.progress li.visible {
  opacity: 1;
  transform: translateY(0);
}

.progress__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.progress__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: #fff;
}

.progress__text {
  max-width: 600px;
  padding: 15px;
  border-radius: 30px;
  background: #232628;
  box-shadow: 11px 13px 9px rgba(0, 0, 0, 0.15);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.08em;
  color: #fff;
}

.progress__text span {
  color: #7a7f81;
}

.progress__title-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

/* Мобільна версія (до 767px) */
@media (max-width: 767px) {
  .progress__title-text {
    display: block;
  }

  .progress__title {
    font-size: 32px;
  }
}
