// CONTACT — Lead form, channels, location card const ContactHero = () => (
Contact · Brief us Tell us what you're
building.

Spec sheet within 48 hours of a complete brief. No NDA fee. Real human reply, never a portal.

); const ContactForm = () => { const [sent, setSent] = React.useState(false); const [interest, setInterest] = React.useState([]); const togg = (k) => setInterest(interest.includes(k) ? interest.filter(x=>x!==k) : [...interest, k]); const submit = (e) => { e.preventDefault(); setSent(true); }; if (sent) return (
Brief received · SSL-26-{String(Math.floor(Math.random()*9000)+1000)} You're on the list.

S. Okafor will reply within one business day with a spec sheet, sample lead times, and a short list of clarifying questions.

); return (
Interested in
{SERVICES.map(s => { const active = interest.includes(s.id); return ( ); })}