const SERVICES = [ { id: "bespoke", slug: "bespoke-wealth-architecture", code: "01", title: "Bespoke Wealth Architecture", long: "We design and engineer total financial ecosystems — structuring your liquid wealth, private holdings and legacy goals into a singular, resilient framework.", bullets: ["High-Value Asset Management", "Family Wealth Aggregation"], image: "https://images.unsplash.com/photo-1487958449943-2429e8be8625?w=1400&q=80" }, { id: "treasury", slug: "treasury-management", code: "02", title: "Treasury Management", long: "We make idle corporate cash work without compromising access — engineering funds flow and opening passive & smart-beta exposure across your treasury.", bullets: ["Bespoke Funds-Flow Engineering", "Passive & Smart-Beta Access"], image: "https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1400&q=80" }, { id: "nri", slug: "nri-services", code: "03", title: "NRI Services", long: "End-to-end planning for Indians abroad — FEMA-compliant onboarding, NRE/NRO/RFC structuring, DTAA positioning, and access to Indian markets from anywhere in the world.", bullets: ["NRE / NRO / RFC account strategy", "DTAA & dual-tax positioning", "PMS & AIF access for NRIs", "Property & inheritance planning"], image: "https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1400&q=80" }, { id: "alternatives", slug: "alternative-investment-vehicles", code: "04", title: "Alternative Investment Vehicles", long: "Our alternative vehicles grant qualified investors access to highly vetted, private-market opportunities engineered to capture alpha independent of broader market cycles.", bullets: ["Private equity & private credit", "AIF Category I / II / III", "Pre-IPO & venture access", "Market-neutral strategies"], image: "https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=1400&q=80" }, { id: "tracking", slug: "external-asset-tracking", code: "05", title: "External Asset Tracking", long: "Our platform features native Consolidated Account Statement (CAS) integration, allowing you to securely aggregate, reconcile and track off-platform investments and external holdings in real time.", bullets: ["CAS integration", "Intelligent data reconciliation", "Unified net-worth dashboard"], image: "https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1400&q=80" }, { id: "estate", slug: "nomination-estate-audits", code: "06", title: "Nomination & Estate Readiness Audits", long: "A meticulous, asset-by-asset forensic review designed to ensure that your portfolios, private equity holdings and corporate entities are legally cleared for instant, frictionless transmission.", bullets: ["Comprehensive nomination mapping", "Asset-by-asset transmission readiness", "Will & succession coordination"], image: "https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80" }, ]; const Services = () => { const [active, setActive] = useState("bespoke"); const cur = SERVICES.find(s => s.id === active); const __b = window.__BASE || ""; return (
§ SERVICES

A single desk for every money question .

{/* Services panel */}
{/* Left: list */}
{SERVICES.map(s => { const isActive = active === s.id; return ( ); })}
{/* Right: detail */}

{cur.long}

{cur.bullets.map((b, i) => (
{b}
))}
Explore {cur.title}
); }; window.Services = Services;