.process-section {
  padding: 80px 48px;
  background: var(--bg-light);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.process-inner { max-width: 900px; margin: 0 auto; position: relative; }
.process-header { margin-bottom: 48px; }
.process-header .kicker { color: var(--text-dim); }

.process-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text);
}

/* ── Phase list ── */

.phase-list {
  display: flex;
  flex-direction: column;
}

.phase-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  opacity: 0;
  transform: translateY(16px);
}

.phase-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.phase-number {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.phase-icon {
  width: 56px;
  height: 64px;
  opacity: 0.6;
}

.phase-meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}

.phase-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}

.phase-weeks {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 1px;
}

.phase-body {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 10px;
}

.phase-deliverable {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.6;
}

.phase-deliverable strong {
  color: var(--gold);
  font-weight: 400;
  margin-right: 4px;
}

.phase-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(218, 165, 32, 0.15), transparent);
  margin-left: 112px;
}
