/* ── SITE FOOTER ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: var(--sp-2xl) var(--sp-xl) var(--sp-xl);
  margin-top: var(--sp-2xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  max-width: 1100px;
}
.footer-heading {
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-md);
}
.footer-steps {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.footer-steps li {
  counter-increment: step;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  gap: var(--sp-sm);
}
.footer-steps li::before {
  content: counter(step);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-hover);
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-lines {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.footer-lines a {
  color: var(--text);
  transition: color var(--transition);
}
.footer-lines a:hover { color: var(--accent-hover); }
.footer-note {
  margin-top: var(--sp-xl);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-footer { padding: var(--sp-xl) var(--sp-lg); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
}
@media (max-width: 600px) {
  /* keep clear of the fixed mobile CTA bar */
  .site-footer { padding-bottom: 96px; }
}
