/* ===== Growing Now — sections (process, about, cta, footer) ===== */ (function () { const { useEffect, useRef, useState } = React; const Icon = window.Icon; const Reveal = window.Reveal; const SectionHead = window.SectionHead; /* ---------- PROCESS ---------- */ function Process({ L, lang }) { const byId = window.GN.byId; return (
{window.GN.process.map((p, i) => { const a = byId[p.agent]; return (
{p.n}
{a.name}

{p.t[lang]}

{p.d[lang]}

); })}
); } window.Process = Process; /* ---------- ABOUT ---------- */ function About({ L, lang }) { return (
{L.about_eyebrow}

{L.about_title}

{L.about_p}

{lang === 'es' ? 'Atendemos negocios en Naples, Southwest Florida y de forma remota en Estados Unidos.' : 'We serve businesses in Naples, Southwest Florida, and remotely across the United States.'}

{window.GN.agents.map((a, i) => (
{a.name}
{a.name}
{a.role[lang]}
))}
); } window.About = About; /* ---------- CTA ---------- */ function CTA({ L, lang, onStart, onChat }) { const zuki = window.GN.byId.zuki; return (
Zuki
{L.cta_eyebrow}

{L.cta_title}

{L.cta_sub}

); } window.CTA = CTA; /* ---------- FOOTER ---------- */ function Footer({ L, lang }) { const go = (id) => { const el = document.getElementById(id); if (el) el.scrollIntoView({ behavior: 'smooth' }); }; const links = [['agents', L.nav_agents], ['services', L.nav_services], ['process', L.nav_process], ['about', L.nav_about], ['contact', L.nav_contact]]; const SocialBtn = ({ href, icon }) => ( { e.currentTarget.style.transform = 'translateY(-2px)'; e.currentTarget.style.color = 'var(--green-d)'; }} onMouseLeave={e => { e.currentTarget.style.transform = ''; e.currentTarget.style.color = 'var(--blue)'; }}> ); return ( ); } window.Footer = Footer; })();