.step-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #bbb; margin-bottom: 20px;
}

.step.hidden { display: none; }

.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.btn-back {
  width: 100%; padding: 12px; margin-top: 10px; border-radius: 12px;
  border: 1.5px solid #e4e3df; background: transparent;
  font-size: 0.85rem; font-weight: 600; color: #999;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all .15s; text-align: center;
}
.btn-back:hover { border-color: #bbb; color: #555; }

.footer-note a.link {
  color: #1a1a1a; font-weight: 600; text-decoration: none;
}
.footer-note a.link:hover { text-decoration: underline; }

/* Progress bar */
.step-progress {
  display: flex; gap: 6px; margin-bottom: 28px;
}
.step-dot {
  flex: 1; height: 3px; border-radius: 3px; background: #e4e3df;
  transition: background .3s;
}
.step-dot.active { background: #1a1a1a; }
