/* ============================================================ Agency BRN — Growth Systems + FAQ sections ============================================================ */ /* ---------- Growth Systems ---------- */ function GrowthSystems() { const { t } = React.useContext(window.LanguageContext); const icons = [ , , , , , , ]; return (
{t.growth.eyebrow}

{t.growth.h2A} {t.growth.h2Grad} {t.growth.h2B}

{t.growth.lede}

{t.growth.items.map((item, i) => (
{icons[i]} 0{i + 1}

{item.title}

{item.body}

))}
); } /* ---------- FAQ ---------- */ function FAQSection() { const { t } = React.useContext(window.LanguageContext); const [open, setOpen] = React.useState(0); const faqSchema = { "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": t.faq.items.map(item => ({ "@type": "Question", "name": item.q, "acceptedAnswer": { "@type": "Answer", "text": item.a } })), }; return (
{t.faq.eyebrow}

{t.faq.h2}

{t.faq.lede}

{t.cta}
{t.faq.items.map((item, i) => (
{ if (e.target.open) setOpen(i); }} > {item.q}
{item.a}
))}