// Philosophy — the worldview. Editorial spread with a pull quote. function Philosophy() { const { lang } = React.useContext(window.LangContext); const { isMobile, isTablet } = window.useBreakpoint(); const [refH2, visH2] = window.useReveal(); const [refBody, visBody] = window.useReveal({ threshold: 0.08 }); const [refTenets, visTenets] = window.useReveal({ threshold: 0.08 }); const en = { eyebrow: "01 · Philosophy", h2line1: "Tools don't create strategy —", h2line2: "they execute it.", body1: "Many SMEs struggle with AI — not because the right tools are missing, but because processes, responsibilities, and knowledge don't work together cleanly.", body2: null, body3: "That gap is exactly what I close with you.", quote1: "Technology is rarely the bottleneck.", quote2: "What's usually missing is a shared picture.", figcaption: "The operating principle — everywhere", tenets: [ { n: "I", t: "Clarity before technology", b: "First create clarity on where we want to go. Then shape the systems and workflows required to get there." }, { n: "II", t: "Systems built for production", b: "Systems only create real value when teams can govern, maintain, and reliably use them in daily operations." }, { n: "III", t: "Adoption through visible value", b: "People work with AI when they understand how it relieves them." }, ], }; const de = { eyebrow: "01 · Philosophie", h2line1: "Erst die Strategie.", h2line2: "Dann das Tool.", body1: "Viele KMU tun sich schwer mit KI — nicht weil die passenden Tools fehlen, sondern weil Prozesse, Verantwortlichkeiten und Wissen nicht sauber zusammenspielen.", body2: null, body3: "Genau diese Lücke schließe ich mit Ihnen.", quote1: "Technologie ist selten der Engpass.", quote2: "Meistens fehlt das gemeinsame Bild.", figcaption: "Das Arbeitsprinzip — überall", tenets: [ { n: "I", t: "Klarheit vor Technologie", b: "Zuerst Klarheit schaffen, wo wir hin wollen. Danach Systeme und Abläufe entwerfen." }, { n: "II", t: "Systeme für den Betrieb", b: "Systeme erzeugen nur dann echten Wert, wenn Teams sie selbst steuern, pflegen und gerne im Alltag einsetzen." }, { n: "III", t: "Akzeptanz durch klaren Nutzen", b: "Menschen arbeiten mit KI, wenn sie verstehen, wie diese sie entlasten kann." }, ], }; const t = lang === 'de' ? de : en; return (
{/* Section marker */}
01
{/* Eyebrow */}
{t.eyebrow}
{/* Headline */}

{t.h2line1}
{t.h2line2}

{/* Body grid — quote leads left, body follows right */}
{/* Quote — left, no quotation marks */}
{t.quote1}
{t.quote2}
{t.figcaption}
{/* Body — right, with left border on desktop */}

{t.body1}

{t.body2}

{t.body3 && (

{t.body3}

)}
{/* Three tenets */}
{t.tenets.map(p => (
{p.n}

{p.t}

{p.b}

))}
); } window.Philosophy = Philosophy;