/* ==========================================================================
   Steps — "Jak probíhá spolupráce" (sticky scroll, aktivní krok dle pozice)
   ========================================================================== */

.steps { padding: 96px 0; }
@media (max-width: 720px) { .steps { padding: 56px 0; } }

.steps__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: stretch;
}

.steps__sticky {
  position: sticky;
  top: calc(50vh - 120px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.steps__list {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

.step {
  position: relative;
  display: flex;
  gap: 24px;
  padding: 64px 0;
}
.step:first-child { padding-top: 0; }
.step:last-child  { padding-bottom: 0; }

.step__bar {
  flex: none;
  align-self: flex-start;
  width: 2px;
  height: 96px;
  margin-top: 6px;
  background: var(--border);
  border-radius: 2px;
  transition: background .3s ease;
}
.step--active .step__bar { background: var(--red); }

.step__body { display: flex; flex-direction: column; gap: 12px; max-width: 460px; }
.step__num { font-size: 60px; font-weight: 700; line-height: 1; color: var(--red); letter-spacing: -.025em; }
.step h3 { font-size: 20px; font-weight: 700; color: var(--heading); text-transform: uppercase; letter-spacing: -.04em; }
.step p { font-size: 16px; line-height: 26px; color: var(--text-soft); }

@media (max-width: 1280px) {
  .steps__sticky { position: static; top: auto; }
  .steps__list { padding-top: 0; gap: 48px; }
  .step { padding: 0; opacity: 1; }
}
