/* ============================================
   Process steps ("Kako funkcioniše")
   ============================================ */

.process-head {
  max-width: 660px;
  margin-bottom: 3rem;
}

.process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.125rem;
  padding: 0.4375rem 1rem;
  border-radius: 100px;
  background-color: var(--pink-faint);
  color: var(--orange-dark);
  font-family: var(--h-font), system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}

.process-lead {
  color: var(--grey-clay);
  font-size: 1.12rem;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Dashed connector behind the numbered badges. */
.process-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange-blight) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-num {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--orange-blight);
  border-radius: 50%;
  background-color: var(--white);
  color: var(--orange-dark);
  font-family: var(--h-font), system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
}

.process-step-title {
  color: var(--blvck);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step-text {
  color: var(--grey-clay);
  font-size: 0.94rem;
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}
