// Section 7 — For Parents / Academic integrity.
// Two-column "what a coach does" / "what a coach never does" + locked line + integrity chip.

const ParentsSection = () => (
  <section className="section parents-section" id="parents">
    <div className="wide">
      <header className="section-head intensives-section-head align-center">
        <div className="eyebrow">For parents</div>
        <h2>
          Is this academic dishonesty?<br />
          <Scribble>No.</Scribble> Here's exactly what a coach does, and doesn't.
        </h2>
      </header>

      <div className="parents-grid">
        <div className="parents-col does">
          <h4 className="parents-col-head">What a coach does</h4>
          <ul className="parents-list">
            <li>Reviews your research question and methodology before you commit to it.</li>
            <li>Walks through argument structure with you, decision by decision.</li>
            <li>Reads every draft you send and gives detailed written feedback.</li>
            <li>Records video commentary on your specific work, breaking down what's working and what isn't.</li>
            <li>Asks the questions a good supervisor should ask before you write a word.</li>
          </ul>
        </div>

        <div className="parents-col never">
          <h4 className="parents-col-head"><span className="red-dot">●</span> What a coach never does</h4>
          <ul className="parents-list never-list">
            <li>Writes any of your IA, EE, essay, or submitted work.</li>
            <li>Generates ideas, arguments, or analysis on your behalf.</li>
            <li>Edits your prose into a final version.</li>
            <li>Suggests phrases or sentences you can copy into your submission.</li>
            <li>Touches your document directly.</li>
          </ul>
        </div>
      </div>

      <p className="parents-locked">
        You write every word.<br />
        We make sure <Scribble>every decision</Scribble> is the right one before you write it.
      </p>

      <p className="parents-closer">
        This is the level of support a good supervisor should provide; and almost never does.
      </p>

      <div className="integrity-chip">
        <Icon name="check" />
        <span>Designed to respect IB academic integrity principles</span>
      </div>
    </div>
  </section>
);

window.ParentsSection = ParentsSection;
