How Page Speed Affects Conversions — With Real Numbers
By Emily Redmond, Data Analyst at Emilytics · April 2026
TL;DR: Every 1 second delay in page load reduces conversion rate by ~7%. A 2-second improvement can double your conversion rate. Page speed is your biggest leverage point.
A company optimized their page load time from 5 seconds to 2 seconds.
Before: 2% conversion rate After: 3.2% conversion rate
No design change. No copywriting. No new features.
Just fast pages.
That's a 60% improvement in conversion with zero product changes.
The Page Speed Benchmark
General rule: Every 1 second improvement in page load time = 7% conversion improvement
Example progression:
| Load Time | Conversion | Trend |
|---|---|---|
| 1 second | 5% | — |
| 2 seconds | 4.65% | -7% |
| 3 seconds | 4.33% | -7% |
| 4 seconds | 4.02% | -7% |
| 5 seconds | 3.73% | -7% |
| 8 seconds | 2.89% | -7% per second |
Going from 5 to 2 seconds = 3 second improvement = 21% improvement per second = 63% total improvement.
Actual numbers vary by industry, but the pattern holds.
How to Measure Page Speed
Tool 1: Google PageSpeed Insights (free)
- Go to pagespeedinsights.withgoogle.com
- Enter your URL
- Get scores for mobile and desktop (0-100)
- 90+ is great, 50-89 is okay, below 50 is bad
Tool 2: GTmetrix (free + paid)
- Monitors page speed over time
- Gives specific recommendations
- Better than PageSpeed for ongoing monitoring
Tool 3: WebPageTest (free + paid)
- Deep dive into load time breakdown
- See which assets are slow
- Good for troubleshooting
Metric to focus on: Largest Contentful Paint (LCP)
- This is the time until the main content is visible
- Under 2.5 seconds: good
- 2.5-4 seconds: fair
- Above 4 seconds: poor
How to Track Page Speed in GA4
GA4 doesn't measure page speed directly, but you can infer it:
- Slower pages have higher bounce rates
- Slower pages have shorter session durations
- Slower pages have lower conversion rates
To correlate page speed with conversion:
Measure load time externally (PageSpeed Insights) for key pages, then compare to GA4 conversion rates.
Example:
| Page | Load Time | Bounce | Conversion |
|---|---|---|---|
| Homepage | 2.1 sec | 35% | 3.2% |
| Product A | 3.5 sec | 48% | 2.1% |
| Product B | 4.8 sec | 62% | 1.2% |
| Checkout | 1.9 sec | 28% | 2.8% |
Pattern: slower pages = higher bounce, lower conversion.
Quick Wins for Page Speed
Fix 1: Compress Images (Biggest Impact)
Images usually account for 50-80% of page load time.
How to compress:
- Use WebP format (smaller than JPEG/PNG)
- Reduce image dimensions (don't use a 4000px image on a 400px display)
- Use lazy loading (load images only when visible)
Expected improvement: 30-50% faster load time
To test: Compress images on your homepage, measure load time before and after.
Fix 2: Minify CSS and JavaScript
Remove unnecessary characters from CSS/JS files.
How:
- Use CSS/JS minifiers (CSS-nano, UglifyJS)
- Most hosting platforms do this automatically
Expected improvement: 10-20% faster
Fix 3: Use a CDN (Content Delivery Network)
CDN serves your assets from servers near your users (not your single server).
Examples: Cloudflare (free tier available), AWS CloudFront, BunnyCDN
Expected improvement: 20-40% faster for users far from your server
Fix 4: Reduce Third-Party Scripts
Google Analytics, ads, chatbots, heatmaps—each adds load time.
How to optimize:
- Load scripts asynchronously (don't block page render)
- Lazy-load scripts (load after page interactive)
- Remove unused scripts
Expected improvement: 15-30% faster
Fix 5: Browser Caching
Tell browsers to cache assets (CSS, JS, images) so repeat visits are faster.
How: Set cache headers in your web server config
Expected improvement: 50%+ faster for returning visitors
Speed by Device
Mobile and desktop have different speeds:
| Device | Avg Load Time | Benchmark |
|---|---|---|
| Desktop (cable) | 2.5 sec | Target: 2.5s or less |
| Mobile (4G) | 4.5 sec | Target: 3s or less |
| Mobile (3G) | 8+ sec | Problem |
Mobile is significantly slower. Prioritize mobile speed.
Page Speed A/B Testing
Test: Current slow page vs. optimized fast page
| Version | Load Time | Conversion | Lift |
|---|---|---|---|
| Control (original) | 4.2 sec | 2% | — |
| Variant (optimized) | 2.1 sec | 3.2% | +60% |
This is a dramatic improvement. Most speed tests show 5-15% lift, but 60% is possible if you're starting very slow.
A/B Testing GA4: Measure the Winner covers how to measure this.
Core Web Vitals
Google now uses three metrics to rank pages (and they correlate with conversion):
| Metric | Good | Fair | Poor |
|---|---|---|---|
| LCP (Largest Contentful Paint) | <2.5s | 2.5-4s | >4s |
| FID (First Input Delay) | <100ms | 100-300ms | >300ms |
| CLS (Cumulative Layout Shift) | <0.1 | 0.1-0.25 | >0.25 |
You don't need to memorize these, but understand:
- LCP = how fast page loads (most important for conversion)
- FID = how fast page responds to clicks (less important)
- CLS = how stable the page is (important for mobile form filling)
Speed by Traffic Source
Different traffic sources correlate with different speeds (and conversions):
| Source | Avg Device | Avg Speed | Conversion |
|---|---|---|---|
| Organic | Mixed | 3.2s | 3% |
| Paid Search | Mixed | 3.5s | 2.2% |
| Paid Social | Mobile | 4.8s | 1.5% |
| Direct | Desktop | 2.1s | 4% |
Mobile traffic (paid social) is slower and converts worse. Optimize mobile speed first if that's your main traffic source.
The Roadmap: Speed Optimization Priority
Week 1: Measure current speed (PageSpeed Insights) Week 2: Identify slowest page (usually homepage) Week 3-4: Compress images (usually the biggest win) Week 4-5: Minify CSS/JS Week 5-6: Add CDN or reduce third-party scripts Week 6+: Monitor improvements in GA4 (conversion rate trend)
Frequently Asked Questions
Q: What page speed target should I aim for? A: Desktop: under 2.5 seconds. Mobile: under 3 seconds. If you're at 5+ seconds, you have major opportunities.
Q: How much conversion improvement should I expect from speed optimization? A: If you're currently at 4+ seconds, expect 20-50% improvement. If you're at 2-3 seconds, expect 5-10% improvement.
Q: Should I test speed separately from other changes? A: Yes. Speed is a separate CRO lever. Don't bundle speed optimization with design changes. Test each independently.
Q: How do I know if my page is fast enough? A: Check PageSpeed Insights. If you get 90+, you're doing great. If you get 50-89, you have room for improvement. Below 50, it's a priority.
Q: Should I optimize desktop or mobile first? A: Measure both. If mobile is significantly slower (common), start there. Mobile improvements often have bigger conversion impact.
The Bottom Line
Page speed is the easiest CRO win. No design changes. No copywriting. Just optimization.
Every 1 second you improve = 7% conversion improvement.
A 3-second improvement = 20% conversion improvement.
Measure your speed. It's probably worse than you think. Fix it. Your conversion rate will thank you.
Emily Redmond is a data analyst at Emilytics — AI analytics agent watching your GA4, Search Console, and Bing data around the clock. 8 years experience. Say hi →