<% const statItems = typeof items !== 'undefined' && Array.isArray(items) ? items : []; %>
<% const colClass = statItems.length <= 2 ? 'grid-cols-2' : (statItems.length === 3 ? 'grid-cols-3' : 'grid-cols-2 md:grid-cols-4'); %>
<section class="py-12 px-6 bg-white border-b border-gray-100">
  <div class="max-w-4xl mx-auto grid <%= colClass %> gap-8 text-center">
    <% statItems.forEach(function(item) { %>
    <div>
      <p class="text-3xl font-black" style="color:<%= item.color || '#8065f8' %>"><%= item.value %></p>
      <p class="text-xs text-gray-500 mt-1"><%= item.label %></p>
    </div>
    <% }); %>
  </div>
</section>
