{# Form stepper — visual progress indicator for multi-section forms. Contract: ~/.claude/skills/ux-architect/components/form-wizard.md (UX-018) Client-driven via dzWizard. v0.62 CSS refactor: inline Tailwind → semantic .dz-form-stepper-* classes (components/fragments.css). Active state on circle/label/connector driven by `:class="{ 'is-active': ... }"` Alpine binding — one-token swap instead of two parallel branch class strings emitting different `bg-[hsl(...)] text-[hsl(...)] border-[hsl(...)]` triples. #}
    {% for section in form.sections %}
  1. {{ section.title }} {% if not loop.last %} {% endif %}
  2. {% endfor %}