// 2-column problem section. Left = 2x2 emoji card grid; right = headline + paragraph + CTA. function Problem() { const cards = [ { emoji: '⏱️', title: 'Hours Lost Monthly', body: 'Time chasing transactions is time not spent running your business.' }, { emoji: '📊', title: 'Decisions On Bad Data', body: 'Bad numbers lead to costly mistakes, higher tax bills, and missed opportunities.' }, { emoji: '📅', title: 'Tax Season Chaos', body: 'Scrambled records mean a stressful, expensive scramble every April.' }, { emoji: '🔍', title: 'No Real Visibility', body: "You don't know your real profit or where the money goes." }, ]; return (
{/* Left: 2x2 grid */}
THE REAL COST OF MESSY BOOKS
{cards.map(c => (
{c.emoji}
{c.title}
{c.body}
))}
{/* Right: copy + CTA */}
THE REAL COST OF MESSY BOOKS

Most service business owners are running blind.

You're great at running your business — you're not supposed to be a bookkeeper too.

But messy books mean missed deductions, bad pricing, tax surprises, and cash flow you can't predict.

Clean books fix that: clear numbers, smarter decisions, and no more dreading your finances.

{ 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'; }} >Book A Free Call
); } Object.assign(window, { Problem });