const WORKFLOW_STEPS = [ { title: "Upload the denial", detail: "Drop a PDF, fax, or portal export. We extract the denial code, payer, and request details.", }, { title: "Retrieve evidence", detail: "We load chart data, payer policy bulletins, and clinical literature for the case.", }, { title: "Draft the appeal", detail: "Qwen3-32B composes the letter with citations and payer-specific language.", }, { title: "Review and export", detail: "Your team edits, approves, and exports PDF or TXT for submission.", }, ]; export default function WorkflowSection() { return (
Workflow

From denial to submission-ready appeal

Designed for RCM teams that need speed, consistency, and evidence traceability.

{WORKFLOW_STEPS.map((step, index) => (
Step {index + 1}
{step.title}

{step.detail}

))}
); }