#s6 {
  background: #0d0d0d;
}

.s6-row {
  align-items: center;
}

.s6-desc {
  font-size: clamp(13px, 1vw, 16px);
  color: rgba(240, 240, 240, 0.55);
  line-height: 1.75;
  margin-top: 1.5rem;
}

.s6-desc-sub {
  margin-top: 1rem;
  color: rgba(240, 240, 240, 0.35);
  font-style: italic;
}

/* =====================
   TIMELINE
   ===================== */
.s6-timeline {
  display: flex;
  flex-direction: column;
  padding-left: 2vw;
}

.s6-step {
  display: flex;
  gap: 0;
  position: relative;
  align-items: flex-start;
}

.s6-step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
  z-index: 2;
}

.s6-step-line {
  position: absolute;
  left: 5px;
  top: 18px;
  width: 2px;
  bottom: 0;
  background: rgba(255, 106, 0, 0.2);
  z-index: 1;
}

.s6-step-last .s6-step-line {
  display: none;
}

.s6-step-content {
  padding: 0 0 32px 24px;
  flex: 1;
}

.s6-step-num {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}

.s6-step-title {
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 8px;
  margin-top: 0;
  text-transform: uppercase;
  line-height: 1;
}

.s6-step-desc {
  font-size: clamp(12px, 0.9vw, 14px);
  color: rgba(240, 240, 240, 0.5);
  line-height: 1.7;
}

.s6-step-last .s6-step-content {
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .s6-timeline {
    padding-left: 0;
    margin-top: 2rem;
  }
}
