/* ═══════════════════════════════════════════
   FEATURE: PROCESS
   ═══════════════════════════════════════════ */

.process { background: var(--surface); }

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}
.process-header .section-badge { display: block; text-align: center; margin-bottom: 0.75rem; }
.process-header .section-subtitle { margin: 0 auto; text-align: center; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

/* Horizontal connector line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary) 30%, var(--primary) 70%, transparent);
}

.process-step { text-align: center; }

.step-num {
  width: 54px; height: 54px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--background);
  margin: 0 auto 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
  z-index: 1;
  transition: background 0.3s, color 0.3s;
}
.process-step:hover .step-num {
  background: var(--primary);
  color: #0F172A;
}

.process-step h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-step p  { color: var(--text-secondary); font-size: 0.83rem; line-height: 1.65; }

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
}
