/* Services — clean light cards, high-contrast text, vibrant accents */ function Services() { // Cursor-tracking shine on each service card. const onCardMove = (e) => { const r = e.currentTarget.getBoundingClientRect(); const x = ((e.clientX - r.left) / r.width) * 100; const y = ((e.clientY - r.top) / r.height) * 100; e.currentTarget.style.setProperty("--shine-x", x + "%"); e.currentTarget.style.setProperty("--shine-y", y + "%"); }; const items = [ { num: "01", tag: "Design", title: "Custom website design", body: "Designed from scratch for your business — not picked off a template shelf. Responsive, fast, and easy to update.", tint: "#0F8C5F", // emerald tintText: "#0B7349", // darker for tag/link readability icon: ( ), }, { num: "02", tag: "Discovery", title: "SEO & AI answer engines", body: "Get found on Google, ChatGPT, and Perplexity. Premium adds structured AEO so AI assistants surface your business.", tint: "#E68A19", // amber tintText: "#B66B0A", // darker amber for readable text icon: ( ), }, { num: "03", tag: "Infrastructure", title: "Hosting, domain & email", body: "EU-hosted with SSL, backups, your own domain and email — all handled. You'll never see a renewal email.", tint: "#8B5CF6", // lighter plum tintText: "#6D40D9", // darker plum for text icon: ( ), }, { num: "04", tag: "Support", title: "Maintenance & updates", body: "Premium includes unlimited edits and new pages. Standard includes monthly edits. Starter gets help on-demand.", tint: "#E04E66", // coral tintText: "#B5384C", // darker coral for text icon: ( ), }, ]; return (
What we do

Everything your business needs to be online.

One studio, one subscription. Design, hosting, domain, email, and SEO — all sorted, all included.

{items.map((it, i) => (
{it.num}
{it.tag}

{it.title}

{it.body}

))}
); } window.Services = Services;