// toolkit-iso27001-extras.jsx — Verigo Global: ISO 27001 toolkit pricing, purchase CTAs, evaluation promo const { V: XV, MAXW: XMW, FONT: XFT } = window; /* ── PRICING ─────────────────────────────────────────────── */ const TPricing = ({ onNav }) => { const TIERS = window.TK_ISO.TIERS; const fmt = window.TK_ISO.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 TActionBand = ({ onDownloadStandard, onNav }) => { const card = { background: '#fff', border: `1px solid ${XV.g200}`, padding: '34px 32px', display: 'flex', flexDirection: 'column' }; return (

Take the standard package

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

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

Customize your package

Build exactly what your 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 TEvaluation = ({ onNav }) => { const steps = [ ['target', 'Answer ~30 questions', 'Scoped to the ISO 27001 clauses and Annex A themes — about 10 minutes.'], ['gauge', 'Get your readiness score', 'An instant maturity score with a gap heat-map across all four control 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 27001 readiness evaluation measures your current state against the standard 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, { TPricing, TActionBand, TEvaluation });