.order-flow-section {
  background-size: cover;
  background-position: center;
  min-height: 420px;
}

.order-flow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 60, 65, 0.92) 0%, rgba(15, 80, 88, 0.75) 60%, rgba(15, 80, 88, 0.4) 100%);
  z-index: 0;
}

.order-flow-section > .position-relative {
  z-index: 1;
}

.order-flow__eyebrow {
  color: #00D5E4;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.order-flow__cim {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.order-flow__alcim {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 600px;
}

.order-flow__steps {
  overflow-x: auto;
  padding-bottom: 8px;
}

.order-flow__step {
  flex-shrink: 0;
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.order-flow__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.order-flow__icon svg{
    stroke-width: 2;
    width: 3rem;
    height: 3rem;
}

.order-flow__arrow {
  flex: 1;
  min-width: 30px;
  display: flex;
  align-items: center;
  margin: 42px 10px 0 10px;
  position: relative;
}

.order-flow__arrow span {
  width: 100%;
  border-top: 2px dashed #00D5E4;
  position: relative;
}

.order-flow__arrow span::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -5px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #00D5E4;
  border-right: 2px solid #00D5E4;
  transform: rotate(45deg);
}

.order-flow__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #00D5E4;
  color: #03373B;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 4px;
  margin-right: 4px;
}

.order-flow__label {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  flex-direction: column;
}

@media (max-width: 991.98px) {
  .order-flow__steps {
    justify-content: flex-start;
  }
}
