Zum Inhalt springen
Core Web Vitals specialists

PageSpeed Optimization: all services from server to browser

Server tuning, frontend optimization, caching, database and image optimization — the entire technical stack behind your loading time from a single source. Every measure is prioritized data-driven and validated against real measurements.

Performance quick-check from €349 net Core Web Vitals: LCP · INP · CLS Free initial analysis, no sales pressure

from €349

Performance quick-check (net)

< 200 ms

TTFB target after server tuning

50+

performance projects

from €59

Speed-Care monitoring per month

Performance quick-check · fixed price

from €349 fixed price net
  • A fixed price instead of a vague hourly estimate
  • Short report with the most effective levers
  • Implementation from €490 (WordPress) or €2,290 (shop)
  • Ongoing Speed-Care monitoring from €59 per month

A compact diagnosis of one page or template with the most important immediate measures. The full performance audit across several templates starts at €1,490, implementation as WordPress performance from €490. Every project begins with a free initial analysis.

A fast website doesn't come from a single adjustment but from the precise interplay of many technical measures. Server configuration, caching architecture, frontend code, image delivery, database queries and third-party scripts form a chain where every link affects overall speed. Our services address each of these links. We analyze where your website loses time and focus precisely where the greatest impact is achievable. The result is measurably better Core Web Vitals, shorter loading times and a technical foundation that convinces both search engines and users.

The delivery chain of your page: six layers we accelerate

The delivery chain of a page request
Six layers decide your loading time
From the server to the last pixel in the browser — we optimize every layer, not just a single point
1
Browser layer · rendering
Critical CSS, code splitting, lazy loading, web font optimization
INP · CLS
2
Image layer · media
WebP and AVIF, responsive sizes, compression, metadata stripped
-70 %
3
Caching layer · four stages
Full-page cache, object cache, browser and CDN cache
4 stages
4
Network layer · transfer
HTTP/2 and HTTP/3, Brotli, TLS 1.3, preconnect
TTFB < 200 ms
5
Server layer · infrastructure
PHP-FPM, OPcache, nginx and Apache, current PHP version
+40 % PHP
6
Database layer · queries
Slow query log, index optimization, object caching
5× faster
Target corridorLCP < 2.5 s · INP < 200 ms · CLS < 0.1
Performance quick-checkfrom €349 fixed price
Illustrative depiction of the optimization layers from browser to database. Values illustrative.

Our Service Areas at a Glance

The following overview shows the eight core areas of our performance optimization. Each area addresses specific technical challenges and contributes its part to faster loading times. In practice, these areas work together: an optimized server configuration provides the foundation on which frontend optimization and caching can achieve their full effect. In addition, we test every page in a Lighthouse audit and break down the response time in the TTFB detail down to the server and database level.

Core Web Vitals Optimization

The Core Web Vitals are the benchmark by which Google evaluates the user experience of your website. Largest Contentful Paint measures how quickly the main content becomes visible. Interaction to Next Paint evaluates how responsively the page reacts to user input. Cumulative Layout Shift captures how stable the layout remains during loading. These three metrics have directly influenced Google search rankings since 2021 and form the foundation of our optimization strategy.

Our Core Web Vitals optimization begins with the analysis of field and lab data. Field data from the Chrome User Experience Report shows how real users experience your website, while lab data from controlled measurement environments enables targeted troubleshooting. We analyze both data sources, identify the causes of poor scores and implement measures that are reflected in real user data. Detailed information about each Vital is available on our dedicated page.

MetricMeasuresTarget (good)Primary Lever
LCPVisibility of main contentunder 2.5 sServer tuning, prioritize LCP image
INPResponse to inputunder 200 msKeep JavaScript lean, break up tasks
CLSVisual stabilityunder 0.1Reserve dimensions, preload fonts

Server Performance and Infrastructure

Server performance determines the Time to First Byte (TTFB), the time that passes before the browser receives the first byte of the server response. A slow server pushes all subsequent loading times backward, and even the best frontend optimization cannot compensate for a slow server. We optimize the entire server infrastructure: web server configuration, PHP version and OPcache settings, MySQL and MariaDB tuning, memory and CPU resources.

Our server tuning includes configuring HTTP/2 or HTTP/3 for parallel connections, enabling Brotli or Gzip compression for all text-based resources, optimizing Keep-Alive settings and configuring worker processes to match available hardware. For PHP-based applications like WordPress and Shopware, we ensure PHP-FPM runs with optimized pool settings, OPcache is correctly configured and the current PHP version is used. Upgrading from PHP 7.4 to PHP 8.3 alone typically delivers a 20 to 40 percent improvement in execution speed (Source: php.net Benchmarks, 2024).

  • Web server configuration (nginx, Apache) tuned for maximum efficiency
  • PHP-FPM pool tuning with optimized worker and memory settings
  • OPcache configuration for full bytecode caching utilization
  • MySQL/MariaDB query cache, buffer pool and thread optimization
  • HTTP/2 or HTTP/3 with server push and prioritized streaming
  • Brotli compression for up to 25 percent better compression rates than Gzip
  • DNS optimization and preconnect hints for third-party domains
  • CDN integration for static assets and global delivery

Frontend Optimization and Rendering Performance

Frontend optimization addresses everything that happens in the user's browser. Even if the server responds quickly, oversized CSS files, unused JavaScript and improperly included fonts can significantly delay page rendering. Our approach begins with identifying render-blocking resources: CSS and JavaScript files that prevent the browser from rendering the visible area of the page until they are fully loaded and processed.

Critical CSS extraction is one of our most effective measures. We extract the CSS rules needed for the initial visible area of the page and embed them directly in the HTML code. The remaining CSS loads asynchronously. The visible area of the page appears significantly faster without waiting for the complete stylesheet. Combined with JavaScript code splitting, where only the code actually needed on the current page is loaded, and consistent lazy loading for images and media below the visible area, we achieve a dramatic acceleration of the initial page rendering.

Critical CSS Inlining

Above-the-fold CSS is embedded directly in HTML. The rest loads asynchronously. Users see the visible area in milliseconds instead of seconds.

JavaScript Code Splitting

Instead of a monolithic bundle, we load only the code the current page needs. Dynamic imports and tree shaking eliminate unused code.

Lazy Loading and Intersection Observer

Images, videos and embedded content are loaded only when they scroll into the visible area. This reduces initial load time and saves bandwidth.

Font Optimization

Font-display-swap, font subsetting and preload hints prevent invisible text and reduce web font file sizes by up to 90 percent.

Render-Blocking Elimination

Synchronous CSS and JavaScript includes are identified and replaced with asynchronous or deferred variants without affecting functionality.

Resource Hints and Preloading

Through targeted preload, prefetch and preconnect, critical resource downloads start earlier and parallel connections to external domains are established in advance.

Database Performance and Query Optimization

Behind every dynamic website is a database. Whether WordPress loads its posts from MySQL, Shopware retrieves product catalogs from MariaDB or a custom application accesses PostgreSQL: the speed of database queries significantly determines server response time. In our technical analyses, we regularly identify database queries that take hundreds of milliseconds or even seconds, often caused by missing indexes, inefficient JOINs or unnecessary queries triggered by plugins or themes.

Our database optimization includes slow query log analysis, adding missing indexes, rewriting inefficient queries, cleaning up orphaned records and configuring object caching with Redis or Memcached. For WordPress installations, we additionally eliminate autoload overloads in the options table and optimize wp_postmeta queries that become bottlenecks in large installations. The result is server response times that often improve by a factor of three to five (project experience).

Caching Strategies for Maximum Speed

Caching is the single most effective measure for accelerating a website. Instead of recalculating every request, once-generated results are stored and delivered directly for subsequent requests. The challenge lies in correct configuration: which content is cached, for how long, and when must the cache be invalidated? Overly aggressive caching delivers outdated content, while overly cautious caching wastes potential.

We implement multi-layered caching architectures tailored to your website's requirements. The first layer is a full-page cache like Varnish or an application-specific cache that delivers pre-rendered HTML pages without taxing PHP or the database. The second layer includes object caching with Redis or Memcached for database queries and API responses that cannot be included in a full-page cache. The third layer consists of browser cache headers that tell the browser which resources can be stored locally and for how long. The fourth layer, if needed, is a content delivery network that delivers static resources from servers near the user.

Four Caching Layers That Work Together

Every request that doesn't need to be recalculated saves time and server resources. We stagger caching across multiple layers so that most requests take the fastest available path and only dynamic content is passed through to the database.

  • Full-page cache delivers finished HTML without PHP load
  • Object cache relieves recurring database queries
  • Browser and CDN cache shorten the paths to the user
Browser cachelocal
CDNclose to the user
Full-page cache · Varnishfinished HTML
Object cache · Redisquery results
Databasedynamic only
Most requests end at the top — only dynamic ones reach the database4 stages

Image and Media Optimization

Images account for 50 to 70 percent of total page weight on most websites (Source: HTTP Archive, 2024). An uncompressed hero graphic alone can cause more data volume than all remaining HTML, CSS and JavaScript code combined. Image optimization therefore offers enormous savings potential. Our approach goes beyond simple compression and encompasses the full spectrum of modern image delivery.

We convert images to modern formats: WebP offers 25 to 35 percent better compression than JPEG at comparable quality, while AVIF achieves 40 to 50 percent savings. Through the picture element and accept headers, we deliver the best format to each browser. Responsive image sizes ensure mobile devices don't have to download the desktop version. Lazy loading with Intersection Observer delays the download of images below the visible area. Combined with optimized compression settings and removal of unnecessary metadata, we reduce the image weight of an average website by 60 to 80 percent (project experience).

Levers With Measurable Impact

< 200 ms
Time to First Byte after server tuning
(project experience)
40%
faster execution with a current PHP version
(php.net Benchmarks, 2024)
35%
better compression with WebP over JPEG
(industry value)
80%
less image weight on average
(project experience)

Where Is Your Website Losing Time?

In a free initial analysis, we measure server, frontend and images and show the most effective lever for your loading times.

Shop Performance: Shopware, WordPress-Shop and More

Online shops place special demands on performance optimization. Product catalogs with thousands or hundreds of thousands of items, dynamic filtering, cart calculations and checkout processes create high load on server and database. At the same time, loading time is directly revenue-relevant in e-commerce. Our shop performance optimization addresses the platform-specific bottlenecks of the most common shop systems.

For Shopware, we optimize theme compiler configuration, Elasticsearch for product search and faceted navigation, HTTP cache and reverse proxy setup, and database queries for category and product listing pages. For WordPress-based shops, we address typical WordPress bottlenecks plus shop-specific topics like transient data, cart fragment AJAX calls and product query performance. Regardless of platform, we ensure the checkout process works quickly and smoothly, because every delay in checkout increases the abandonment rate. Detailed information about our industry-specific optimization packages can be found on our e-commerce performance, SaaS performance and corporate websites pages. More details about our shop optimization can be found on the Shopware performance page.

Typical optimization journeys from project practice

Shopware CE shop
Starting point
LCP 4.1 s, TTFB 780 ms
Measure
Full-page cache, Redis object cache and PHP 8 upgrade
Result
LCP 1.3 s, TTFB 180 ms
WordPress corporate site
Starting point
Lighthouse 42, 6.2 MB page weight
Measure
Critical CSS, WebP/AVIF and lazy loading
Result
Lighthouse 95, 1.9 MB
B2B portal
Starting point
INP 420 ms on filter clicks
Measure
JavaScript code splitting, long tasks broken up
Result
INP 140 ms

Anonymized project examples (project experience), illustrative. Results depend on the starting point, platform and scope.

Technical SEO and Speed Factors

PageSpeed optimization and technical search engine optimization are closely interlinked. Core Web Vitals are only part of the picture. Additionally, crawl efficiency, URL structure, redirect chains, canonical tags and site architecture influence how efficiently search engines index your website. Slow server response times reduce crawl budget: if Googlebot can fetch fewer pages per session because each request takes too long, parts of your website may remain unindexed.

We optimize the technical SEO foundation of your website in parallel with loading time. This includes cleaning up redirect chains, implementing correct HTTP status codes, optimizing robots.txt for efficient crawling and configuring cache headers that signal to Googlebot which resources have changed since the last crawl. A fast, technically clean website enables search engines to index more pages in less time and reflect current content more quickly in search results.

Continuous Performance Monitoring

After a successful optimization, the most important phase begins: long-term monitoring. Websites change continuously. New blog posts, additional plugins, marketing pixels, CMS updates and seasonal content changes can gradually degrade performance. Our continuous performance monitoring detects these degradations early and enables quick countermeasures before negative effects on rankings and conversions become noticeable.

Synthetic Tests

Regular measurements under controlled conditions

Real User Metrics

Genuine field data from the Chrome User Experience Report

Monthly Reports

Core Web Vitals, TTFB, page weight and requests over time

Proactive Alerts

Notification on regressions including cause and countermeasure

This keeps your loading times permanently in the green zone. More information about our monitoring approach is available on our analysis page or through direct conversation.

Prices for performance optimization: a clear entry, fixed anchors

All prices net. Every project starts with a free initial analysis; afterwards you receive a binding fixed-price quote. Scope and platform determine the final price.

Performance Quick-Check

A compact diagnosis of one page or template with the most effective immediate measures.

from €349 fixed price net
  • Measurement of LCP, INP, CLS and TTFB
  • Short report with the top levers
  • Prioritized immediate measures
  • Full performance audit from €1,490 optional
  • Free initial assessment beforehand
Request quick-check
Popular

Performance Optimization

Implementing the measures directly in the code — from WordPress tuning to the shop project.

from €490 fixed price net
  • WordPress performance from €490
  • Shop loading-time optimization from €2,290
  • Shopware performance (Community Edition) from €3,490
  • Server, frontend, caching and image optimization
  • Before/after report per metric
Request optimization

Speed-Care Monitoring

Ongoing monitoring so the values you reach stay permanently in the green zone.

from €59 per month net
  • Continuous measurement of Core Web Vitals
  • Alerts on performance regressions
  • Quarterly review with recommendations
  • No subscription lock-in, cancel monthly
  • Ideal to safeguard an optimization
Request monitoring

All prices net plus VAT. Further anchors: Performance quick-check €349, full performance audit €1,490, WordPress performance from €490, shop loading time from €2,290, Shopware performance (Community Edition) from €3,490, Speed-Care monitoring from €59 per month. You receive a binding quote after the free initial analysis.

Our Promise

We work exclusively data-driven. Every measure is prioritized based on its expected effect before implementation and validated using real measurements after implementation. You don't receive black-box optimization but transparent reports showing which measure achieved which effect.

Measurable Results Instead of Vague Promises

Every one of our optimizations is measured against concrete metrics. Together with you, we define target values for LCP, INP and CLS and document the baseline before the project starts. After each optimization phase, we measure again and compare results. This data-driven approach ensures every measure has a demonstrable effect and you can track progress at any time. In our projects, we typically achieve a 40 to 70 percent improvement in Largest Contentful Paint, a reduction of Cumulative Layout Shift to below 0.1 and a decrease in Time to First Byte to under 200 milliseconds (project experience). Details on our measurement methods and typical results can be found on our references page.

Additionally, we offer continuous performance monitoring for all clients. Instead of one-time optimization, we permanently monitor your Core Web Vitals and proactively intervene when values deteriorate. New content, plugin updates or changed advertising campaigns can unknowingly impact loading times. Our monitoring detects such regressions within hours and enables swift countermeasures before users or search engines notice the difference.

Frequently Asked Questions About Our Services

The following questions answer the most common concerns we encounter in initial consultations. For deeper technical questions, visit our FAQ page or contact us.

Ready for Measurably Faster Loading Times?

Every unnecessary millisecond costs you visitors, rankings and revenue. Let's find out together where your website is wasting potential and how we can capitalize on it. Request your free initial analysis and receive a concrete action plan with expected improvements. Or learn about the technical fundamentals first in our Core Web Vitals guide. An overview of our past results can be found in our references. Current expert articles on performance topics are published on our blog.

Request a Free Initial Analysis

Tell us your website URL and your goal — faster loading times, better Core Web Vitals or more revenue in your shop. You receive a free initial assessment, no obligation. By phone you can reach us at +49 5123 9579000.

By submitting you consent to the processing of your details to handle this request. Details in our privacy policy.