// Footer.jsx — closing CTA + footer.
function ClosingCTA() {
  return (
    <section className="cta-section">
      <div className="wrap" style={{ position: 'relative', zIndex: 1 }}>
        <div className="cta-overline">Strategic Intelligence in Motion</div>
        <h2 className="section-title">The whole is greater than the sum of its agents<span style={{ color: 'var(--accent)' }}>.</span></h2>
        <div style={{ marginTop: 8 }}>
          <a href="#console" className="cta-btn">Run the workforce again <Icons.arrowRight /></a>
        </div>
      </div>
    </section>
  );
}

function Footer() {
  return (
    <footer className="footer">
      <div className="footer-inner">
        <div className="footer-top">
          <div className="footer-brand">
            <Logo size={28} />
            <p>Enterprise AI that acts. A coordinated workforce of specialized agents delivering competitive intelligence for federal capture teams.</p>
          </div>
          <div className="footer-disclaimer">
            Demonstration only. The DISA Zero Trust Network Modernization solicitation, dollar
            figures, competitor names, and agent dialogue shown are illustrative — constructed to
            depict how the multi-agent workforce collaborates.
          </div>
        </div>
        <div className="footer-bottom">
          <p>© 2026 Stratavex. All rights reserved.</p>
          <p>Shipley-aligned · FAR / DFARS-aware · Built for GovCon</p>
        </div>
      </div>
    </footer>
  );
}
window.ClosingCTA = ClosingCTA;
window.Footer = Footer;
