/* ─── PROCESS ────────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-line { position: absolute; top: 8px; left: calc(12.5% + 8px); right: calc(12.5% + 8px); height: 1px; background: var(--border); }
.process-step { padding: 48px 28px 0; position: relative; }
.step-dot { position: absolute; top: 0; left: 28px; width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg); }
.process-step:first-child .step-dot { background: var(--accent); border-color: var(--accent); }
.step-num { font-size: 11px; letter-spacing: 0.1em; opacity: 0.25; margin-bottom: 14px; }
.step-title { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.step-desc { font-size: 14px; opacity: 0.5; line-height: 1.65; }
