// Pricing — bold variant. Same tiers & prices as the existing site: // Foundation $499 / Accelerate $1,499 / Command $2,999 / Complete $4,999 const TIERS = [ { name: 'Foundation', tag: 'SELF-SERVICE', price: '499', blurb: 'Platform access for teams ready to drive their own compliance program.', features: ['Full platform access', 'Policy & documentation library', 'Email support', 'CTRL Assist · 50 queries / mo'], cta: 'Start trial', featured: false, tint: '#94a3b8', }, { name: 'Accelerate', tag: 'GUIDED', price: '1,499', blurb: 'Monthly reviews and implementation support to keep momentum.', features: ['Everything in Foundation', 'Monthly compliance review', 'Implementation support', 'Priority support', 'CTRL Assist · unlimited'], cta: 'Get started', featured: true, tint: '#38bdf8', }, { name: 'Command', tag: 'MANAGED', price: '2,999', blurb: 'A dedicated analyst and hands-on policy development for growing orgs.', features: ['Everything in Accelerate', 'Dedicated compliance analyst', 'Policy development', 'Audit preparation', 'Quarterly executive reporting'], cta: 'Talk to sales', featured: false, tint: '#a855f7', }, { name: 'Complete', tag: 'FULL-SERVICE', price: '4,999', blurb: 'Outsourced Privacy & Security Officer — we run the program end-to-end.', features: ['Everything in Command', 'Outsourced Privacy & Security Officer', 'Training & incident management', 'Audit representation', 'Board-level reporting'], cta: 'Talk to sales', featured: false, tint: '#f97316', }, ]; const PriceCard = ({ t }) => { const mono = { fontFamily: "'JetBrains Mono', ui-monospace, monospace" }; return (