// Process: engagement steps as a connected flow diagram (horizontal on desktop/tablet, vertical on mobile). const NS_PROC = window.AnsysDigitalDesignSystem_4543d7; function Process() { const { SectionHeading } = NS_PROC; const steps = [ { n: "01", icon: "search", title: "Discover", desc: "We audit your store, funnel, and goals — then map the highest-leverage opportunities." }, { n: "02", icon: "pen-tool", title: "Design", desc: "Conversion-focused UX and premium UI, prototyped and validated before a line of code." }, { n: "03", icon: "code-2", title: "Build", desc: "Custom Shopify or Plus development — fast, accessible, and QA'd across every device." }, { n: "04", icon: "trending-up", title: "Optimize", desc: "Launch, measure, and iterate with a continuous CRO program that compounds returns." }, ]; return (
{steps.map((s, i) => (
{s.n}

{s.title}

{s.desc}

))}
); } Object.assign(window, { Process });