.s-steps {
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: var(--c-bg, #F7F7F5);
}

.s-steps__track {
  display: flex;
  align-items: stretch;
  height: 100%;
  width: max-content;
}

.s-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  flex-shrink: 0;
  width: clamp(480px, 52vw, 680px);
  height: 100%;
  padding: 80px 72px;
  border-right: 1px solid var(--c-border);
}

.s-step:first-child { padding-left: 80px; }

.s-step__top { display: flex; align-items: baseline; gap: 24px; }

.s-step__num {
  font-family: var(--f-nohemi);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 200;
  letter-spacing: -.02em;
  color: rgba(0,0,0,.1);
  line-height: 1;
  flex-shrink: 0;
}

.s-step__name {
  font-family: var(--f-neue);
  font-size: clamp(1.4rem, 2.2vw, var(--fs-h3));
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--c-black);
}

.s-step__subtitle {
  font-family: var(--f-aeonik);
  font-size: clamp(1rem, 1.4vw, var(--fs-h5));
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.25;
  color: var(--c-black);
}

.s-step__p {
  font-family: var(--f-aeonik);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-grey);
  line-height: 1.8;
  max-width: 480px;
}

.s-step__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.s-step__list li {
  font-family: var(--f-aeonik);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-grey);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.s-step__list li::before { content: '·'; position: absolute; left: 0; color: var(--c-muted); }

@media (max-width: 768px) {
  .s-steps {
    height: auto;
    overflow: visible;
  }
  .s-steps__track {
    flex-direction: column;
    width: 100%;
  }
  .s-step {
    width: 100%;
    padding: 48px 24px;
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    gap: 20px;
  }
  .s-step:first-child { padding-left: 24px; }
}
