Core Web Vitals Explained: What Google's Speed Scores Mean for Your Business (and How to Fix Them)

Published in digital marketing, web development

Core Web Vitals Explained: What Google's Speed Scores Mean for Your Business (and How to Fix Them)

Core Web Vitals explained for business owners: what LCP, INP and CLS mean, the scores Google wants, how to test your site, and the fixes that matter most.

By Mohammad

It usually starts with a screenshot. A business owner runs their website through Google's PageSpeed Insights, sees a big red "38", and sends it to us at 11pm with one question: "Is this why nobody calls?"

Sometimes it is. Often it isn't, at least not the way they think.

That red number is not the same thing as your Core Web Vitals. This guide explains what Core Web Vitals actually measure, what "good" looks like, how much they matter for Google and for sales, how to test your site properly, and which fixes are worth paying for.

Cafe owner checking her website
Cafe owner checking her website

Quick answer: Core Web Vitals are three Google measurements of real visitors' experience on your site: LCP (how fast the main content loads, good is 2.5 seconds or less), INP (how fast the page responds to taps and clicks, good is 200 milliseconds or less) and CLS (how much the layout jumps, good is 0.1 or less). Google uses them in its ranking systems, but their bigger effect is on whether visitors stay and buy.

Got a red score and not sure what it means? We'll read your real-user data, tell you which problems cost you customers, and give you a fixed price to fix them. Book a free website and SEO audit.

What are Core Web Vitals?

Core Web Vitals are three metrics Google uses to judge whether a page feels fast and stable to real people. They're part of Google's broader "page experience" signals, and Google documents them as the ones site owners should focus on.

MetricWhat it measuresIn plain EnglishGoodNeeds workPoor
LCP (Largest Contentful Paint)LoadingHow long until the biggest thing on screen, usually a hero image or headline, shows up2.5s or less2.5s to 4sOver 4s
INP (Interaction to Next Paint)ResponsivenessHow long the page takes to react when someone taps a button, opens a menu or types200ms or less200ms to 500msOver 500ms
CLS (Cumulative Layout Shift)Visual stabilityHow much the page jumps around while loading, like a button moving just as you tap it0.1 or less0.1 to 0.25Over 0.25

Two details most articles skip:

  • Google judges the 75th percentile. A page passes when at least 75% of real visits hit the "good" mark, measured separately on mobile and desktop. Your fast office Wi-Fi doesn't count for much. Your customer's phone in a parking lot does.
  • INP replaced FID in March 2024. If a guide still talks about "First Input Delay", it's out of date. INP is stricter, because it looks at every interaction on the page, not just the first one.
Three glowing gauges for loading, responsiveness and visual stability, the three core web vitals
Three glowing gauges for loading, responsiveness and visual stability, the three core web vitals

Do Core Web Vitals affect SEO rankings?

Yes, but less than most sales pitches suggest.

Google says Core Web Vitals are used by its ranking systems, and it recommends that site owners achieve good scores. It's equally clear that relevance comes first: a page with great content and average speed will usually beat a lightning-fast page that doesn't answer the search.

In practice, think of Core Web Vitals as a tiebreaker in competitive local results, and as a floor. When you and three competitors all have solid service pages, the site that loads cleanly on a phone has an edge. When your site is painfully slow, no amount of content fully makes up for it.

"Speed rarely wins you the ranking on its own. A slow site loses you the customer who already found you."

That second part is where the money is.

What slow Core Web Vitals cost your business

Google's page experience signals are measured in milliseconds. Your sales are measured in people who give up.

Person on a couch at night about to leave a slow-loading website on their phone
Person on a couch at night about to leave a slow-loading website on their phone

Two well-documented examples:

  • Vodafone ran an A/B test on a landing page. The version with a 31% better LCP produced 8% more sales, along with a 15% better lead-to-visit rate.
  • Deloitte's "Milliseconds Make Millions" study, commissioned by Google across 37 brands and more than 30 million sessions, found that a 0.1-second faster mobile site lifted retail conversions by 8.4% and travel conversions by 10.1%.

A local plumber isn't Vodafone. But the behavior is the same: people on phones are impatient, and the ones who leave never show up in your analytics as "lost leads". They just call someone else. If your site gets visitors but not enquiries, speed is one of the first things we check in our guide to why your website isn't bringing you leads.

How to check your Core Web Vitals in 10 minutes

You don't need special software. Two free Google tools tell you almost everything.

  1. Open PageSpeed Insights and enter your homepage and your most important service page.
  2. Look at the top section first: "Discover what your real users are experiencing." This is field data from real Chrome users over the last 28 days. It shows LCP, INP and CLS, and whether the page passes the Core Web Vitals assessment.
  3. Switch between Mobile and Desktop. Mobile is usually the problem and usually where your customers are.
  4. Only then scroll to the lab test and the big performance score. Use its "diagnostics" to find causes, not to judge the site.
  5. Open Google Search Console → Core Web Vitals. It groups similar pages and shows which templates are "Poor" or "Need improvement" across your whole site.

The big PageSpeed score isn't your Core Web Vitals

This is the most common misunderstanding we see.

Field data (real users)Lab data (the 0 to 100 score)
Where it comes fromReal visits in Chrome over 28 daysOne simulated load on a throttled phone
What Google uses for page experienceYesNo
Changes when you fix somethingSlowly, over about 4 weeksImmediately
Best used forKnowing if you have a real problemFinding what's causing it

A site can score 45 in the lab and still pass Core Web Vitals with real visitors. The opposite also happens. Low-traffic sites may show no field data at all; in that case, the lab results are the best guide you have.

How to fix each Core Web Vital

Here's what usually causes each problem on business websites, and what fixes it.

Fixing LCP (slow loading)

  • Compress and resize the hero image. A 4 MB photo scaled down by the browser is the number one LCP problem we find. Serve modern formats like WebP or AVIF at the size actually shown.
  • Don't lazy-load the main image. Lazy loading is great below the fold and harmful for the first thing people see.
  • Cut render-blocking scripts. Sliders, chat widgets, and multiple tracking tags all compete with your main content.
  • Use better hosting and a CDN. If the server takes two seconds to respond, nothing else can be fast.

Fixing INP (slow reactions)

  • Remove or delay heavy third-party scripts. Chat widgets, heatmaps, pop-up tools and ad pixels often block the page when someone taps.
  • Trim page builders and plugins. Every extra layer of JavaScript runs on the visitor's phone.
  • Break up long tasks. Developers can split heavy code so the page stays responsive while it works.

Fixing CLS (jumping layout)

  • Give images and videos fixed dimensions so space is reserved before they load.
  • Reserve space for banners, cookie notices and embeds instead of letting them push content down.
  • Load web fonts properly so text doesn't reflow when the custom font arrives.
Common causeHurtsTypical fixEffort
Oversized hero imageLCPResize, convert to WebP/AVIF, preloadLow
Slow hosting or no CDNLCPBetter host, caching, CDNLow to medium
Too many third-party scriptsINP, LCPRemove, delay or load on interactionMedium
Heavy page builder or themeINP, LCPSimplify templates or rebuildMedium to high
Images and ads without set sizesCLSAdd dimensions, reserve spaceLow
Late-loading fontsCLSPreload fonts, use font-displayLow

Most of these are technical SEO and development fixes rather than design changes, which is why they're often cheaper than people expect.

Want the fixes done for you? Our audit-and-fix service repairs speed and Core Web Vitals issues on your existing site, with a fixed price agreed upfront. Request your free audit.

Which platforms make good Core Web Vitals easier?

Any platform can be fast or slow. But some make it much easier to stay fast after launch.

3D illustration of a web page on a workbench being tuned for speed
3D illustration of a web page on a workbench being tuned for speed
PlatformOut of the boxWhat usually slows it down
WordPress with a page builderVaries widelyHeavy themes, 20+ plugins, cheap shared hosting
Wix and SquarespaceDecent, limited controlApps, large media, little control over scripts
ShopifyGood core, theme-dependentApps that each add their own scripts
Next.js (or similar modern frameworks)Excellent when built wellPoorly optimized images or third-party scripts added later

We build on Next.js because pages are rendered ahead of time, images are resized automatically, and there's no plugin pile slowing every visit. Our Next.js vs WordPress comparison covers the trade-offs honestly, including when WordPress is the better choice.

A Core Web Vitals checklist for business owners

Keep this list and run it every quarter, or after any big change to your site.

  1. Test your homepage and top two service pages in PageSpeed Insights on mobile.
  2. Check the field data first: do LCP, INP and CLS all show "Good"?
  3. Open the Core Web Vitals report in Search Console and note any "Poor" URL groups.
  4. Make sure hero images are under about 200 KB and not lazy-loaded.
  5. List every third-party script on the site and remove anything you don't use.
  6. Confirm images, embeds and banners have reserved space.
  7. Re-test in four weeks, because field data updates slowly.

Ongoing checks like these belong in a good website maintenance services plan, so speed doesn't quietly slip after every update.

Fix it or rebuild it?

Fixes make sense when the site is otherwise good: solid design, content that converts, and a platform you're happy with. A focused round of image, script and hosting work often gets a site from "Poor" to "Good".

A rebuild makes more sense when the problems are baked into the foundation: a bloated theme you can't change, dozens of plugins nobody dares to remove, or a site that also looks dated and doesn't bring in leads. In that case you pay twice by patching. Our guide on how much it costs to build a website helps you compare the two honestly.

Phone and laptop showing green scores after a core web vitals checklist test
Phone and laptop showing green scores after a core web vitals checklist test

How RankMeHi fixes Core Web Vitals

ServiceStarting priceWhat's included
Audit and fixFrom $490, one-off, 1 to 2 weeksFree audit with a prioritised fix list, speed and Core Web Vitals repair, technical SEO fixes, quote form and click-to-call setup
New websiteFrom $2,490 (five pages, design included)Design in Figma or built from yours, fast Next.js front end with WordPress editing, analytics and Search Console set up at launch

If fixing your current site will get you to "Good", we'll recommend that. If it won't, we'll tell you why before you spend anything. Speed is part of every build we do with our custom web development and web design services, and faster pages also give conversion rate optimization more to work with.

Key takeaways

Key takeaways

    FAQ

    What are the three Core Web Vitals?

    The three metrics are Largest Contentful Paint (LCP), which measures loading speed; Interaction to Next Paint (INP), which measures how quickly the page responds to taps and clicks; and Cumulative Layout Shift (CLS), which measures how much the layout moves while the page loads.

    What is a good Core Web Vitals score?

    A page is "good" when LCP is 2.5 seconds or less, INP is 200 milliseconds or less, and CLS is 0.1 or less, for at least 75% of real visits. Google measures mobile and desktop separately, so a page can pass on one and fail on the other.

    How long does it take for Core Web Vitals improvements to show?

    Lab tests change immediately after a fix. Field data in PageSpeed Insights and Search Console is based on the previous 28 days of real visits, so improvements usually take about four weeks to show fully, and Search Console may take longer to mark issues as fixed.

    Why does PageSpeed Insights show a low score but my Core Web Vitals pass?

    The 0 to 100 performance score comes from a single simulated load on a slow phone connection. Core Web Vitals come from real visitors. If your real users have good experiences, you pass, even if the lab score looks poor. Use the lab score to find causes, not to judge the site.

    Does Wix or WordPress have good Core Web Vitals?

    Both can pass. Results depend on the theme, apps or plugins, image sizes and hosting far more than the platform name. Sites with many plugins, heavy page builders or lots of third-party scripts are the ones that most often fail.

    How much does it cost to fix Core Web Vitals?

    Simple fixes like image compression, removing unused scripts and reserving space for media can take a few hours. Deeper problems caused by heavy themes or page builders can take days or justify a rebuild. At RankMeHi, an audit-and-fix round starts at $490 after a free audit sets the exact scope.

    Stop guessing about that red number

    A bad speed score isn't a verdict. It's a list of things to fix, and most of them are fixable in days, not months. Find out which ones actually cost you customers before you spend money on the wrong ones.

    Want a straight answer about your site's speed? Book your free website and SEO audit. We'll show you your real-user data and exactly what to fix first.

    RankMeHi designs and builds business websites, then makes sure they are found and convert. Start with the two pages below.

    Why Your Website Isn't Bringing You Leads — and What to Fix First

    A website that doesn’t generate leads often has three major problems: poor design that reduces trust, low search visibility that limits traffic, and unclear calls-to-action that fail to convert visitors. Fixing these in order — starting with design, then SEO, then conversion elements — improves results faster than tackling them randomly. You built the website. …

    Read article

    Start with clarity

    Get your free website & SEO audit

    Tell us where to start. We check your site the way all three judges do: how it looks to a customer, how Google ranks it, and whether AI assistants can read and recommend it.
    1. 1Share your name, email and website.
    2. 2We review your current website and SEO foundation.
    3. 3We reply with the clearest next steps for your business.

    No confusing pitch. No generic checklist. Just a focused first look at what deserves your attention.

    Tell us about your website

    It only takes a minute. We use these details to review the right website and reply to the right person.

    Your contact details
    Where we send the audit
    No https:// needed
    • Reply within 1 business day
    • No spam, no obligation

    By submitting this form, you agree that RankMeHi may contact you about your request.