.workflow-timeline {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.workflow-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

/* Заголовок */
.workflow-title {
  font-size: 27px;
  margin-bottom: 50px;
  color: #1a1a1a;
}

/* Контейнер таймлайна */
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: flex-start;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 32px; /* по центру кружков */
  left: 5%;
  right: 5%;
  height: 4px;
  background: #e0e4ef;
  z-index: 1;
}

/* Элемент таймлайна */
.timeline-item {
  position: relative;
  width: 22%;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.timeline-item:hover {
  transform: translateY(-10px);
}

/* Кружок с номером */
.circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0c2090;
  line-height: 64px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  margin: 0 auto;
  transition: background 0.3s ease, color 0.3s ease;
}
.timeline-item:hover .circle {
  background: #0056d2;
  color: #fff;
}

/* Контент шага */
.tl-content {
  margin-top: 15px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.timeline-item:hover .tl-content {
  opacity: 1;
}
.tl-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1a1a1a;
}
.tl-content p {
  font-size: 14px;
  color: #555555;
  line-height: 1.4;
}

/* Адаптив: вертикальный список на мобилках */
@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }
  .timeline::before {
    display: none;
  }
  .timeline-item {
    width: 100%;
    margin-bottom: 40px;
  }
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  .tl-content {
    max-width: 600px;
    margin: 10px auto 0;
  }
}