/* ============ PROCESS TIMELINE ============ */
.process-track{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;position:relative}
.process-track::before{content:'';position:absolute;top:36px;left:12.5%;right:12.5%;height:2px;background:var(--line);z-index:0}
.pstep{position:relative;z-index:1;text-align:center;display:flex;flex-direction:column;align-items:center;gap:1.1rem}
.pstep .num{width:72px;height:72px;border-radius:50%;background:var(--paper);border:2px solid var(--blue);color:var(--blue);display:flex;align-items:center;justify-content:center;font-weight:800;font-size:1.3rem;box-shadow:var(--shadow-sm)}
.pstep:nth-child(2) .num,.pstep:nth-child(4) .num{border-color:var(--orange);color:var(--orange-deep)}
.pstep h3{font-size:1.05rem}
.pstep p{font-size:.86rem;color:var(--slate);max-width:210px}
@media (max-width:820px){
  .process-track{grid-template-columns:1fr;gap:2.2rem}
  .process-track::before{left:36px;right:auto;top:0;bottom:0;width:2px;height:auto}
  .pstep{flex-direction:row;text-align:left}
  .pstep p{max-width:none}
}
