// Footer.jsx — MSO footer
function MsoFooter() {
  const year = new Date().getFullYear();
  return (
    <footer className="footer">
      <div className="container">
        <div className="footer__grid">
          <div className="footer__brand">
            <img src="assets/AltaPath_MSO_HexPath_Light.svg" alt="AltaPath Management Services" />
            <p className="footer__about">
              AltaPath Management Services is the management services
              organization (MSO) within the AltaPath platform &mdash;
              running back-office operations for independently led
              laboratories.
            </p>
          </div>
          <div className="footer__col">
            <h4>Services</h4>
            <ul>
              <li><a href="#services">Service catalog</a></li>
              <li><a href="#engage">How we engage</a></li>
              <li><a href="#metrics">Performance</a></li>
              <li><a href="#compliance">Compliance</a></li>
            </ul>
          </div>
          <div className="footer__col">
            <h4>Contact</h4>
            <ul>
              <li><a href="#contact">Laboratory operators</a></li>
              <li><a href="#contact">Health systems & payers</a></li>
              <li><a href="#faq">FAQ</a></li>
            </ul>
          </div>
          <div className="footer__col">
            <h4>Parent</h4>
            <ul>
              <li><a href="https://altapath.health" target="_blank" rel="noopener">altapath.health →</a></li>
              <li>Delaware, USA</li>
              <li>hello@altapath.health</li>
            </ul>
          </div>
        </div>
        <div className="footer__rule" />
        <div className="footer__legal">
          <span>© {year} ALTAPATH MANAGEMENT SERVICES LLC · ALL RIGHTS RESERVED</span>
          <span>A SUBSIDIARY OF ALTAPATH INC</span>
        </div>
      </div>
    </footer>
  );
}

Object.assign(window, { MsoFooter });
