2025-06-07 17:09:01 +01:00
< ? php
2026-03-21 13:02:09 +00:00
$page_title = " Case Studies | UK AI Automation " ;
$page_description = " Real examples of automation projects we've built for UK law firms and management consultancies â document extraction, research automation, data pipelines, and AI agents. " ;
2026-03-21 09:48:46 +00:00
$canonical_url = " https://ukaiautomation.co.uk/case-studies/ " ;
2025-06-07 17:09:01 +01:00
?>
<! DOCTYPE html >
2026-03-21 09:48:46 +00:00
< html lang = " en " >
2025-06-07 17:09:01 +01:00
< head >
< meta charset = " UTF-8 " >
< meta name = " viewport " content = " width=device-width, initial-scale=1.0 " >
< title >< ? php echo htmlspecialchars ( $page_title ); ?> </title>
< meta name = " description " content = " <?php echo htmlspecialchars( $page_description ); ?> " >
2026-03-21 09:48:46 +00:00
< meta name = " robots " content = " index, follow " >
< link rel = " canonical " href = " <?php echo htmlspecialchars( $canonical_url ); ?> " >
< link rel = " icon " type = " image/svg+xml " href = " /assets/images/favicon.svg " >
< link rel = " preconnect " href = " https://fonts.googleapis.com " >
Fix navbar across all pages: add nav include, fonts, active state, spacing, stats, error pages
- Add nav.php include to 5 missing pages (cost-calculator, thank-you, 403, 404, 500)
- Add ErrorDocument directives to .htaccess for custom 403/404/500 pages
- Fix bogus accuracy stats (homepage, web-scraping, location pages)
- Fix invisible CTA buttons on property and financial service pages
- Add Google Fonts (Roboto Slab + Lato) to all pages missing it (tools, blog articles, error pages)
- Add active nav link highlighting (teal underline for current page)
- Improve footer contrast to WCAG AA, equal-height cards, mobile text scaling
- Consistent navbar-to-content spacing across all pages
- Bump cache version to v1.1.3
2026-02-11 07:15:11 +00:00
< link rel = " preconnect " href = " https://fonts.gstatic.com " crossorigin >
2026-03-21 09:48:46 +00:00
< link href = " https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;600;700&family=Lato:wght@400;500;700&display=swap " rel = " stylesheet " >
2026-03-21 13:02:09 +00:00
< link rel = " stylesheet " href = " /assets/css/main.css?v=20260321 " >
2026-03-21 09:48:46 +00:00
< style >
. cs - hero { padding : 120 px 0 60 px ; background : linear - gradient ( 135 deg , #1e1b4b 0%, #7c3aed 100%); text-align: center; color: white; }
. cs - hero h1 { font - size : 2.8 rem ; margin - bottom : 20 px ; }
. cs - hero p { font - size : 1.2 rem ; opacity : 0.9 ; max - width : 700 px ; margin : 0 auto ; }
. cs - grid { display : grid ; grid - template - columns : repeat ( auto - fit , minmax ( 340 px , 1 fr )); gap : 30 px ; padding : 80 px 0 ; }
. cs - card { background : white ; border - radius : 12 px ; box - shadow : 0 4 px 20 px rgba ( 0 , 0 , 0 , 0.08 ); overflow : hidden ; border - top : 4 px solid #6d28d9; }
. cs - card - body { padding : 30 px ; }
. cs - tag { display : inline - block ; background : #f0f9f7; color: #4f46e5; font-size: 0.8rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
. cs - card h2 { font - size : 1.3 rem ; color : #1e1b4b; margin-bottom: 12px; }
. cs - card p { color : #666; line-height: 1.6; margin-bottom: 20px; }
. cs - result { background : #f8f9fa; border-radius: 8px; padding: 16px; font-weight: 600; color: #7c3aed; }
. cs - result span { display : block ; font - size : 1.5 rem ; color : #6d28d9; }
. cs - cta { padding : 80 px 0 ; background : linear - gradient ( 135 deg , #7c3aed 0%, #6d28d9 100%); text-align: center; color: white; }
. cs - cta h2 { font - size : 2 rem ; margin - bottom : 20 px ; }
. cs - cta p { font - size : 1.1 rem ; opacity : 0.9 ; margin - bottom : 40 px ; }
</ style >
2025-06-07 17:09:01 +01:00
</ head >
< body >
2026-03-21 09:48:46 +00:00
< a href = " #main-content " class = " skip-to-content " > Skip to main content </ a >
2026-02-10 22:21:16 +00:00
< ? php include ( $_SERVER [ " DOCUMENT_ROOT " ] . " /includes/nav.php " ); ?>
2025-06-07 17:09:01 +01:00
2026-03-21 09:48:46 +00:00
< main id = " main-content " >
< section class = " cs-hero " >
2025-06-07 17:09:01 +01:00
< div class = " container " >
2026-03-21 09:48:46 +00:00
< h1 > Case Studies </ h1 >
2026-03-21 13:02:09 +00:00
< p > Real automation projects delivered for UK law firms and management consultancies â with measurable time savings .</ p >
2025-06-07 17:09:01 +01:00
</ div >
</ section >
2026-03-21 09:48:46 +00:00
< section style = " background: #f8f9fa; padding: 0 0 80px; " >
2025-06-07 17:09:01 +01:00
< div class = " container " >
2026-03-21 09:48:46 +00:00
< div class = " cs-grid " >
< div class = " cs-card " >
< div class = " cs-card-body " >
< span class = " cs-tag " > Document Extraction </ span >
2026-03-21 13:02:09 +00:00
< h2 > Due Diligence Pack Automation â Corporate Law Firm </ h2 >
< p > A mid - size corporate law firm was spending 2 days per deal extracting and summarising data from due diligence packs â contracts , company filings , financial statements . We built an AI pipeline using OCR and LLMs that processes the same packs overnight , outputting a structured summary report .</ p >
2026-03-21 09:48:46 +00:00
< div class = " cs-result " >
2026-03-21 13:02:09 +00:00
< span > 2 days â overnight </ span >
2026-03-21 09:48:46 +00:00
Time saved per M & A transaction
2025-06-07 17:09:01 +01:00
</ div >
</ div >
2026-03-21 09:48:46 +00:00
</ div >
< div class = " cs-card " >
< div class = " cs-card-body " >
< span class = " cs-tag " > Research Automation </ span >
2026-03-21 13:02:09 +00:00
< h2 > Market Intelligence Monitoring â Management Consultancy </ h2 >
2026-03-21 09:48:46 +00:00
< p > A management consultancy ' s research team spent several hours each week manually monitoring industry publications and news sources to brief partners ahead of client engagements . We built an automated system that monitors sources daily , classifies relevant items by practice area , and delivers a structured briefing to each partner every morning .</ p >
< div class = " cs-result " >
< span >~ 25 hours / month saved </ span >
Across the research team
2025-06-07 17:09:01 +01:00
</ div >
</ div >
</ div >
2026-03-21 09:48:46 +00:00
< div class = " cs-card " >
< div class = " cs-card-body " >
< span class = " cs-tag " > Data Pipeline </ span >
2026-03-21 13:02:09 +00:00
< h2 > Automated Weekly Reporting â Management Consultancy </ h2 >
2026-03-21 10:39:15 +00:00
< p > A management consultancy was spending half a day every Monday manually pulling data from four different systems and compiling a client report . We built an automation pipeline that runs automatically each Monday morning , pulling from all four sources and generating a formatted report ready for review by 9 am .</ p >
2026-03-21 09:48:46 +00:00
< div class = " cs-result " >
2026-03-21 13:02:09 +00:00
< span > 4 hours â 0 hours </ span >
2026-03-21 09:48:46 +00:00
Weekly manual effort eliminated
2025-06-07 17:09:01 +01:00
</ div >
</ div >
</ div >
2026-03-21 09:48:46 +00:00
< div class = " cs-card " >
< div class = " cs-card-body " >
< span class = " cs-tag " > AI Agent </ span >
2026-03-21 13:02:09 +00:00
< h2 > Contract Review Agent â Legal Services </ h2 >
< p > A legal services team regularly reviewed supplier contracts for specific clause types and risk indicators . We built a custom AI agent that ingests contracts , identifies and extracts key clauses , flags risk indicators against a defined checklist , and produces a structured review summary â replacing the first pass of manual review .</ p >
2026-03-21 09:48:46 +00:00
< div class = " cs-result " >
< span > 80 % reduction </ span >
In first - pass review time
2025-06-07 17:09:01 +01:00
</ div >
</ div >
</ div >
</ div >
</ div >
</ section >
2026-03-21 09:48:46 +00:00
< section class = " cs-cta " >
2025-06-07 17:09:01 +01:00
< div class = " container " >
2026-03-21 09:48:46 +00:00
< h2 > Have a Similar Problem ? </ h2 >
2026-03-21 10:58:08 +00:00
< p > Get in touch and we ' ll look at your specific workflow together .</ p >
2026-03-21 13:02:09 +00:00
< a href = " /quote " class = " btn btn-secondary " style = " background: white; color: #7c3aed; border-color: white; " > Get a Quote </ a >
2025-06-07 17:09:01 +01:00
</ div >
</ section >
2026-03-21 09:48:46 +00:00
</ main >
2025-06-07 17:09:01 +01:00
<!-- Footer -->
< footer class = " footer " >
< div class = " container " >
< div class = " footer-content " >
< div class = " footer-section " >
< div class = " footer-logo " >
2026-03-21 09:48:46 +00:00
< img src = " /assets/images/logo-white.svg " alt = " UK AI Automation " loading = " lazy " width = " 290 " height = " 58 " >
2025-06-07 17:09:01 +01:00
</ div >
2026-03-21 09:48:46 +00:00
< p > AI automation for UK legal and consultancy firms . Fixed - price projects , fast delivery , GDPR - compliant by default .</ p >
2025-06-07 17:09:01 +01:00
</ div >
< div class = " footer-section " >
2025-12-08 07:18:49 +00:00
< h3 > Our Services </ h3 >
2025-06-07 17:09:01 +01:00
< ul >
2026-03-21 09:48:46 +00:00
< li >< a href = " /#services " > Document Extraction </ a ></ li >
< li >< a href = " /#services " > Research Automation </ a ></ li >
< li >< a href = " /#services " > Data Pipelines </ a ></ li >
< li >< a href = " /#services " > Custom AI Agents </ a ></ li >
< li >< a href = " /quote " > Get a Quote </ a ></ li >
2025-06-07 17:09:01 +01:00
</ ul >
</ div >
< div class = " footer-section " >
2026-03-21 09:48:46 +00:00
< h3 > Who We Help </ h3 >
2025-06-07 17:09:01 +01:00
< ul >
2026-03-21 09:48:46 +00:00
< li > Law Firms </ li >
< li > Management Consultancies </ li >
2025-12-08 07:18:49 +00:00
</ ul >
</ div >
< div class = " footer-section " >
2026-03-21 09:48:46 +00:00
< h3 > Resources </ h3 >
2025-12-08 07:18:49 +00:00
< ul >
2026-03-21 09:48:46 +00:00
< li >< a href = " /blog/ " > Blog </ a ></ li >
2025-06-07 17:09:01 +01:00
< li >< a href = " /case-studies/ " > Case Studies </ a ></ li >
2026-03-21 09:48:46 +00:00
< li >< a href = " /about " > About </ a ></ li >
2025-12-08 07:18:49 +00:00
< li >< a href = " /faq " > FAQ </ a ></ li >
2026-03-21 09:48:46 +00:00
< li >< a href = " /quote " > Get a Quote </ a ></ li >
2025-06-07 17:09:01 +01:00
</ ul >
</ div >
< div class = " footer-section " >
< h3 > Legal </ h3 >
< ul >
< li >< a href = " /privacy-policy " > Privacy Policy </ a ></ li >
< li >< a href = " /terms-of-service " > Terms of Service </ a ></ li >
< li >< a href = " /gdpr-compliance " > GDPR Compliance </ a ></ li >
</ ul >
</ div >
</ div >
< div class = " footer-bottom " >
2026-03-21 09:48:46 +00:00
< div class = " footer-bottom-content " >
< div class = " footer-copyright " >
< p >& copy ; < ? php echo date ( 'Y' ); ?> UK AI Automation. All rights reserved.</p>
</ div >
2025-12-21 08:08:45 +00:00
</ div >
2025-06-07 17:09:01 +01:00
</ div >
</ div >
</ footer >
2026-03-21 13:02:09 +00:00
< script src = " /assets/js/main.js " ></ script >
2025-06-07 17:09:01 +01:00
</ body >
2026-03-21 09:48:46 +00:00
</ html >