PageSpeed 61 → 99: Performance Audit & Optimization by Iulian B.PageSpeed 61 → 99: Performance Audit & Optimization by Iulian B.

PageSpeed 61 → 99: Performance Audit & Optimization

Iulian B.

Iulian B.

The Brief

Take a live site scoring 61 on PageSpeed and push it as close to 100 as possible — without redesigning, without breaking anything, in under a day.
Target: emobipedia.com. Same content, same design, same CMS. Only the performance layer gets touched.

Before & After

Before and after — PageSpeed 61 vs 99
Before and after — PageSpeed 61 vs 99

Starting Point — 61

The site loaded fine, but Lighthouse called out render-blocking CSS, external font requests, and a 98ms long task on the main thread. LCP sat at ~1137ms on an unthrottled machine — slower under real mobile conditions.
Initial PageSpeed audit — 61
Initial PageSpeed audit — 61

What I Changed (6 actions, ~4 hours)

Inlined critical CSS — above-the-fold styles moved into <style> in the document head. No round-trip for first paint.
Async-loaded the rest of CSSstyle.css deferred so it no longer blocked render.
font-display: swap — the H1 (which is the LCP element) now paints instantly with a system fallback, then swaps when the web font arrives.
Self-hosted fonts — killed the request to fonts.googleapis.com. One less DNS lookup, one less third-party dependency, GDPR-friendlier as a bonus.
DOM cleanup — removed redundant wrapper divs. Layout time dropped ~30%.
Deferred third-party scripts — moved analytics and similar tags to fire after the load event.

Progress Snapshots

Mid-optimization snapshot
Mid-optimization snapshot
Final optimization pass
Final optimization pass

Measured Impact

Metric
Before
After
PageSpeed (mobile, simulated)
61
99
LCP (unthrottled)
~1137 ms
~334 ms
CLS
0.00
0.00
Long task on main thread
98 ms
gone
Bundle size (CSS + JS)
~45 KB
~28 KB
Request count
14
11
LCP dropped by ~70%. Bundle shrunk ~38%. Three fewer requests on every page load.

Why It Matters

A score of 61 is not a "the site is broken" number. The site looked fine, sold fine, ranked fine. But every Lighthouse audit a buyer or partner ran on it would tell a different story than the pitch.
Pushing it to 99 took half a working day and zero design changes. That ratio — small effort, large measurable lift — is the exact case I want to show clients when they ask whether an audit is worth it.

Takeaway

If your site sits in the 50s or 60s on PageSpeed, the path to 90+ is usually 4-6 specific changes, not a rebuild. The hard part is knowing which 4-6.
Like this project

Posted Jun 9, 2026

Took emobipedia.com from PageSpeed 61 to 99 in ~4 hours. 6 targeted optimizations, no redesign. LCP -70%, bundle -38%.