{# Visual step indicator for multi-step flows — pure Tailwind (cycle 251). Parameters: steps (list of {label: str}), current_step (int, 1-based) #} {% set current = current_step | default(1) %}
    {% for step in steps %}
  1. {{ loop.index }} {{ step.label }}
    {% if not loop.last %}
    {% endif %}
  2. {% endfor %}