Google's studies show an uncomfortable truth: 40% of visitors abandon a site that takes more than 3 seconds to load. That means if your site is slow, you're losing nearly half your potential leads before they even see your portfolio.
It's not theory. It's something you see directly in Google Analytics, in Search Console, in the conversion rate from your contact form.
The numbers that matter
- 0-1 second — the user stays, reads, navigates.
- 1-3 seconds — bounce rate goes up by 32%.
- 3-5 seconds — bounce rate goes up by 90%.
- over 5 seconds — you lose 70%+ of visitors.
Every 100ms saved at load = ~1% more conversions. For a site with 1,000 visitors/month, that's 12 extra leads per year — just from speed.
Why your site is slow (usually)
- Uncompressed images — a 4MB PNG where an 80KB WebP would do.
- Blocking scripts — huge JS libraries loaded in head, no
deferorasync. - No caching — every visitor downloads everything again, even though 90% is identical from one visit to the next.
- Bad hosting — overloaded server, no CDN, no HTTP/2.
- Unoptimized code — slow DB queries, missing indexes, inefficient server-side rendering.
What we do on a GateHex site
- Images auto-converted to WebP with JPG fallback.
- Native lazy loading for below-the-fold images.
- JavaScript split: critical inline, the rest deferred.
- Aggressive cache for static (1 month), no-cache for HTML (always fresh).
- Brotli/Gzip compression on all text-based assets.
- Auto-detect device — on slow phones, heavy animations turn off automatically.
- CSP + security headers, no overhead.
How to measure your site today (free)
- Go to pagespeed.web.dev (Google).
- Enter your URL, click "Analyze".
- Look at the "Mobile" score (more important than Desktop).
- Under 50 = you have a problem. 50-90 = ok but improvable. 90+ = you're top-tier.
Bonus: the same tool tells you exactly what to optimize, in order of impact. Free, anyone.
A fast site is not a technical detail. It's a business decision that shows up directly in sales.
Want to see where you stand vs. competitors? Send us your site URL here and we'll do a quick analysis, free. See exactly what each extra second costs you.