How Site Speed Affects Rankings and Enquiry Rates
For every second your website takes to load, you lose roughly 7% of conversions.
That's not an assumption. It's maths. Amazon found that every 100ms slowdown cost them 1% in sales. Google found that pages taking 5+ seconds to load had bounce rates 90% higher than pages loading in 1 second.
Here's what that means for your business:
If your site currently takes 4 seconds to load and you get 100 enquiries monthly, you're losing 21 enquiries right now because of speed. Across a year, that's 252 lost enquiries. At your average deal value, that's genuine revenue on the table.
Speed also affects SEO rankings directly. Google uses Core Web Vitals as a ranking factor. Slow sites get pushed down. Fast sites get a boost.
This guide walks you through exactly how much speed matters, how to measure your current performance, and where to focus your effort for the biggest improvement.
The Direct Business Impact of Site Speed
Speed affects two things that matter to your bottom line: SEO rankings and conversion rates.
Speed and SEO Rankings
Google has been clear: page speed is a ranking factor. Not the most important one—content and backlinks still matter more—but measurable and real.
Core Web Vitals are Google's specific speed metrics:
- LCP (Largest Contentful Paint): How long until the user sees the main content. Google wants this under 2.5 seconds.
- FID (First Input Delay): How quickly your page responds to user interaction. Google wants this under 100 milliseconds.
- CLS (Cumulative Layout Shift): How much the page layout shifts around as it loads. Google wants this near zero.
Pages with good Core Web Vitals get a ranking boost. Pages with poor metrics get ranked lower.
This is particularly important for competitive keywords. When multiple sites have similar authority and content quality, speed becomes the differentiator.
A UK plumbing company we worked with was ranking position 4 for "emergency plumber near me" searches. They were behind three competitors. We optimised their Core Web Vitals. LCP improved from 3.8 seconds to 1.9 seconds. Three months later, they were ranking position 2.
No new content. No new backlinks. Just speed.
Speed and Conversion Rates
Speed affects how many enquiries you actually get from ranked positions.
Research across e-commerce, SaaS, and service businesses consistently shows:
- 0-1 second load time: Baseline conversion rate (100%)
- 1-2 seconds: ~94% conversion rate (6% drop)
- 2-3 seconds: ~87% conversion rate (13% drop)
- 3-4 seconds: ~79% conversion rate (21% drop)
- 4-5 seconds: ~70% conversion rate (30% drop)
- 5+ seconds: ~38% conversion rate (62% drop)
The curve is dramatic. After 3 seconds, you're leaving money on every page view.
Here's the business math:
Scenario: Your website currently takes 3.5 seconds to load.
- Monthly organic visitors: 1,000
- Current conversion rate: 10% = 100 enquiries
- Average customer value: £2,500
Speed improvement: 3.5s → 1.8s (realistic target) New conversion rate: 10% → 12% = 120 enquiries Monthly additional revenue: 20 × £2,500 = £50,000 Annual impact: £600,000
That's not hypothetical. That's the direct revenue impact of speed.
How to Measure Your Current Site Speed
Before you optimise, measure. You can't improve what you don't track.
Google PageSpeed Insights
Go to pagespeed.web.dev. Enter your homepage URL. Google gives you a score (0-100) and breaks down your Core Web Vitals.
Test your mobile and desktop versions separately. Mobile speed is more important (more users access via phone).
Google PageSpeed Insights is the official Google tool. That's who's ranking you. Use their numbers.
Core Web Vitals Report in Google Search Console
Log into Google Search Console. Go to Core Web Vitals report. This shows real data from actual user visits to your site, not synthetic testing.
This is important: PageSpeed Insights shows lab data (controlled conditions). Search Console shows field data (real user experience). Both matter, but field data is real performance.
If Google Search Console shows poor Core Web Vitals, that's your actual problem. Lab data is just indicating where issues likely exist.
WebPageTest
Go to webpagetest.org. Enter your URL. This tool simulates real user conditions and gives detailed performance breakdowns.
Unlike PageSpeed Insights, WebPageTest lets you see exactly what's happening during page load. It waterfall charts show which elements are causing delays.
This is powerful for diagnosing specific problems.
Your Analytics
Don't forget to check Google Analytics. Go to Behaviour → Site Speed → Page Timings.
This shows actual page load time for your real users. Compare fast pages (high conversion) with slow pages (low conversion). Often you'll find correlation.
What's Actually Slowing Down Your Site
Speed issues have specific causes. Knowing the cause lets you fix it correctly.
Image Optimisation
Images are usually the biggest culprit. An unoptimised hero image can be 5MB. The same image properly optimised might be 300KB. That's 16× smaller for zero visual difference.
Most websites have images that are:
- Too large (3000×2000px displayed at 800×500px)
- Wrong format (PNG when WebP would be smaller)
- Uncompressed
Optimise by:
- Compressing images (use TinyPNG or ImageOptim)
- Using WebP format (smaller than JPEG, supported by 95%+ browsers)
- Right-sizing (display at actual size needed, not larger)
- Lazy loading (don't load images until user scrolls near them)
This single fix often improves LCP by 0.5-1.5 seconds.
Code Splitting and Minification
Large JavaScript and CSS files slow down pages. You probably have:
- Multiple plugins loading their own JavaScript
- Unminified code (the readable version, not compressed)
- Code that runs on every page when it's only needed on specific pages
Solutions:
- Minify JavaScript and CSS (run through a minifier)
- Defer non-critical JavaScript (load it after the page)
- Remove unused plugins
- Use code splitting (load only what's needed)
Server Response Time
TTFB (Time To First Byte) is how long until your server responds to a request. High TTFB means even a fast connection can't make up for it.
TTFB depends on:
- Server quality (shared hosting = slow)
- Server location (UK users accessing Australian servers = slow)
- Database efficiency
- Caching strategy
For service businesses, TTFB should be under 600ms. Ideally under 300ms.
If your TTFB is high:
- Upgrade hosting (shared hosting to managed hosting)
- Enable caching (Cloudflare, browser caching)
- Optimise database queries
- Use a CDN (content delivery network)
Too Much Third-Party Code
Chat widgets, analytics trackers, ads, form builders—each adds overhead. Some sites have 10+ third-party scripts running.
Each one adds:
- Download time
- Execution time
- Memory overhead
- Potential network requests
Audit your third-party code. Keep what drives value. Remove the rest. Lazy-load what you must keep (so it doesn't slow initial page load).
Your Site Speed Optimisation Roadmap
You can't fix everything at once. Here's where to focus:
Priority 1: Image Optimisation
Return on effort: High. Time investment: 2-4 hours for initial audit and setup.
- Export all images used on homepage and top-performing pages
- Compress using TinyImage or ImageOptim
- Switch to WebP format
- Implement lazy loading
Impact: Typically 0.5-1.5 second improvement in LCP. Often solves CLS issues (images loading later than expected).
Priority 2: Remove Unnecessary Code
Return on effort: High. Time investment: 2-3 hours.
- Audit third-party scripts (Google Tag Manager, chat widgets, calendars)
- Disable ones not driving clear ROI
- Defer loading of non-critical scripts
- Remove unused CSS
Impact: 0.3-0.8 second improvement typically.
Priority 3: Server Response Time
Return on effort: Medium. Time investment: 1 hour to assess, potentially more if making changes.
- Check current TTFB using WebPageTest
- If over 600ms, consider hosting upgrade or CDN
- Enable server caching
Impact: 0.2-0.5 second improvement if making infrastructure changes.
Priority 4: Advanced Optimisation
Return on effort: Low. Time investment: 4-8 hours (and ongoing).
- Code splitting (loading specific JavaScript only on pages that need it)
- Critical rendering path optimisation
- Database query optimisation
- Advanced caching strategies
Only pursue these after priorities 1-3 are addressed. Return diminishes as you optimise further.
Real-World Example: Manchester Marketing Agency
A Manchester marketing agency's homepage took 4.2 seconds to load on mobile. Mobile conversion rate was 6%. Desktop (2.1 seconds) was 12%.
Speed audit revealed:
- Hero image: 4.2MB (should be 200KB)
- 3 unused plugins adding 200KB JavaScript
- TTFB: 850ms (hosting was a bottleneck)
Fixes:
- Compressed/optimised hero image (3 hours)
- Removed unused plugins (30 minutes)
- Upgraded hosting + enabled caching (1 hour setup + £30/month extra cost)
Total investment: 4.5 hours + £30/month
Results after 3 weeks:
- Mobile load time: 4.2s → 1.8s
- Mobile conversion: 6% → 8.5%
- Desktop remained similar
Additional qualified leads from improved mobile: 2-3 per month Annual revenue impact: 30-36 extra leads × £1,500 average = £45,000 - £54,000
ROI: Infinite (small upfront effort, permanent improvement).
Core Web Vitals Scoring: What You're Actually Targeting
Google uses this scoring for Core Web Vitals:
LCP (Largest Contentful Paint)
- Good: 0-2.5 seconds
- Needs improvement: 2.5-4 seconds
- Poor: Over 4 seconds
FID (First Input Delay)
- Good: 0-100ms
- Needs improvement: 100-300ms
- Poor: Over 300ms
CLS (Cumulative Layout Shift)
- Good: 0-0.1
- Needs improvement: 0.1-0.25
- Poor: Over 0.25
For SEO rankings, aim for all three in the "Good" category.
Common Mistakes When Optimising Site Speed
Mistake 1: Not measuring before optimising
You'll make changes and never know if they helped. Always baseline before starting.
Mistake 2: Obsessing over unnecessary microseconds
After you're consistently under 2 seconds LCP, additional optimisation rarely moves the needle. Get good. Don't chase perfect.
Mistake 3: Ignoring mobile performance
Most users access via mobile. Mobile speed is more important than desktop speed. Optimise mobile first.
Mistake 4: Assuming all traffic has fast connections
Some users have 4G on poor signal. Test on slow networks (use WebPageTest's throttling feature).
Mistake 5: Not documenting changes
Six months later, someone will accidentally re-upload the unoptimised image. Document what you optimised and why.
FAQ: Website Speed and SEO
Q: Will faster site speed improve my rankings?
A: Potentially, yes. Core Web Vitals are a ranking factor. If your competitors have similar content and backlinks, better speed can be the differentiator. Even if speed doesn't directly improve rankings, faster pages convert better, so the revenue impact is real.
Q: How much speed improvement is necessary?
A: Target LCP under 2.5 seconds. This puts you in the "good" category. Beyond that, returns diminish. Focus on getting good before chasing exceptional.
Q: Should I use a page builder like Webflow or WordPress?
A: WordPress and Webflow can both be fast. The issue isn't the platform—it's implementation. Slow WordPress sites have too many plugins. Slow Webflow sites have unoptimised images. Choose your platform, then optimise it properly.
Q: Does site speed affect my entire website ranking or just individual pages?
A: Individual pages are ranked on their own performance. A slow homepage doesn't hurt your blog rankings. But if your entire site is slow, it suggests hosting issues that affect all pages.
Q: Should I prioritise speed or content quality?
A: Both. But if you have to choose, better content ranks better than faster pages with worse content. That said, most businesses can improve both with modest effort.
Q: How often should I test site speed?
A: At minimum monthly. If you're making infrastructure changes, test before and after. If you add major new functionality, test it. Build speed testing into your regular maintenance.
The Compound Advantage of Speed
Speed improvements compound.
A faster homepage → fewer bounces → more pages viewed per session → stronger engagement signals → potentially higher rankings.
Faster page → more conversions → more data → better understanding of customer behaviour → better content decisions → stronger conversions.
The first 0.5 seconds of improvement won't transform your business. But consistently maintaining fast performance—and continuously improving it—builds an advantage that's hard for competitors to match.
Speed is also one of the few SEO factors fully under your control. You can't control which backlinks your competitors get. You can't control their content quality. But you absolutely can control your site's speed.
Ready to Measure and Improve Your Site Speed?
Speed is money. Slow sites lose enquiries and rankings.
Our free speed audit and report measures your actual performance against your competitors and shows exactly where to focus for the biggest improvement.
We'll test:
- Your Core Web Vitals against industry benchmarks
- Your speed vs. top 3 competitors
- Specific optimisation opportunities ranked by impact
- Revenue impact of current speed
Get your speed audit today. See exactly how much speed is costing you.