const FAQS = [ { q: "How do you make money? What are your fees?", a: "We charge a flat annual planning fee (₹50,000–₹2,50,000 depending on complexity) and a 0.5–1.0% AUM fee for managed portfolios. We use direct mutual funds — zero commission — so we have no incentive to push specific products." }, { q: "What's the minimum investment to work with you?", a: "Our planning service starts at any size. For our discretionary wealth management practice, we work with portfolios of ₹50 lakh and above — including investments held elsewhere." }, { q: "Are you registered and qualified?", a: "Yes. MaxWealth is an AMFI Registered Mutual Fund Distributor, a Certified Financial Planner (FPSB) and an MSME-registered firm, backed by 20+ years of experience in financial services and banking." }, { q: "Do you work with NRIs and overseas Indians?", a: "Yes — roughly 28% of our client base is NRI. We handle FEMA-compliant onboarding, NRE/NRO/RFC structuring, DTAA positioning, and global diversification under the LRS scheme." }, { q: "Will I get a single point of contact?", a: "Yes. Every client has a dedicated planner and an associate. You'll never be routed through a call centre or a chatbot. WhatsApp included." }, { q: "How is this different from a robo-advisor or my bank's wealth desk?", a: "Robo-advisors give you an algorithm; banks give you whichever fund pays the highest commission this quarter. We give you a person who knows your kids' names, your tax slab and your fears." }, ]; const TeamFaq = () => { const [openIdx, setOpenIdx] = useState(0); return (

Before you book a call.

Still have a question? Write to maxwealthfin@gmail.com — we reply within a working day.

Book a consult
{FAQS.map((f, i) => { const isOpen = openIdx === i; return (

{f.a}

); })}
); }; window.TeamFaq = TeamFaq;