/* ActiveFit360 marketing — Services page */ const NS_sv = window.Activefit360DesignSystem_d87766; const AF_FAQS = [ { q: 'What should I expect during my first session?', a: 'Your first visit includes a comprehensive evaluation of your condition, medical history, and personal goals. We perform a physical assessment, develop a personalized treatment plan, and you’ll receive your first treatment plus a home exercise program.' }, { q: 'Do I need a doctor’s referral?', a: 'In Illinois you do not need a referral to see a physical therapist, thanks to Direct Access laws — so you can start treatment faster. Some insurance plans may require a referral for reimbursement, so it’s worth checking with your provider.' }, { q: 'How long is each session?', a: 'Initial evaluations are typically 60 minutes. Follow-up treatment sessions are also 60 minutes, so you always receive thorough, one-on-one care from your therapist.' }, { q: 'What types of payment do you accept?', a: 'We accept self-pay and can provide a superbill to submit for out-of-network reimbursement. We accept cash, checks, and all major credit cards, and work with major insurance plans.' }, { q: 'What should I wear?', a: 'Wear comfortable, loose-fitting clothing that lets you move freely — athletic wear is ideal. Your therapist needs to be able to see and access the area being treated.' }, { q: 'How many sessions will I need?', a: 'It varies by individual and depends on your condition, goals, and progress. Your therapist will recommend a treatment schedule after your initial evaluation.' }, ]; function ServicesPage({ onBook, onNavigate }) { const { Card, Button, Badge, Accordion } = NS_sv; const I = window.Icon; return ( {/* header */}
}>Evidence-based, patient-centered care

Holistic therapy to help you recover, strengthen & thrive

Every plan begins with a one-on-one evaluation from a licensed physical therapist. No rushed visits — just focused, lasting care.

{/* specialties grid */}
{window.AF_SERVICES.map(s => (

{s.title}

{s.desc}

))}
{/* care models recap */}
{window.AF_CARE_MODELS.map(m => (

{m.title}

{m.tagline}

))}
{/* FAQ */}
); } Object.assign(window, { ServicesPage });