// FAQ + final CTA + footer — bold variant. const FAQ_ITEMS = [ { q: 'What is HIPAA compliance software?', a: 'HIPAA compliance software centralizes the work of the Security and Privacy Rules — risk assessment, policy management, workforce training, BAA tracking, incident response, and audit evidence — in one system instead of spreadsheets and shared drives.' }, { q: 'Who needs HIPAA compliance?', a: 'Any organization handling Protected Health Information: covered entities (providers, health plans, clearinghouses) and business associates (IT vendors, billing companies, cloud services, and their subprocessors).' }, { q: 'How fast can we be audit-ready?', a: 'Most teams reach baseline compliance in 30–60 days. Guided implementation prioritizes the highest-risk gaps first, and CTRL Assist accelerates policy drafting and control mapping.' }, { q: 'Is there a free trial?', a: 'Yes — free compliance gap assessment plus a 30-day money-back guarantee on all plans. No credit card required to start.' }, { q: 'How does CTRL Assist handle PHI?', a: 'All workspace data is de-identified before any AI processing. Assist responses cite 45 CFR sections and OCR guidance directly; it will not fabricate references. Responses are for guidance only — consult legal counsel for formal determinations.' }, ]; const FAQItem = ({ item, i }) => { const mono = { fontFamily: "'JetBrains Mono', ui-monospace, monospace" }; const [open, setOpen] = React.useState(i === 0); return (
{open && (
{item.a}
)}
); }; const FAQSection = () => { const { SectionLabel, SectionH } = window; return (
Frequently asked questions.
{FAQ_ITEMS.map((item, i) => )}
); }; const FinalCTA = () => { const mono = { fontFamily: "'JetBrains Mono', ui-monospace, monospace" }; return (
READY_TO_DEPLOY

Take CTRL of your HIPAA program.

Free compliance gap assessment. 30-day money-back guarantee. No credit card required.

START FREE ASSESSMENT → BOOK 30-MIN DEMO
); }; const FooterBold = () => { const mono = { fontFamily: "'JetBrains Mono', ui-monospace, monospace" }; const FoldMarkHP = window.FoldMarkHP; return ( ); }; Object.assign(window, { FAQSection, FinalCTA, FooterBold });