/* ==========================================================================
   pages/onboarding.css — multi-step wizard (Add Client flow)
   .stb=step-bar, .sti=step-item, .stc=step-circle, .stl=connector,
   .stp=step-panel, .stt=title, .std=description, .sn=nav row.
   ========================================================================== */

.stb {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.sti {
  display: flex;
  align-items: center;
  flex: 1;
}

.stc {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-m);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fm);
  font-size: 11px;
  color: var(--text-d);
  flex-shrink: 0;
  transition: all 0.3s;
}

.stc.active {
  border-color: var(--accent);
  color: var(--accent);
}

.stc.done {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.stl {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 5px;
}

.stl.done {
  background: var(--green);
}

.stp {
  display: none;
}

.stp.active {
  display: block;
}

.stt {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.std {
  color: var(--text-m);
  font-size: 14px;
  margin-bottom: 24px;
}

.sn {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  justify-content: flex-end;
}
