function ComparisonTable({ lang }) {
  const rows = [
    [{ de:"Was man bekommt", en:"What you get" }, "Tool setup", "Concept paper", "Off-the-shelf", { de:"Funktionierendes System", en:"Working system" }],
    [{ de:"Timeline",        en:"Timeline" },       "Months",    "Months",         "Instant · generic", { de:"2 Wochen", en:"2 weeks" }],
    [{ de:"Anpassung",       en:"Customisation" },  "Limited",   "Recommendation", "Configuration",     { de:"Maßgeschneidert", en:"Bespoke" }],
    [{ de:"Kontakt",         en:"Contact" },        "Account mgr","Consultant",    "Support ticket",    { de:"Die Gründer", en:"The founders" }],
    [{ de:"Bullshit",        en:"Bullshit" },       "High",      "Very high",      "Medium",            { de:"Null", en:"Zero" }],
  ];
  return (
    <section className="band band-dark compare-band">
      <div className="wrap">
        <div className="eyebrow eyebrow-dim-inv">{lang === "de" ? "05 — Unterschied" : "05 — Differentiation"}</div>
        <h2 className="compare-band">{lang === "de" ? "shyft vs. der Rest." : "shyft vs. the rest."}</h2>
        <table className="compare">
          <thead>
            <tr>
              <th></th>
              <th>{lang === "de" ? "Agenturen" : "Agencies"}</th>
              <th>{lang === "de" ? "Berater" : "Consultants"}</th>
              <th>{lang === "de" ? "Software" : "Software"}</th>
              <th style={{color:"var(--shyft-terracotta)"}}>shyft</th>
            </tr>
          </thead>
          <tbody>
            {rows.map((r, i) => (
              <tr key={i}>
                {r.map((cell, j) => {
                  const isWin = j === 4;
                  const val = typeof cell === "object" ? t(cell, lang) : cell;
                  return <td key={j} className={isWin ? "win" : ""}>{val}</td>;
                })}
              </tr>
            ))}
          </tbody>
        </table>
        <div className="compare-quote">
          {lang === "de"
            ? <><em>Die meisten reden.</em><br/>Wir liefern.</>
            : <><em>Most talk.</em><br/>We ship.</>}
        </div>
      </div>
    </section>
  );
}
window.ComparisonTable = ComparisonTable;
