const Footer = () => { const [email, setEmail] = useState(""); const [submitted, setSubmitted] = useState(false); return ( <> {/* Consult CTA — deep green (no gold bg) with contact card */}
{/* Left — pitch + form */}
Let's talk

The first conversation is on us.

60 minutes. No sales pitch. You leave with a one-page summary of what we'd actually do — yours to keep, advisor or not.

{!submitted ?
{e.preventDefault();if (email) setSubmitted(true);}} style={{ marginTop: 36, display: "flex", alignItems: "stretch", border: "1px solid var(--hairline-light)", borderRadius: 8, overflow: "hidden", maxWidth: 540 }}> setEmail(e.target.value)} style={{ flex: 1, border: 0, background: "transparent", padding: "16px 18px", fontSize: 16, fontFamily: "Poppins", color: "var(--cream)", outline: "none" }} />
:
We've got it.
A planner will reach out within one working day.
}
{["No obligation", "No product pitch", "Your data, never sold"].map((x) => {x.toUpperCase()} )}
{/* Right — contact card */}
Reach us
B-412, Bestech Business Tower
Sector 68, Mohali
Punjab, India
+91 97792 70009 Mon–Sat · 10:00–19:00 IST maxwealthfin@gmail.com
{/* Decorative mark */}
{/* Compliance marquee */} {/* Footer */} ); }; // Tiny icon row for contact card const ContactRow = ({ icon, label, children }) => { const icons = { pin: , phone: , mail: }; return (
{icons[icon]}
{label}
{children}
); }; window.Footer = Footer;