// toolkit-iso42001-extras.jsx — Verigo Global: ISO 42001 toolkit pricing, purchase CTAs, evaluation promo const { V: X2V, MAXW: X2MW, FONT: X2FT } = window; /* ── PRICING ─────────────────────────────────────────────── */ const T2Pricing = ({ onNav }) => { const TIERS = window.TK_ISO42001.TIERS; const fmt = window.TK_ISO42001.fmtPrice; return (
{TIERS.map((t, i) => { const pop = !!t.popular; return (
{pop && (
Most popular
)}
{t.name}
{t.priceNote && {t.priceNote}} {fmt(t.price)}

{t.tagline}

{t.forWho}
    {t.features.map((f, fi) => (
  • {f}
  • ))}
onNav('checkout:' + t.id)} style={{ width: '100%', justifyContent: 'center' }}> Choose {t.name}
); })}

Prices shown are indicative. Add implementation support, pre-audit prep, and more when you configure your package.

); }; /* ── ACTION BAND — download standard / customize ─────────── */ const T2ActionBand = ({ onDownloadStandard, onNav }) => { const card = { background: '#fff', border: `1px solid ${X2V.g200}`, padding: '34px 32px', display: 'flex', flexDirection: 'column' }; return (

Take the standard package

Grab the complete, ready-made toolkit as-is — 72 documents across policies, procedures, and all 38 Annex A controls. Download the full index now.

Download standard package onNav('checkout:starter')}>Buy Starter

Customize your package

Build exactly what your AI program needs — start from any tier, then add implementation support, pre-audit prep, internal audit, and more. See your total update live.

onNav('checkout:professional')}>Customize package onNav('contact')}>Talk to a practitioner
); }; /* ── ONLINE EVALUATION PROMO (provisioned) ───────────────── */ const T2Evaluation = ({ onNav }) => { const steps = [ ['target', 'Answer ~28 questions', 'Scoped to the ISO 42001 clauses and Annex A objectives — about 10 minutes.'], ['gauge', 'Get your readiness score', 'An instant maturity score with a gap heat-map across your AI governance themes.'], ['flag', 'See your next steps', 'A prioritized action plan showing exactly which toolkit documents close each gap.'], ]; return (
Online evaluation · ~10 minutes

Know where you stand before you start.

Our online ISO 42001 readiness evaluation measures your current AI governance maturity and maps every gap straight to the toolkit documents that close it. Get your score in about ten minutes.

onNav('evaluation')}>Start the evaluation onNav('evaluation')}>See how it works
{steps.map(([ic, t, d], i) => (
{String(i + 1).padStart(2, '0')}

{t}

{d}

))}
); }; Object.assign(window, { T2Pricing, T2ActionBand, T2Evaluation });