.how {
  padding: 80px 24px;
  background: var(--dark);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

.step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  color: white;
  position: relative;
  z-index: 1;
}

.step-content {
  padding-top: 6px;
}

.step-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}
