function CTA({ onContact }) {
  return (
    <section className="ez-cta">
      <div className="ez-container">
        <h2>Ready to restore order?</h2>
        <p>Tell us what's getting in the way.</p>
        <div className="ez-cta-actions">
          <a href="mailto:info@ent0.com" className="ez-btn ez-btn-primary">Start a conversation</a>
          <a href="#" className="ez-btn ez-btn-outline">Download capability statement</a>
        </div>
      </div>
    </section>
  );
}
window.CTA = CTA;
