// audit-hero-process.jsx // Energy Audits Solutions Page — Hero, Service Overview, Proof Strip, Process // ============================================================ // AuditHero — Wise Blue (dark) per spec S01 // Document-style editorial layout, mirroring Sol Hero structure // ============================================================ const AuditHero = () =>
; // ============================================================ // AuditBenefits — Four reasons energy audits improve facility performance. // Mirrors BessBenefits layout (S02): editorial header + 4 cards + closing band. // ============================================================ const AUDIT_ACCENT = '#D4A24C'; const AUDIT_ACCENT_SOFT = 'rgba(212,162,76,0.16)'; const AuditBenefitsCard = ({ num, label, statValue, statUnit, title, body }) => { const [hovered, setHovered] = React.useState(false); const accentColor = 'var(--gi-sage-accent)'; return (
setHovered(true)} onMouseLeave={() => setHovered(false)} data-gi-resp="audit-benefits-card" style={{ position: 'relative', background: hovered ? '#fff' : '#FBFBF9', padding: '32px 28px 32px', display: 'flex', flexDirection: 'column', minHeight: 360, transition: 'background 220ms var(--gi-ease), transform 260ms var(--gi-ease), box-shadow 260ms var(--gi-ease)', transform: hovered ? 'translate3d(0, -2px, 0)' : 'none', boxShadow: hovered ? '0 24px 56px -22px rgba(15,33,51,0.22), 0 6px 16px -8px rgba(15,33,51,0.10)' : 'none', zIndex: hovered ? 2 : 1, }}> ); }; const AuditBenefits = ({ showClosingBand = true }) => { const cards = [ { num: '01', statValue: 'Energy Waste', label: 'Cost reduction', title: 'Identify where utility costs can be reduced.', body: 'Detailed facility analysis uncovers inefficiencies in HVAC, lighting, controls, compressed air, and operational systems.', }, { num: '02', statValue: 'Operational Insight', label: 'Building performance', title: 'Understand how your facility actually operates.', body: 'Energy audits provide data-driven visibility into equipment performance, operating schedules, and energy-intensive processes.', }, { num: '03', statValue: 'Incentive Ready', label: 'Funding & compliance', title: 'Capture available rebates and funding.', body: 'Audit reports help support utility incentives, capital planning, ESG initiatives, and future energy compliance requirements.', }, { num: '04', statValue: 'Long-Term Strategy', label: 'Energy management', title: 'Build a roadmap for future improvements.', body: 'Energy audits prioritize projects based on ROI, operational impact, and long-term facility objectives.', }]; return (
{/* Header */}
Commercial energy audits

Four reasons energy audits{' '} improve facility performance.

Commercial energy audits identify where facilities are losing efficiency, spending unnecessarily on utilities, and missing operational optimization opportunities. Here is how energy audits create measurable value for Canadian commercial and industrial buildings.

{/* Card grid */}
{cards.map((c) => )}
{/* Closing band */} {showClosingBand &&

Green Integrations performs commercial and industrial energy audits designed to identify practical savings opportunities, operational improvements, and long-term energy strategies — including data analysis, recommissioning opportunities, utility review, and capital planning support.

{/* */}
}
); }; // ============================================================ // AuditProofStrip — Wise Blue (S03), 4 audit-specific stats // ============================================================ const AuditProofStrip = () => { const stats = [ { big: '1.3M kWh', label: 'Annual electricity savings', sub: 'HVAC recommissioning, warehousing & logistics facility' }, { big: '5–15%', label: 'Total site consumption reduction', sub: 'Discovered through energy audits' }, { big: '66.5%', label: 'Lighting energy reduction', sub: 'LED retrofit following audit, food mfg' }, { big: '75%', label: 'Existing Building Recommissioning', sub: 'C&I audit funding' }]; return (
{/* Decorative monogram — faint, anchored bottom-right */} {/* Decorative thin vertical hairlines — top-right corner */}
Proof in numbers

From completed Ontario C&I audits.

Audit-specific outcomes from facilities Green Integrations has assessed.

{stats.map((s, i) =>
0 ? 28 : 0, minWidth: 0 }}>
{s.big}
{s.label}
{s.sub}
)}
); }; // ============================================================ // AuditProcess — Paper Cream (S04), 4 steps with deliverables // ============================================================ const AuditProcess = () => { const steps = [ { num: '01', label: 'Utility data review', title: 'Analyze', icon: 'line-chart', copy: 'Electricity, natural gas, water bills, and interval data — 12 months minimum — is analysed to build the facility\u2019s actual energy consumption and demand profile. This identifies the specific hours, systems, and billing components driving the highest costs.', deliv: 'Consumption + demand profile · peak demand analysis' }, { num: '02', label: 'Site walkthrough', title: 'Inspect', icon: 'thermometer', copy: 'A full facility walkthrough covers HVAC systems, lighting, building controls, compressed air, and production loads. Thermal imaging, equipment logging, and control system review, identifies hidden inefficiencies.', deliv: 'Facility condition assessment · equipment inventory' }, { num: '03', label: 'Identify ECM', title: 'Quantify', icon: 'list-ordered', copy: 'Specific measures are identified and quantified: HVAC recommissioning, BAS reprogramming, LED lighting, controls upgrades. Each measure is presented with an estimated annual saving and a preliminary payback period.', deliv: 'Ranked ECM list · savings estimates · payback' }, { num: '04', label: 'Baseline model + report', title: 'Document', icon: 'file-text', copy: 'The audit report documents the verified baseline, the identified measures, eligible incentives, GHG reduction opportunities, and how distributed energy resources like solar and battery storage can benefit the operation.', deliv: 'Audit report · baseline model · incentive eligibility summary' }]; return (
The process

From utility data to operational insight.

An energy audit establishes how the facility actually consumes power — identifying where operating costs, demand charges, and inefficiencies exist, and where energy infrastructure investments may create the strongest return.

{steps.map((s) =>
STEP {s.num} · {s.label}

{s.title}

{s.copy}

Deliverable
{s.deliv}
)}
); }; Object.assign(window, { AuditHero, AuditBenefits, AuditBenefitsCard, AuditProofStrip, AuditProcess, AUDIT_ACCENT, AUDIT_ACCENT_SOFT });