<section class="py-20 px-6 bg-white">
  <div class="max-w-3xl mx-auto">
    <div class="rounded-3xl p-10 text-center border border-gray-100" style="background:linear-gradient(135deg,rgba(128,101,248,.06) 0%,rgba(68,144,211,.06) 100%)">
      <% if (typeof title !== 'undefined' && title) { %>
      <h2 class="text-2xl md:text-3xl font-extrabold text-navy mb-3"><%= title %></h2>
      <% } %>
      <% if (typeof subtitle !== 'undefined' && subtitle) { %>
      <p class="text-gray-500 text-sm leading-relaxed mb-8 max-w-lg mx-auto"><%= subtitle %></p>
      <% } %>
      <div class="flex gap-3 justify-center flex-wrap">
        <% if (typeof primaryHref !== 'undefined' && primaryHref) { %>
        <a href="<%= primaryHref %>" class="inline-flex items-center gap-2 px-6 py-3 rounded-xl text-sm font-bold text-white no-underline"
           style="background:linear-gradient(135deg,#8065f8,#4490d3);box-shadow:0 8px 24px rgba(128,101,248,.35)"><%= typeof primaryLabel !== 'undefined' ? primaryLabel : 'Get started' %></a>
        <% } %>
        <% if (typeof secondaryHref !== 'undefined' && secondaryHref) { %>
        <a href="<%= secondaryHref %>" class="inline-flex items-center px-6 py-3 rounded-xl text-sm font-semibold text-navy no-underline border border-gray-200 bg-white hover:bg-gray-50"><%= typeof secondaryLabel !== 'undefined' ? secondaryLabel : 'Learn more' %></a>
        <% } %>
      </div>
    </div>
  </div>
</section>
