/* ===== REFER PAGE — supplements quote.css ===== */

/* Form header intro line */
.r-form-intro {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}

/* "How it works" numbered steps in the sidebar */
.r-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 20px;
  padding: 0;
}
.r-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.r-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: var(--amber);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.82rem;
  border-radius: 50%;
}
.r-steps strong {
  display: block;
  color: var(--text-white);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.r-steps p {
  font-size: 0.82rem;
  color: var(--text-sub);
  line-height: 1.5;
  margin: 0;
}

/* On tablet the sidebar splits into 2 columns (see quote.css); let the
   steps card span the full width so the numbered list stays readable. */
@media (max-width: 960px) {
  .q-sidebar .q-info-card { grid-column: 1 / -1; }
}
