/* ============================================
   PROCESS
   ============================================ */
.steps { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--line);
}
.step { padding-right: 28px; position: relative; }
.step-marker {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ocean);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 20px; font-weight: 500; margin-bottom: 10px; color: var(--text); }
.step p { color: var(--text-soft); font-size: 14.5px; }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .steps::before { display: none; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}
