/* Ako to funguje */
.process-timeline { display: grid; max-width: 960px; }
.process-step { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 20px; padding-bottom: 36px; }
.process-step:not(:last-child)::before { position: absolute; top: 56px; bottom: 0; left: 25px; width: 2px; background: var(--border); content: ""; }
.process-step__number { display: inline-flex; width: 52px; height: 52px; align-items: center; justify-content: center; border-radius: 50%; background: #10233f; color: var(--accent); font-family: var(--font-display); font-size: .85rem; font-weight: 700; }
.process-step__body { border: 1px solid var(--border); border-radius: var(--radius-md); padding: clamp(20px, 3vw, 30px); background: var(--surface); box-shadow: var(--shadow-sm); }
.process-step__body h3 { margin-bottom: 8px; font-size: 1.18rem; }
.process-step__body p { max-width: 68ch; color: var(--ink-soft); font-size: .94rem; }
@media (min-width: 860px) {
  .process-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: none; }
  .process-step { display: block; padding: 0; }
  .process-step::before { display: none; }
  .process-step__number { margin-bottom: -14px; margin-left: 24px; position: relative; z-index: 1; }
  .process-step__body { min-height: 190px; padding-top: 34px; }
}

.roles-grid { display: grid; gap: 18px; }
.role-card { border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-xl); padding: clamp(24px, 4vw, 40px); background: rgba(255,255,255,.055); }
.role-card h3 { margin-bottom: 20px; color: #fff; font-size: 1.35rem; }
@media (min-width: 820px) { .roles-grid { grid-template-columns: repeat(2, 1fr); } }

.process-note { display: flex; gap: 18px; align-items: flex-start; border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border)); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 36px); background: color-mix(in srgb, var(--accent) 9%, var(--surface)); }
.process-note__icon { flex: 0 0 auto; color: var(--accent-dark); }
.process-note h2 { margin-bottom: 8px; font-size: 1.25rem; }
.process-note p { color: var(--ink-soft); }
