/* eslint-disable */ const STEPS = [ { n: "01", title: "Discovery & audit", body: "We pull 90 days of claims data, flag denial patterns and benchmark your A/R against your specialty. Free, no commitment." }, { n: "02", title: "Onboarding in 14 days", body: "Clearinghouse, PMS access, payer enrollment, fee schedules—we handle the migration in parallel so cashflow never dips." }, { n: "03", title: "Daily operations", body: "Charges entered, claims submitted, denials worked, patients billed. You see every action in a shared dashboard." }, { n: "04", title: "Monthly partnership", body: "Scorecard, payer mix analysis, and a working session with your account lead. We tune what isn't working—every cycle." } ]; function Process() { return (
How we work

From audit to optimized
in four steps.

No long contracts, no offshore handoffs you didn't agree to. A dedicated U.S.-based account lead from week one.

{STEPS.map(s => (
{s.n}

{s.title}

{s.body}

))}
); } /* ---------------- Results ---------------- */ const METRICS = [ { num: "98.6", unit: "%", label: "First-pass clean-claim rate across the AlbertMed book of business.", icon: , featured: true }, { num: "+27", unit: "%", label: "Average lift in net collections in the first 90 days of partnership.", icon: }, { num: "22", unit: "days", label: "Average days in A/R. Industry average sits between 38 and 45.", icon: }, { num: "<4", unit: "%", label: "Net denial rate. We work every denial to root cause, not just resubmit.", icon: } ]; function Results() { return (
The numbers that matter

Outcomes our clients
can actually measure.

We publish our performance, by the quarter, against the industry baseline. Numbers are pooled across our active book of business—you'll see your own version in your scorecard.

See your own audit
{METRICS.map((m, i) => (
{m.num}{m.unit}
{m.label}
{m.icon}
))}
); } Object.assign(window, { Process, Results });