function Included() { const isMobile = useMediaQuery('(max-width: 768px)'); const isNarrow = useMediaQuery('(max-width: 1024px)'); const features = [ { label: 'AI voice agent', detail: 'Custom-trained on your business data.', icon: 'voice' }, { label: 'Dedicated number', detail: 'US or local. Yours forever.', icon: 'phone' }, { label: 'Personal dashboard', detail: 'Logs, transcripts, recordings.', icon: 'dash' }, { label: 'Live human handoff', detail: 'Smooth transfer when needed.', icon: 'handoff' }, { label: '24/7 availability', detail: 'No staff, no holidays, no hold.', icon: 'clock' }, { label: 'Urdu + English', detail: 'Switches mid-conversation.', icon: 'lang' }, { label: 'Onboarding included', detail: 'We set up everything for you.', icon: 'setup' }, { label: 'Real-time logging', detail: 'Every call, every detail, searchable.', icon: 'log' }, ]; const Icon = ({ kind }) => { const props = { width: 18, height: 18, viewBox: '0 0 18 18', fill: 'none' }; const stroke = { stroke: 'currentColor', strokeWidth: 1.4, strokeLinecap: 'round', strokeLinejoin: 'round' }; switch (kind) { case 'voice': return ; case 'phone': return ; case 'dash': return ; case 'handoff': return ; case 'clock': return ; case 'lang': return ; case 'setup': return ; case 'log': return ; default: return null; } }; return (
03 — WHAT'S INCLUDED

One plan, everything you need to never miss another call.

{features.map((f, i) => (
{f.label}
{f.detail}
))}
); } window.Included = Included;