/* ═══════════════════════════════════════════════════════════════
   PROCESS — 4-step horizontal flow on light grey background
═══════════════════════════════════════════════════════════════ */

#process { background: var(--bg2); }
.proc-header { text-align: center; max-width: 560px; margin: 0 auto; }
.proc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
}
.proc-steps::before {
  content: '';
  position: absolute;
  top: 26px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--border);
}
.pstep { padding: 24px 16px; text-align: center; position: relative; }
.snum {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 800;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--muted);
  transition: background .2s, color .2s, border-color .2s;
}
.pstep:hover .snum {
  background: var(--navy);
  color: var(--gold2);
  border-color: var(--navy);
}
.stitle { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.sdesc2 { font-size: 13px; color: var(--text2); line-height: 1.55; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .proc-steps         { grid-template-columns: 1fr 1fr; }
  .proc-steps::before { display: none; }
}
@media (max-width: 768px) {
  .proc-steps { grid-template-columns: 1fr; gap: 8px; margin-top: 28px; }
  .pstep      { padding: 16px 14px; display: flex; align-items: flex-start; gap: 14px; text-align: left; }
  .snum       { width: 44px; height: 44px; font-size: 16px; flex-shrink: 0; margin: 0; }
}
