/* ══════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════ */

.howitworks {
  background: var(--off);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.step:first-child .step-circle,
.step:last-child .step-circle {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.step-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.step-sub {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}
