.process { padding: var(--section-pad) 0; background: var(--c-off-white); }
.process__title { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process__steps::before { content: ''; position: absolute; top: 32px; left: calc(12.5% + 16px); right: calc(12.5% + 16px); height: 1px; background: var(--c-card-light-border); }
.process__step { text-align: center; padding: 0 clamp(8px, 1.5vw, 16px); }
.process__number {
  width: 48px; height: 48px; border-radius: 50%; background: var(--c-white); border: 1px solid var(--c-card-light-border);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  font-family: var(--font-en); font-size: 16px; font-weight: var(--fw-semi); color: var(--c-steel); position: relative; z-index: 1;
}
.process__step-title { font-size: 15px; font-weight: var(--fw-semi); margin-bottom: 8px; }
.process__step-desc { font-size: 13px; line-height: 1.7; color: var(--c-text-on-light-sub); }
.process__step-time { font-size: 12px; color: var(--c-steel); margin-top: 8px; font-family: var(--font-en); }
