// Final CTA + Footer
function FinalCTASection({ ctaPrimary }) {
  return (
    <section className="section final-cta bg-soft-final" id="contact">
      <div className="section__bg">
        <div className="orb orb-gold" />
        <div className="orb orb-teal" />
      </div>
      <div className="section__inner">
        <div className="final-cta__inner fade-up">
          <h2>Let's talk about your <span className="gradient-text">education work.</span></h2>
          <p>Free 30-minute consultation. We'll listen, ask sharp questions, and tell you whether we're the right fit. No pitch deck.</p>
          <a href="https://jira-b2c0c.web.app/book/1-1-6c9edd37" target="_blank" rel="noopener noreferrer" className="ll-btn ll-btn--cta ll-btn--xl">
            {ctaPrimary || "Book a Call"} <span className="arr">→</span>
          </a>
        </div>
      </div>
    </section>
  );
}

function FooterSection() {
  return (
    <footer className="footer">
      <div className="footer__inner">
        <div className="footer__brand">
          <img src="assets/learnlytx-logo.svg?v=2" alt="LearnLytx" />
          <p>LearnLytx</p>
        </div>
        <p className="footer__copy">© {new Date().getFullYear()} LearnLytx, Education consulting. Founded by Heath Rutledge-Jukes & William Kelly.</p>
      </div>
    </footer>
  );
}

window.FinalCTASection = FinalCTASection;
window.FooterSection = FooterSection;
