// Faq.jsx
function MsoFaq() {
  const qa = [
    {
      q: "Does AltaPath Management Services practice medicine?",
      a: "No. The MSO provides administrative, operational, and technical services. Clinical decisions, signing of pathology reports, and the practice of medicine remain entirely with the laboratory and its credentialed clinicians. The MSO operates under management services agreements that are designed around the corporate-practice-of-medicine boundaries in every state we operate in.",
    },
    {
      q: "Do laboratories have to be acquired by AltaPath to use the MSO?",
      a: "No. À la carte and full-stack engagements are available without any equity transaction. The MSO is happy to operate as a vendor — many of our laboratories begin that way before any conversation about deeper integration.",
    },
    {
      q: "How does the MSO interact with our existing LIS, EHR partners, and referring physicians?",
      a: "We bring a vetted technology stack but we expect to integrate with what's already in the field — most importantly, the EHR systems your referring clinicians use to order tests and receive reports. Migrations, where they happen, are scheduled around the laboratory's clinical calendar, not ours.",
    },
    {
      q: "What is the relationship to AltaPath Inc?",
      a: "AltaPath Management Services LLC is a wholly-owned subsidiary of AltaPath Inc, the Delaware C-Corporation that holds the platform. The MSO is one of several entities under the parent — sister entities handle clinical operations and real estate, each capitalized for its specific role.",
    },
    {
      q: "Where do you operate?",
      a: "Multi-state with a southeastern US footprint today, expanding deliberately. Specific service availability depends on state laboratory licensing and payer enrollment; we'll tell you on the first call whether we can serve your geography well.",
    },
    {
      q: "Who do I talk to first?",
      a: "Use the contact form below. Inquiries are routed to operations leadership and answered within two business days. The first call is informational on both sides and never under contract.",
    },
  ];
  return (
    <section id="faq" className="section section--paper">
      <div className="container">
        <div className="section__head">
          <div>
            <span className="eyebrow">Frequently asked</span>
            <h2 style={{ marginTop: 14 }}>What people ask first.</h2>
          </div>
          <p className="lede">
            A short list of the questions we hear most often from
            laboratory owners and their counsel. Anything missing here is
            answered directly &mdash; pick up the phone.
          </p>
        </div>
        <div className="faq">
          {qa.map((item, i) => (
            <details key={item.q} open={i === 0}>
              <summary>{item.q}</summary>
              <div className="faq__body">{item.a}</div>
            </details>
          ))}
        </div>
      </div>
    </section>
  );
}

Object.assign(window, { MsoFaq });
