.how-it-works .step-item{
  position: relative;
  text-align: center;
  padding: 0 16px;
}

.step-number{
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  background: #fff;
  position: relative;
  z-index: 2;
}

/* łącząca linia między krokami — tylko na desktopie */
.steps-row{
  position: relative;
}
.steps-row::before{
  content: "";
  position: absolute;
  top: 28px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: #e2e2e2;
  z-index: 1;
}
@media (max-width: 991px){
  .steps-row::before{ display: none; }
}