/* ============================================
   PROCESS
   ============================================ */

.process-section {
  padding: 120px 80px;
  background: transparent;
}

.process-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.process-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  color: var(--white);
  margin-bottom: 80px;
}

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

/* Connecting SVG line */
.process-line {
  display: none;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
}

.step-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
}

.step-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.step-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--grey);
  line-height: 1.6;
}

/* Process graphic placeholder */
.process-graphic {
  margin-top: 80px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-graphic::after {
  content: 'PROCESS GRAPHIC';
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.1);
}
