/* ─── Process ─────────────────────────────────────────── */
.process {
  background: var(--navy-deep);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.process-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
}
.process-rail::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 36px;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,.08), rgba(235,95,53,.4), rgba(255,255,255,.08));
}
.step {
  position: relative;
  padding-top: 64px;
}
.step::before {
  content: "";
  position: absolute;
  top: 30px; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 1.5px solid var(--orange);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.step.active::before { background: var(--orange); transform: scale(1.2); }
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--orange);
  margin-bottom: 8px;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
}
@media (max-width: 800px) {
  .process-rail { grid-template-columns: 1fr; gap: 32px; }
  .process-rail::before { display: none; }
  .step { padding-top: 0; padding-left: 32px; border-left: 1px solid rgba(255,255,255,.08); }
  .step::before { left: -7px; top: 6px; }
}
