// sol-benefits.jsx // Solutions Page (Commercial Solar) — "Why commercial solar" benefits section. // // Lives between Hero and Proof Strip. Conversion-driven: answers the prospect's // "why should I care" before any spec or process talk. Four reasons that turn // rooftop into a business decision: // 01 · Turn OpEx into ROI (operating margin lift, sage) // 02 · Maximize incentives (tax stack, amber) // 03 · Visible ESG progress (reputation & reporting, sage) // 04 · Hedge utility inflation (30-yr fixed kWh cost, amber) // // Card vocabulary is original to Green Integrations: editorial document-style, // mono numerals, sage/amber stat accents — same family as the hero spec sheet // and the proof-strip ribbon. No icon-on-yellow-dot competitor language. // ============================================================ // SolBenefitsCard — single benefit tile // ============================================================ const SolBenefitsCard = ({ 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, }}> {/* top rule — appears on hover */} ); }; // ============================================================ // SolBenefits — section // ============================================================ const SolBenefits = ({ showClosingBand = true }) => { const cards = [ { num: '01', accent: 'sage', statValue: '30-Year LCOE', label: 'Operating margin', title: 'Generate electricity at a predictable long-term cost.', body: 'Commercial rooftop solar can deliver levelized electricity costs as low as $0.04/kWh over the life of the system — compared to commercial utility rates that can exceed $0.20/kWh all-in.' }, { num: '02', accent: 'sage', statValue: 'Increase NOI', label: 'Incentive stack', title: 'Turn utility spend into property value.', body: 'Every dollar not paid to the utility improves Net Operating Income and increases asset value — converting a recurring expense into a long-term operating asset.' }, { num: '03', accent: 'sage', statValue: 'Up to 75% Funded', label: 'ESG & reputation', title: 'Capture available incentives and tax credits.', body: 'On-site generation is the most legible ESG action a building can take — readable by tenants, investors, and procurement scorecards alike.' }, { num: '04', accent: 'sage', statValue: 'Scope 2 Reduction', label: 'Inflation hedge', title: 'Lower building emissions with on-site generation.', body: 'Commercial solar directly reduces Scope 2 emissions while supporting ESG reporting, procurement requirements, and long-term decarbonization targets.' }]; return (
{/* faint right-corner panel-row hairline motif, matches Proof Strip */}
{/* ============================================================ Header — eyebrow + headline + supporting line, asymmetric ============================================================ */}
Why commercial solar

Commercial solar is long-term cost control - not just electricity.

Commercial solar lowers operating costs, improves property economics, captures government incentives, and stabilizes long-term energy pricing — while reducing Scope 2 emissions.

{/* ============================================================ Card grid — 4 across, 1px dividers between cells. Background is a thin slate so the dividers read as hairlines. ============================================================ */}
{cards.map((c) => )}
{/* ============================================================ Closing band — original positioning + primary CTA. Replaces the role of the "Unlock hidden value" tagline + paragraph + ROI button on the reference, but in GI vocabulary. ============================================================ */} {showClosingBand &&

Green Integrations designs, installs, and operates commercial solar systems that reduce operating costs and deliver long-term energy savings — from feasibility and incentives through construction and ongoing support.

{/* */}
}
); }; Object.assign(window, { SolBenefits, SolBenefitsCard });