function Proceso() { const [lang] = useLang(); const C = window.FUSE_CONTENT.proceso; const steps = C.steps[lang]; const [pre, emph, post] = C.h2[lang]; return (
{C.kicker[lang]}

{pre} {emph}{post}

{lang === 'es' ? 'No vendemos software. No vendemos retainers indefinidos. Diseñamos un sistema concreto, lo construimos, y lo dejamos corriendo en tu firma. Si volvemos, es porque hay más trabajo — no porque la cuenta nunca cierra.' : 'We don\'t sell software. We don\'t sell open-ended retainers. We design a specific system, build it, and leave it running in your firm. If we come back, it\'s because there\'s more work — not because the engagement never closes.'}

    {steps.map((s, i) => (
  1. {s.n} {s.dur}

    {s.label}

    {s.body}

    {i < steps.length - 1 && ( )}
  2. ))}
); } window.Proceso = Proceso;