function Hero() { return (
Enhance · Protect · Maintain

Premium Mobile
Car Detailing
Across Staffordshire

Professional detailing, paint enhancement and ceramic coating — delivered directly to your driveway. Showroom results, total convenience.

{REVIEW_STATS.rating} · {REVIEW_STATS.count} Google reviews
Fully insured · We come to you
); } function TrustStrip() { const items = [ { icon: 'award', t: '5-Star Rated', s: 'Across Google & Facebook' }, { icon: 'car', t: 'We Come To You', s: 'Fully mobile, self-sufficient' }, { icon: 'droplet', t: 'Premium Products', s: 'Pro-grade, paint-safe' }, { icon: 'shield', t: 'Fully Insured', s: 'Peace of mind, every time' }, ]; return (
{items.map((it, i) => (
{it.t}
{it.s}
))}
); } function ServicesSection() { return (
Our Detailing Packages

Four tiers of shine

From monthly maintenance to a full multi-stage showroom transformation — there's a package for every vehicle and budget.

{SERVICES.map((s, i) => )}
); } function DiamondSection() { const d = DIAMOND_SERVICE; return (
Flagship Package

Our most exclusive detail

{d.cover ? Diamond Detail : }
Most Exclusive
05 · Ultimate Detail

Diamond Detail

{d.blurb}

    {d.includes.slice(0, 6).map((it, i) => (
  • {it}
  • ))}
From
£500
Ceramic Included {d.time}
); } function BeforeAfterFeature() { return (
The MVH Difference

See the
transformation

Drag the slider to reveal a real-world enhancement detail. Swirls removed, gloss restored, protection sealed — all on the customer's own driveway.

    {['Multi-stage decontamination & clay treatment', 'Machine polish to remove swirls & marring', 'Gloss boost and long-lasting protection'].map((t, i) => (
  • {t}
  • ))}
); } function WhyMVH() { const points = [ { icon: 'car', t: 'Truly Mobile', s: 'We arrive fully equipped with our own power and water. All you provide is the vehicle.' }, { icon: 'droplet', t: 'Premium Products Only', s: 'Professional, paint-safe chemicals and the finest coatings — never supermarket shortcuts.' }, { icon: 'sparkle', t: 'Obsessive Detail', s: 'Every shut, vent and panel. We treat each car as if it were our own.' }, { icon: 'shield', t: 'Protected & Insured', s: 'Fully insured work and durable protection that keeps your finish looking its best.' }, ]; return (
Why Choose MVH

Detailing, done properly

{points.map((p, i) => (

{p.t}

{p.s}

))}
); } const HOME_FAQ = [ { q: 'Do you really come to my home or work?', a: 'Yes — MVH is fully mobile. We arrive completely self-sufficient with our own power and water supply, so we can detail your vehicle on your driveway, at your workplace or anywhere with reasonable access across Staffordshire.' }, { q: 'How long does a detail take?', a: 'It depends on the package and the vehicle\'s condition. A Bronze maintenance detail takes 1–1.5 hours, a Silver full valet 2–3 hours, a Gold enhancement 4–6 hours, and a Platinum or Diamond detail a full day or more.' }, { q: 'How is pricing decided?', a: 'Pricing is based on the size and condition of your vehicle. Each service page shows a clear range for regular and large vehicles — message us with a few photos for an exact, no-obligation quote.' }, { q: 'What areas do you cover?', a: 'We cover Hednesford, Cannock, Burntwood, Rugeley, Lichfield, Stafford, Sutton Coldfield, Featherstone, Huntington, Pye Green, Burton upon Trent and the surrounding areas.' }, { q: 'Can I add ceramic coating to my detail?', a: 'Absolutely. Ceramic coatings are available as an add-on to our Gold and Platinum packages, and are already included in the Diamond Detail. Our paintwork coating and wheel face coating each provide 2 years of lasting protection.' }, { q: 'What is the Diamond Detail?', a: 'The Diamond Detail is our most exclusive package — a full 2-stage machine polish, complete interior restoration, engine bay detail, plus a 2 year paintwork ceramic coating and 2 year wheel face ceramic coating included. It\'s the ultimate transformation for vehicles that deserve the very best.' }, ]; function FAQSection() { return (
Common Questions

Good to know

); } function App() { React.useEffect(() => { injectSchema({ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: HOME_FAQ.map(f => ({ '@type': 'Question', name: f.q, acceptedAnswer: { '@type': 'Answer', text: f.a } })) }); }, []); return (
); } ReactDOM.createRoot(document.getElementById('root')).render();