function TrustBand() {
  const stats = [
    {v: '1.600+', l: 'begleitete Projekte'},
    {v: '900+',   l: 'umgesetzte Maßnahmen'},
    {v: '25+',    l: 'Kommunen als Auftraggeber'},
    {v: '~99 %',  l: 'Förderquote bei beantragten Mitteln'},
  ];
  return (
    <section style={{padding: '64px 32px 0', background: '#fff'}}>
      <div style={{maxWidth: 1280, margin: '0 auto'}}>
        <div style={{
          padding: '32px 40px', borderRadius: 16, background: '#F6F6F6',
          display: 'grid', gridTemplateColumns: 'repeat(4, 1fr)', gap: 32,
        }}>
          {stats.map((s, i) => (
            <div key={i} style={{padding: '0 8px', borderLeft: i === 0 ? 'none' : '1px solid #E6E6E6'}}>
              <div style={{fontFamily: 'Montserrat', fontWeight: 800, fontSize: 44, lineHeight: 1, color: '#009947', letterSpacing: '-0.03em', marginBottom: 10}}>
                {s.v}
              </div>
              <div style={{fontSize: 13, color: '#4D4D4D', lineHeight: 1.4}}>{s.l}</div>
            </div>
          ))}
        </div>
      </div>
    </section>
  );
}
window.TrustBand = TrustBand;
