const SERVICES_I18N = { EN: { eyebrow: 'Services', title: ['Diverse Expertise,', 'Unified Excellence:', 'Your Single Point of Certainty.'], cta: 'All services', services: [ { num: '01', name: 'Managed IT Services', blurb: 'Your IT infrastructure runs smoothly, securely, and efficiently — under one accountable team.', items: ['Azure cloud infrastructure', 'Microsoft 365 management', 'End-user & desktop support', 'Firewall & security ops', 'Active Directory', 'Exchange management'] }, { num: '02', name: 'Database Management', blurb: 'Manage, optimize, and secure data systems — on-prem, cloud, or hybrid — with German-speaking L1\u2013L3 support.', items: ['SQL Server, Oracle, PostgreSQL', 'SAP HANA, MySQL, MongoDB', 'Backup & disaster recovery', 'Performance tuning', 'GDPR / DSGVO / BSI', 'Migration & warehousing'] }, { num: '03', name: 'AI Solutions & Simulation', blurb: 'GPU-accelerated CFD, FEA, and multiphysics in the cloud — plus AI workflows tailored to your operations.', items: ['Cloud-native GPU compute', 'CFD / FEA / multiphysics', 'AI-validated simulation code', 'Real-time visualization', 'Custom business AI', 'Scalable enterprise platforms'] }, { num: '04', name: 'Medical Device Integration', blurb: 'Seamless connection between laboratory instruments and healthcare systems — HL7-native, EMR/EHR ready.', items: ['Bidirectional connectivity', 'Automated order/result flow', 'HL7-based integration', 'EMR / EHR compatible', 'Reduced manual error', 'Streamlined lab workflow'] }, { num: '05', name: 'ServiceNow', blurb: 'Implementation, customization, and managed operations across the Now Platform — from ITSM to HRSD and CSM.', items: ['Implementation & deployment', 'Integrations (SAP, Salesforce)', 'Custom apps & workflows', '24/7 managed services', 'Platform upgrades', 'AI & Virtual Agent'] }, { num: '06', name: 'Digital Services', blurb: 'Build and grow your digital presence — from the site itself to the strategy that brings traffic to it.', items: ['Website design & dev', 'SEO & content strategy', 'Social media marketing', 'Domain & hosting', 'Marketing automation', 'Performance analytics'] }, ], }, DE: { eyebrow: 'Leistungen', title: ['Vielf\u00e4ltige Expertise,', 'vereinte Exzellenz:', 'Ihr einziger Ansprechpartner.'], cta: 'Alle Leistungen', services: [ { num: '01', name: 'Managed IT Services', blurb: 'Ihre IT-Infrastruktur l\u00e4uft reibungslos, sicher und effizient \u2014 unter einem verantwortlichen Team.', items: ['Azure Cloud-Infrastruktur', 'Microsoft 365 Management', 'End-User- & Desktop-Support', 'Firewall & Security-Ops', 'Active Directory', 'Exchange-Management'] }, { num: '02', name: 'Datenbankmanagement', blurb: 'Datenbanken verwalten, optimieren und sichern \u2014 on-prem, Cloud oder hybrid \u2014 mit deutschsprachigem L1\u2013L3-Support.', items: ['SQL Server, Oracle, PostgreSQL', 'SAP HANA, MySQL, MongoDB', 'Backup & Disaster Recovery', 'Performance-Tuning', 'DSGVO / BSI', 'Migration & Warehousing'] }, { num: '03', name: 'KI-L\u00f6sungen & Simulation', blurb: 'GPU-beschleunigte CFD, FEA und Multiphysik in der Cloud \u2014 plus KI-Workflows nach Ma\u00df.', items: ['Cloud-native GPU-Compute', 'CFD / FEA / Multiphysik', 'KI-validierter Simulationscode', 'Echtzeit-Visualisierung', 'Individuelle Business-KI', 'Skalierbare Enterprise-Plattformen'] }, { num: '04', name: 'Integration Medizintechnik', blurb: 'Nahtlose Verbindung zwischen Laborger\u00e4ten und Gesundheitssystemen \u2014 HL7-nativ, EMR/EHR-ready.', items: ['Bidirektionale Anbindung', 'Automatisierter Auftrags-/Ergebnisfluss', 'HL7-basierte Integration', 'EMR / EHR-kompatibel', 'Weniger manuelle Fehler', 'Optimierter Lab-Workflow'] }, { num: '05', name: 'ServiceNow', blurb: 'Implementierung, Customizing und Managed Operations auf der Now Platform \u2014 von ITSM \u00fcber HRSD bis CSM.', items: ['Implementierung & Rollout', 'Integrationen (SAP, Salesforce)', 'Custom Apps & Workflows', '24/7 Managed Services', 'Plattform-Upgrades', 'KI & Virtual Agent'] }, { num: '06', name: 'Digital Services', blurb: 'Digitale Pr\u00e4senz aufbauen und ausbauen \u2014 von der Website bis zur Strategie, die Traffic bringt.', items: ['Website-Design & -Entwicklung', 'SEO & Content-Strategie', 'Social-Media-Marketing', 'Domain & Hosting', 'Marketing-Automation', 'Performance-Analytics'] }, ], }, }; function Services({ lang = 'EN' }) { const [active, setActive] = React.useState(0); const t = SERVICES_I18N[lang] || SERVICES_I18N.EN; return (
{t.eyebrow}

{t.title[0]}{' '} {t.title[1]}{' '} {t.title[2]}

{t.cta}
{t.services.map((s, i) => { const isActive = active === i; return (
setActive(i)} style={{ display: 'grid', gridTemplateColumns: 'clamp(60px,8vw,120px) 1fr clamp(0px,30vw,1.2fr) 50px', alignItems: 'center', gap: 'clamp(12px,2vw,32px)', padding: 'clamp(16px,2vw,28px) clamp(16px,2.5vw,32px)', borderBottom: i < t.services.length - 1 ? '1px solid #1F1F22' : 'none', background: isActive ? '#111114' : 'transparent', transition: 'background 220ms var(--ease-standard)', cursor: 'pointer', }}>
{s.num}
{s.name}
{s.items.map((it) => ( {it} ))}
); })}
); } window.Services = Services;