// Home.jsx — Verigo Global homepage const { V: VC, MAXW: MW, FONT: FT } = window; const HERO_FRAMEWORKS = ['ISO 27001', 'ISO 42001', 'SOC 2', 'CMMC 2.0', 'HITRUST', 'CMMI', 'NIST']; const SERVICE_LINES = [ { icon: 'search', overline: 'Assess', title: 'Readiness Assessments', desc: 'Gap analysis against your chosen framework, risk scoring, and a prioritized remediation roadmap — delivered as an independent report.', dest: 'services' }, { icon: 'layers', overline: 'Implement', title: 'Implementation Toolkits', desc: 'A practitioner-led program to close the gaps: policy development, control implementation, awareness programs, and evidence procedures.', dest: 'toolkits' }, { icon: 'clipboard', overline: 'Prepare', title: 'Pre-Audit Preparation', desc: 'Mock internal audits, evidence collection support, and auditor-readiness coaching that lift first-time certification pass rates.', dest: 'services' }, { icon: 'shield', overline: 'Certify', title: 'Formal Audits', desc: 'Independent certification and attestation audits conducted by Verigo Global credentialed auditors, with findings management.', dest: 'services' }]; const HomeHero = ({ onNav }) =>
Information Security Compliance Consulting

Compliance
by Design.

We don't just audit. We partner with IT contractors to embed recognized security frameworks into daily operations — replacing reactive, audit-driven compliance with continuous, designed-in assurance.

onNav('contact')}>Start a Conversation onNav('services')}>Explore Services
FRAMEWORKS WE COVER
{HERO_FRAMEWORKS.map((s) => {s} )}
; const ArchBackdrop = () => ; const HomeStats = () =>
{[ ['20+', 'Years average experience', 'Senior practitioners, not juniors'], ['7', 'Frameworks supported', 'ISO 27001 to ISO 42001'], ['4', 'Global markets', 'US · UK · India · Singapore'], ['25–1,000', 'Target client headcount', 'Mid-market IT contractors']]. map(([v, l, s], i) =>
{v} {l} {s}
)}
; // Compliance-by-design philosophy strip const PhilosophyStrip = ({ onNav }) =>
The governing idea

Most IT contractors treat compliance as an event. We make it a state.

Rather than documenting existing processes to fit a framework, we work with your leadership to redesign processes so that framework requirements are met as a natural outcome of daily operations. Evidence exists because the process generates it — not because it was collected for the auditor.

onNav('about')}>How Compliance by Design works
{[ ['gauge', 'Controls that are operational, not performative', 'Evidence is a by-product of how you work.'], ['refresh', 'Audit-ready at all times', 'Not just in the months before a review.'], ['trending', 'Lower total cost of compliance', 'Maintenance burden falls when controls are embedded.'], ['lock', 'A stronger security posture', 'Designed-in controls are applied more consistently.']]. map(([icon, t, d], i) =>
{t}
{d}
)}
; const HomeServices = ({ onNav }) =>
The compliance lifecycle

Four interconnected services, one path to certification.

onNav('services')}>View all services
{SERVICE_LINES.map((s, i) => )}
; const SvcCard = ({ s, step, onNav }) => { const [h, setH] = React.useState(false); return (
onNav(s.dest)} onMouseEnter={() => setH(true)} onMouseLeave={() => setH(false)} style={{ background: '#fff', border: `1px solid ${h ? VC.g300 : VC.g200}`, borderRadius: 12, padding: '26px 24px', cursor: 'pointer', transition: 'all 180ms ease-out', boxShadow: h ? '0 8px 32px rgba(0,0,0,0.10)' : 'none', transform: h ? 'translateY(-2px)' : 'none', display: 'flex', flexDirection: 'column', gap: 14 }}>
0{step}
{s.overline}

{s.title}

{s.desc}

); }; // Reuses STANDARDS data from Standards.jsx const HomeStandards = ({ onNav }) => Every major standard.
One trusted partner.} sub="From a single ISO 27001 certification to a full multi-framework program — supported by cross-framework control mapping that lets you share evidence and reduce duplicated effort." />
{window.STANDARDS.map((s) =>
onNav('standard:' + s.id)} style={{ background: '#fff', border: `1px solid ${VC.g200}`, borderRadius: 12, padding: '22px 22px', cursor: 'pointer', transition: 'all 150ms', display: 'flex', alignItems: 'center', gap: 16 }} onMouseEnter={(e) => {e.currentTarget.style.borderColor = s.color;e.currentTarget.style.background = VC.g50;}} onMouseLeave={(e) => {e.currentTarget.style.borderColor = VC.g200;e.currentTarget.style.background = '#fff';}}>
{s.name}
{s.tag}
)}
; // Purple full-bleed market opportunity const MarketBand = () =>
A durable demand environment

Compliance has become non-negotiable — and demand outstrips supply.

{[ ['$15.5B', 'Compliance consulting market', '2025'], ['14.5%', 'CAGR through 2033', 'Sustained growth'], ['$213B', 'Global InfoSec spend', '2025, Gartner'], ['300K+', 'US defense contractors', 'Requiring CMMC']]. map(([v, l, s], i) =>
{v}
{l}
{s}
)}
; // Differentiation const WhyVerigo = ({ onNav }) =>
{[ ['layers', 'Full lifecycle coverage', 'Readiness through formal audit under one roof — no coordination overhead of juggling multiple providers.'], ['network', 'Multi-framework expertise', 'Need ISO 27001 and CMMC and NIST? Work with a single partner instead of managing three separate firms.'], ['award', '20+ years per practitioner', 'Engagements delivered by senior practitioners certified as CISSP, CISM, ISO 27001 Lead Auditor, CMMC CCA, and more.'], ['globe', 'Global-local model', 'Local practitioners in each of four markets, working to one consistent methodology and quality standard.'], ['compass', 'Compliance by Design', 'We embed frameworks into operations, creating sustainable compliance rather than point-in-time certification.'], ['handshake', 'Partnership over transaction', 'Multi-year relationships built on independent, honest assessment — not one-time engagements.']]. map(([icon, t, d], i) =>

{t}

{d}

)}
; const HomePage = ({ onNav }) =>
; Object.assign(window, { HomePage, SERVICE_LINES });