// led-benefits.jsx // LED Lighting Solutions Page — "LED Lighting Retrofits" benefits section. // Mirrors the SolBenefits layout from Commercial Solar: four-card grid with // editorial header + closing CTA band on Paper Cream. // ============================================================ // LedBenefitsCard — single benefit tile (parallels SolBenefitsCard) // ============================================================ const LedBenefitsCard = ({ num, label, statValue, statUnit, title, body, cta, accent = 'sage', }) => { const [hovered, setHovered] = React.useState(false); const accentColor = accent === 'amber' ? 'var(--gi-color-gold)' : '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 28px', 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, }}> ); }; // ============================================================ // LedBenefits — section // ============================================================ const LedBenefits = ({ showClosingBand = true }) => { const cards = [ { num: '01', accent: 'sage', statValue: 'Up to 80%', label: 'ENERGY REDUCTION', title: 'Reduce lighting electricity consumption immediately.', body: 'Modern LED systems significantly lower lighting energy use while improving operational efficiency across the facility.', }, { num: '02', accent: 'sage', statValue: '50,000+ hr', label: 'LOWER MAINTENANCE', title: 'Reduce fixture failures and maintenance interruptions.', body: 'Commercial LED fixtures last significantly longer than HID and fluorescent systems, reducing replacement and labor costs.', }, { num: '03', accent: 'sage', statValue: 'Improved Visibility', label: 'OPERATIONAL PERFORMANCE', title: 'Improve lighting quality across critical work areas.', body: 'Uniform lighting improves visibility, safety, and working conditions in production, warehousing, and loading environments.', }, { num: '04', accent: 'sage', statValue: 'Incentive Funding', label: 'REBATE SUPPORT', title: 'Lower project cost through available programmes.', body: 'Utility incentives and lighting controls can significantly improve project economics and shorten payback periods.', }]; return (
{/* Header */}
LED Lighting Retrofits

Four reasons LED retrofits improve {' '} facility performance.

LED retrofits are among the fastest-return energy upgrades in commercial and industrial facilities — reducing electricity consumption, lowering maintenance requirements, and improving operational visibility across the building.

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

Green Integrations designs and manages commercial LED retrofit projects for manufacturing, warehousing, food processing, agriculture, and commercial facilities across Canada — including lighting design, incentive support, installation coordination, and long-term performance planning. The objective is simple: reduce operating costs, improve facility performance, and create measurable ROI with minimal operational disruption.

{/* */}
}
); }; Object.assign(window, { LedBenefits, LedBenefitsCard });