// ============================================================ // LedProofStripMobile — "Proof in numbers" (LED Lighting · Wise Blue) // Desktop section is the approved infographic, reproduced verbatim // from src/led-hero-process.jsx. A purpose-built MOBILE layout // (< 900px) is added beneath it, mirroring the house pattern // established on the Energy Audit page (AuditFinancial) and the // Commercial Solar page (SolProofStrip). // // Same fonts (Inter / JetBrains Mono), same brand palette // (Wise Blue #0F2133, Sage #5E8F6D, Gold #D4A24C), same monogram // watermark, same spacing language. Nothing reinterpreted. // ============================================================ const LED_AMBER_M = '#D4A24C'; const LED_SAGE = 'var(--gi-sage-accent)'; const LedProofStripMobile = () => { // Lifecycle proportions: 15-yr commercial LED fixture life. Payback (1–3 yrs) // shown at its upper bound so the segment honestly visualizes the worst case. // Net savings = remainder of fixture life. const TOTAL_YEARS = 15; const PAYBACK_END = 3; const paybackPct = (PAYBACK_END / TOTAL_YEARS) * 100; // 20 const savingsPct = 100 - paybackPct; // 80 const yearTicks = [0, 3, 6, 9, 12, 15]; return ( <> {/* ============================================================ DESKTOP / TABLET (≥ 900px) — approved infographic, unchanged ============================================================ */}
{/* faint amber sweep — top edge */}
{/* ============================================================ MOBILE (< 900px) — purpose-built vertical layout Mirrors the AuditFinancial / SolProofStrip mobile pattern: monogram wash, eyebrow + 2-line headline, blocked sections with mono labels, accent-edged cards, the desktop's split-bar + range-bar visuals. ============================================================ */}
{/* Subtle monogram watermark, dialled way back for small screens */}
{/* Header */}
Proof in numbers

Pay it back in three.
Save for fifteen.

The economics of a commercial LED retrofit, shown with real reductions from completed GI installations.

{/* Lifecycle — compact proportional ribbon + two accent-edged cards */}
15-year lifecycle Yr 0 → 15
{/* Compact ribbon — same chart logic as desktop, scaled for mobile */}
Yr 0 Yr 3 Yr 15
Payback
1–3 yrs

Retrofit pays for itself through energy savings and saveONenergy incentives.

Net savings · over fixture life
15 year rated fixture life

Commercial-grade LED fixtures continuing to deliver reduced lighting load and demand charges well past payback.

{/* Proof points — two stacked cards */}
What it returns
Aryzta Foods · lighting demand · 115.15 → 38.97 kW
66.2%
lighting load eliminated
SAVED · 66
LED · 34
Typical lighting reduction · completed GI retrofits
40–70%
across completed GI retrofits
0%50%100%
{/* Display toggle + mobile styles */} ); };