function Process() { const steps = [ { n: '01', title: 'Discovery Call', body: "We'll talk through your business, your books, and what's been a headache. No pressure, no pitch." }, { n: '02', title: 'Customized Quote', body: 'I review your current system, then send an exact quote tailored to your needs.' }, { n: '03', title: 'Kickoff Call', body: 'We get you fully set up and walk through what to expect throughout the process.' }, { n: '04', title: 'Clean Books', body: 'Up-to-date books and monthly reports, so you always know where you stand.' }, ]; return (
THE PROCESS

Simple from day one.

{/* Steps grid — circles centered over each column, connecting line behind */}
{steps.map(s => (
{s.n}

{s.title}

{s.body}

))}
{ e.currentTarget.style.background = 'transparent'; e.currentTarget.style.color = '#163F34'; e.currentTarget.style.borderColor = '#163F34'; }} onMouseLeave={e => { e.currentTarget.style.background = '#3F8074'; e.currentTarget.style.color = '#fff'; e.currentTarget.style.borderColor = '#3F8074'; }} >Get Started
); } Object.assign(window, { Process });