/* ── How It Works steps ── */
.how-steps { display: flex; flex-direction: column; gap: 20px; }
.how-step { display: flex; gap: 16px; align-items: flex-start; }
.how-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: #1F6F79; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.how-step h3 { font-size: 15px; font-weight: 600; color: #1a1a1a; margin-bottom: 4px; }
.how-step p { font-size: 14px; color: #6b7280; line-height: 1.5; }
.how-step p a { color: #1F6F79; font-weight: 500; }
.how-note {
  margin-top: 4px; font-size: 13px; color: #6b7280;
  padding-top: 16px; border-top: 1px solid #e5e7eb;
}

@media (max-width: 640px) {
  .how-step { gap: 12px; }
}
