// Services section — editorial grid const SERVICES = [ { id: 'formation', icon: 'building', name: 'Company formation', blurb: 'Mainland LLC, Free Zone or Offshore — pick the right vehicle for your business in plain English.', tag: 'Most popular', img: 'media/service-mainland.webp', ph: 'Photo — licence signing or mainland office' }, { id: 'visas', icon: 'id', name: 'Visas & Golden Visa', blurb: 'Residence, freelancer, remote-work, dependent, VIP medical & EID — and the UAE Golden Visa for investors.', img: 'media/brand-consultation-visual.webp', ph: 'Photo — visa medical or EID issuance' }, { id: 'licence', icon: 'shield', name: 'Trade licence', blurb: 'New issue, renewal, modification, freeze, cancellation, liquidation — handled by our PRO desk.', img: 'media/service-freezone.webp', ph: 'Photo — PRO desk / trade licence document' }, { id: 'bank', icon: 'bank', name: 'Corporate bank account', blurb: 'Introductions and prep for UAE banks — KYC, board resolutions, address proof, the lot.', img: 'media/brand-lifestyle.webp', ph: 'Photo — bank meeting or card / cheque book' }, { id: 'tax', icon: 'calc', name: 'VAT & corporate tax', blurb: 'Registration, bookkeeping, filings, year-end. UAE corporate tax compliance for SMEs.', img: 'media/office-team-photo-1.webp', ph: 'Photo — accountant at work / tax filing' }, { id: 'office', icon: 'office', name: 'Office & flexi-desk', blurb: 'Serviced rooms, hot desks and registered addresses — visa-eligible workspace at our Bay Square HQ.', img: 'media/office-serviced-rooms.webp', ph: 'Photo — serviced rooms / Bay Square HQ' } ]; const T_SVC = { en: { eyebrow: 'What we do', h: 'One partner, end-to-end.', lede: "We don't do bits of business setup. We do all of it — licensing, jurisdiction choice, visas, banking, tax and the unglamorous compliance that keeps your company live the year after." }, ar: { eyebrow: 'ماذا نقدّم', h: 'شريك واحد لكل خطوة.', lede: 'لا نقدّم أجزاء من خدمات تأسيس الشركات. نقدّمها بالكامل — الترخيص واختيار الولاية والتأشيرات والحسابات المصرفية والضرائب والامتثال.' } }; const ServiceCard = ({ s }) => (
{ e.currentTarget.style.transform = 'translateY(-3px)'; e.currentTarget.style.boxShadow = '0 14px 30px -16px rgba(11,31,51,0.18)'; }} onMouseLeave={e => { e.currentTarget.style.transform = ''; e.currentTarget.style.boxShadow = ''; }}>
{s.tag && {s.tag}}

{s.name}

{s.blurb}

Learn more
); const Services = ({ lang }) => { const t = T_SVC[lang]; return (
{t.eyebrow}

{t.h}

{t.lede}

{SERVICES.map((s) => )}
); }; Object.assign(window, { Services });