LoadComparison from @kuppwest/apple-clean. Use via `window.KuppwestAppleClean.LoadComparison` (bundle loaded from the root `_ds_bundle.js`). Wrap the tree in `<Page>` (full provider chain in README.md — components read theme/i18n from that context).

Dark, left-aligned comparison band (`.kwac-compare`): eyebrow, statement,
copy and horizontal pill bars (`.kwac-bars`) that put the towing load and the
nose weight in proportion and explain what each one means for the buyer. Sits between the
feature band and the detail band of the long product page.

## Props

```ts
interface LoadComparisonProps {
  /** Tiny uppercase eyebrow, e.g. "Leistung". */
  eyebrow?: string;
  /** Left-aligned statement headline. */
  statement: React.ReactNode;
  /** Muted copy under the statement. */
  copy?: React.ReactNode;
  /** Two rows in the template: towing load (accent) and nose weight. */
  bars: LoadBar[];
  /** Small footnote under the bars, e.g. "Balken maßstäblich zur Anhängelast." */
  note?: string;
}
```
