-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocations.html
More file actions
1104 lines (980 loc) · 60.9 KB
/
locations.html
File metadata and controls
1104 lines (980 loc) · 60.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8E854NCS56"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-8E854NCS56');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO-optimised title and meta tags for locations overview -->
<title>Web Design Services Across the UK & Canada | London, Manchester, Kelowna | Futurelab</title>
<meta name="description" content="Professional web design and landing page services across major UK cities and Kelowna, BC. Serving London, Manchester, Birmingham, Leeds, and Kelowna with local expertise and custom solutions.">
<meta name="keywords" content="web design uk, landing page design uk, web designer london manchester birmingham, uk web design services, local web design">
<meta name="author" content="Futurelab Solutions">
<!-- Open Graph for social sharing -->
<meta property="og:title" content="Web Design Services Across the UK & Canada | Futurelab">
<meta property="og:description" content="Professional web design and landing page services across major UK cities and Kelowna, BC. Local expertise, custom solutions.">
<meta property="og:image" content="https://www.futurelab.solutions/assets/social-share.webp">
<meta property="og:url" content="https://www.futurelab.solutions/locations">
<meta property="og:type" content="website">
<!-- Canonical URL -->
<link rel="canonical" href="https://www.futurelab.solutions/locations">
<!-- UK Service Areas Schema -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ProfessionalService",
"name": "Futurelab Solutions",
"image": "https://www.futurelab.solutions/assets/favicon/apple-icon-180x180.png",
"description": "Professional web design and landing page services across the UK and Canada",
"url": "https://www.futurelab.solutions",
"telephone": "+447806946463",
"priceRange": "££-£££",
"areaServed": [
{
"@type": "City",
"name": "London",
"addressCountry": "GB"
},
{
"@type": "City",
"name": "Manchester",
"addressCountry": "GB"
},
{
"@type": "City",
"name": "Birmingham",
"addressCountry": "GB"
},
{
"@type": "City",
"name": "Leeds",
"addressCountry": "GB"
},
{
"@type": "City",
"name": "Liverpool",
"addressCountry": "GB"
},
{
"@type": "City",
"name": "Bristol",
"addressCountry": "GB"
},
{
"@type": "City",
"name": "Kelowna",
"addressCountry": "CA"
}
],
"serviceType": ["Web Design", "Landing Page Design", "SEO Services", "E-commerce Development"]
}
</script>
<!-- Favicon links -->
<link rel="icon" href="assets/favicon/favicon.ico" sizes="any">
<link rel="icon" href="assets/favicon/favicon-32x32.png" sizes="32x32" type="image/png">
<link rel="apple-touch-icon" href="assets/favicon/apple-icon-180x180.png">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="testimonials.css">
<link rel="stylesheet" href="animations.css">
<link rel="stylesheet" href="mobile-hero.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<meta name="theme-color" content="#4361ee">
<script src="js/includeElements.js" defer></script>
<!-- Locations page specific styles -->
<style>
.locations-hero {
background: linear-gradient(135deg, #B7BFE8 0%, #A592D6 100%);
color: white;
padding: 120px 0;
text-align: center;
}
.locations-hero h1 {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 30px;
line-height: 1.2;
}
.locations-hero .hero-subtitle {
font-size: 1.3rem;
line-height: 1.6;
margin-bottom: 40px;
opacity: 0.95;
}
.locations-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 40px;
margin: 80px 0;
}
.location-card {
background: white;
border-radius: var(--border-radius);
padding: 40px;
box-shadow: var(--box-shadow);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
}
.location-card .btn {
margin-top: auto;
}
.local-insights {
margin-bottom: 30px;
}
.dark-theme .location-card {
background: #1e293b;
color: var(--dark-text-color);
}
.dark-theme .location-highlights h4,
.dark-theme .local-insights p {
color: var(--dark-heading-color);
}
.dark-theme .market-data-card {
background: var(--dark-card-bg) !important;
color: var(--dark-text-color);
}
.dark-theme .market-data-card h4 {
color: var(--dark-heading-color);
}
.location-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.location-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 5px;
background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}
.location-icon {
width: 80px;
height: 80px;
background: rgba(67, 97, 238, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
font-size: 2rem;
color: var(--primary-color);
}
.location-stats {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin: 30px 0;
padding: 20px;
background: rgba(67, 97, 238, 0.05);
border-radius: var(--border-radius);
}
.dark-theme .location-stats {
background: rgba(67, 97, 238, 0.1);
}
.stat-item {
text-align: center;
}
.stat-number {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
}
.stat-label {
font-size: 0.9rem;
color: var(--gray-color);
}
.coverage-map {
background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
padding: 80px 0;
margin: 80px 0;
border-radius: var(--border-radius);
}
.dark-theme .coverage-map {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.coverage-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
margin-top: 50px;
}
.coverage-stat {
text-align: center;
}
.coverage-number {
font-size: 3rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 10px;
}
.primary-locations {
background: white;
padding: 60px 0;
margin: 80px 0;
}
.dark-theme .primary-locations {
background: #0f172a;
}
/* Dark mode for process section */
.dark-theme .process-section {
background: var(--dark-subtle-bg) !important;
}
.dark-theme .process-section h2,
.dark-theme .process-section h4 {
color: var(--dark-heading-color);
}
.dark-theme .process-section p {
color: var(--dark-text-color);
}
/* Dark mode for FAQ section */
.dark-theme .faq-section {
background: var(--dark-bg-color) !important;
}
.dark-theme .faq-section h2,
.dark-theme .faq-section h4 {
color: var(--dark-heading-color);
}
.dark-theme .faq-section p {
color: var(--dark-text-color);
}
.dark-theme .faq-item {
border-bottom: 1px solid var(--dark-border-color) !important;
}
/* Dark mode for success stories */
.dark-theme .success-stories {
background: var(--dark-card-bg) !important;
}
.dark-theme .success-stories h2,
.dark-theme .success-stories h3,
.dark-theme .success-stories h4 {
color: var(--dark-heading-color);
}
.dark-theme .success-stories p {
color: var(--dark-text-color);
}
.dark-theme .success-story-card {
background: var(--dark-subtle-bg) !important;
border-left: 5px solid var(--primary-color) !important;
}
/* FAQ Section Styling - Using standard styling from styles.css */
.faq-container {
max-width: 800px;
margin: 40px auto 0;
}
@media (max-width: 768px) {
.locations-grid {
grid-template-columns: 1fr;
gap: 30px;
}
.location-stats {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<div id="header-placeholder"></div>
<main>
<!-- Hero Section -->
<section class="locations-hero">
<div class="container">
<h1>Expert Web Design Services Across the UK and Canada</h1>
<p class="hero-subtitle">
Professional web design and digital marketing services with deep local expertise across major UK cities and Kelowna, BC.
We understand regional markets, local competition, and what drives success in your specific area.
</p>
<div class="hero-benefits" style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 40px 0; max-width: 800px; margin-left: auto; margin-right: auto;">
<div style="text-align: center; color: rgba(255,255,255,0.9);">
<i class="fas fa-map-marker-alt" style="font-size: 1.5rem; margin-bottom: 10px;"></i>
<p><strong>Local Market Expertise</strong><br>Deep understanding of regional business landscapes</p>
</div>
<div style="text-align: center; color: rgba(255,255,255,0.9);">
<i class="fas fa-chart-line" style="font-size: 1.5rem; margin-bottom: 10px;"></i>
<p><strong>Proven Local Results</strong><br>150+ successful projects across UK cities</p>
</div>
<div style="text-align: center; color: rgba(255,255,255,0.9);">
<i class="fas fa-handshake" style="font-size: 1.5rem; margin-bottom: 10px;"></i>
<p><strong>Regional Partnerships</strong><br>Trusted by local businesses and startups</p>
</div>
</div>
<div style="margin-top: 40px;">
<a href="#locations" class="btn btn-primary" style="margin-right: 20px;">View Locations</a>
<a href="#contact" class="btn btn-secondary">Get Free Consultation</a>
</div>
</div>
</section>
<!-- Primary Locations -->
<section class="section-transition" id="locations">
<div class="container">
<h2 class="section-title">Our Service Locations</h2>
<p class="section-subtitle" style="text-align: center;">Comprehensive web design services with local market expertise across major UK business hubs and Kelowna, BC</p>
<div class="locations-grid">
<!-- London -->
<div class="location-card">
<div class="location-icon">
<i class="fas fa-landmark"></i>
</div>
<h3>London Web Design Services</h3>
<p>The UK's financial and tech capital. Serving the City, Canary Wharf, Shoreditch, and all London boroughs with premium web design services tailored for competitive markets.</p>
<div class="location-stats">
<div class="stat-item">
<div class="stat-number">50+</div>
<div class="stat-label">Projects</div>
</div>
<div class="stat-item">
<div class="stat-number">9M+</div>
<div class="stat-label">Population</div>
</div>
</div>
<div class="location-highlights">
<h4>London Market Expertise:</h4>
<ul style="text-align: left; margin: 20px 0;">
<li>✓ Financial sector web design (City & Canary Wharf)</li>
<li>✓ Tech startup solutions (Shoreditch & Old Street)</li>
<li>✓ Premium business services (Mayfair & Westminster)</li>
<li>✓ Fast turnaround for urgent projects</li>
<li>✓ High-end e-commerce for luxury brands</li>
</ul>
</div>
<div class="local-insights">
<p><strong>London Insight:</strong> With over 40,000 new businesses starting in London annually, standing out online is crucial. We specialise in creating premium websites that compete in London's demanding market.</p>
</div>
<a href="/locations/london" class="btn btn-primary full-width">Explore London Services</a>
</div>
<!-- Manchester -->
<div class="location-card">
<div class="location-icon">
<i class="fas fa-industry"></i>
</div>
<h3>Manchester Web Design Services</h3>
<p>The Northern Powerhouse and UK's second tech hub. Expert web design for Manchester's thriving digital economy, creative industries, and growing startup ecosystem.</p>
<div class="location-stats">
<div class="stat-item">
<div class="stat-number">30+</div>
<div class="stat-label">Projects</div>
</div>
<div class="stat-item">
<div class="stat-number">2.7M+</div>
<div class="stat-label">Population</div>
</div>
</div>
<div class="location-highlights">
<h4>Manchester Market Expertise:</h4>
<ul style="text-align: left; margin: 20px 0;">
<li>✓ Tech startup focus (Northern Quarter)</li>
<li>✓ Creative industry expertise (Ancoats)</li>
<li>✓ MediaCity digital solutions (Salford)</li>
<li>✓ Competitive Northern pricing</li>
<li>✓ Manufacturing & industrial B2B sites</li>
</ul>
</div>
<div class="local-insights">
<p><strong>Manchester Insight:</strong> As the UK's fastest-growing tech city outside London, Manchester offers incredible opportunities. We help businesses capitalise on the city's £5bn digital economy.</p>
</div>
<a href="/locations/manchester" class="btn btn-primary full-width">Explore Manchester Services</a>
</div>
<!-- Birmingham -->
<div class="location-card">
<div class="location-icon">
<i class="fas fa-building"></i>
</div>
<h3>Birmingham Web Design Services</h3>
<p>The UK's second city and Midlands business capital. Comprehensive web design services for Birmingham's diverse economy, from automotive to financial services.</p>
<div class="location-stats">
<div class="stat-item">
<div class="stat-number">25+</div>
<div class="stat-label">Projects</div>
</div>
<div class="stat-item">
<div class="stat-number">2.9M+</div>
<div class="stat-label">Population</div>
</div>
</div>
<div class="location-highlights">
<h4>Birmingham Market Expertise:</h4>
<ul style="text-align: left; margin: 20px 0;">
<li>✓ Manufacturing & automotive sector focus</li>
<li>✓ Business district expertise (Colmore Row)</li>
<li>✓ Midlands market knowledge</li>
<li>✓ Value-driven solutions for SMEs</li>
<li>✓ Jewellery Quarter creative businesses</li>
</ul>
</div>
<div class="local-insights">
<p><strong>Birmingham Insight:</strong> As Europe's youngest major city, Birmingham's dynamic economy creates unique digital opportunities. We understand the Midlands market and its £90bn economy.</p>
</div>
<a href="/locations/birmingham" class="btn btn-primary full-width">Explore Birmingham Services</a>
</div>
<!-- Leeds -->
<div class="location-card">
<div class="location-icon">
<i class="fas fa-university"></i>
</div>
<h3>Leeds Web Design Services</h3>
<p>Yorkshire's business and financial hub. Professional web design services for Leeds' thriving financial sector, legal services, and growing digital economy.</p>
<div class="location-stats">
<div class="stat-item">
<div class="stat-number">20+</div>
<div class="stat-label">Projects</div>
</div>
<div class="stat-item">
<div class="stat-number">1.9M+</div>
<div class="stat-label">Population</div>
</div>
</div>
<div class="location-highlights">
<h4>Leeds Market Expertise:</h4>
<ul style="text-align: left; margin: 20px 0;">
<li>✓ Financial services focus (Park Row)</li>
<li>✓ Legal sector expertise</li>
<li>✓ Yorkshire business culture understanding</li>
<li>✓ Professional services websites</li>
<li>✓ Call centre & customer service platforms</li>
</ul>
</div>
<div class="local-insights">
<p><strong>Leeds Insight:</strong> As the UK's largest financial centre outside London, Leeds demands sophisticated digital solutions. We create websites that reflect Yorkshire's professional standards.</p>
</div>
<a href="/locations/leeds" class="btn btn-primary full-width">Explore Leeds Services</a>
</div>
<!-- Jewellery Quarter Birmingham -->
<div class="location-card">
<div class="location-icon">
<i class="fas fa-gem"></i>
</div>
<h3>Jewellery Quarter Web Design</h3>
<p>Specialist web design and Shopify support for Birmingham's Jewellery Quarter. Built for local search intent and conversion-focused lead generation.</p>
<div class="location-stats">
<div class="stat-item">
<div class="stat-number">Niche</div>
<div class="stat-label">Local Focus</div>
</div>
<div class="stat-item">
<div class="stat-number">High</div>
<div class="stat-label">Commercial Intent</div>
</div>
</div>
<div class="location-highlights">
<h4>Jewellery Quarter Focus:</h4>
<ul style="text-align: left; margin: 20px 0;">
<li>✓ Websites for jewellers and showroom brands</li>
<li>✓ Shopify builds for product-led businesses</li>
<li>✓ Local SEO setup for district-level searches</li>
<li>✓ Conversion-first landing page architecture</li>
<li>✓ Internal link strategy from core city pages</li>
</ul>
</div>
<div class="local-insights">
<p><strong>Jewellery Quarter Insight:</strong> This area has high-intent search behaviour. Focused pages can outperform broader city pages for niche commercial terms.</p>
</div>
<a href="/locations/jewellery-quarter-birmingham" class="btn btn-primary full-width">Explore Jewellery Quarter Services</a>
</div>
<!-- Brighton -->
<div class="location-card">
<div class="location-icon">
<i class="fas fa-water"></i>
</div>
<h3>Brighton Web Design Services</h3>
<p>Creative, independent, and fast-moving—Brighton brands need websites that feel on‑brand and convert. We build fast, clean, and conversion-focused sites for Brighton & Hove.</p>
<div class="location-stats">
<div class="stat-item">
<div class="stat-number">15+</div>
<div class="stat-label">Projects</div>
</div>
<div class="stat-item">
<div class="stat-number">~290k</div>
<div class="stat-label">Population</div>
</div>
</div>
<div class="location-highlights">
<h4>Brighton Market Expertise:</h4>
<ul style="text-align: left; margin: 20px 0;">
<li>✓ Creative & hospitality brands in The Lanes</li>
<li>✓ Shopify and e‑commerce for DTC brands</li>
<li>✓ Fast-turnaround landing pages for events</li>
<li>✓ Lightweight, SEO‑friendly builds</li>
<li>✓ CRO-first messaging and structure</li>
</ul>
</div>
<div class="local-insights">
<p><strong>Brighton Insight:</strong> A competitive creative hub needs stand‑out UX and speed. We optimise for both so your site wins on mobile and search.</p>
</div>
<a href="/locations/brighton" class="btn btn-primary full-width">Explore Brighton Services</a>
</div>
<!-- Kelowna -->
<div class="location-card">
<div class="location-icon">
<i class="fas fa-mountain"></i>
</div>
<h3>Kelowna Web Design Services</h3>
<p>Web design for Kelowna and the Okanagan. We build high-converting websites and landing pages for local service businesses, hospitality brands, and growing e-commerce teams.</p>
<div class="location-stats">
<div class="stat-item">
<div class="stat-number">10+</div>
<div class="stat-label">Projects</div>
</div>
<div class="stat-item">
<div class="stat-number">~160k</div>
<div class="stat-label">Population</div>
</div>
</div>
<div class="location-highlights">
<h4>Kelowna Market Expertise:</h4>
<ul style="text-align: left; margin: 20px 0;">
<li>✓ Local service business lead-generation sites</li>
<li>✓ Hospitality and tourism conversion pages</li>
<li>✓ Shopify and e-commerce growth builds</li>
<li>✓ Fast mobile performance and Core Web Vitals</li>
<li>✓ SEO-ready structure for local search intent</li>
</ul>
</div>
<div class="local-insights">
<p><strong>Kelowna Insight:</strong> Okanagan businesses rely heavily on local discovery and mobile traffic. Fast, conversion-first websites create a clear edge.</p>
</div>
<a href="/locations/kelowna" class="btn btn-primary full-width">Explore Kelowna Services</a>
</div>
<!-- Liverpool -->
<div class="location-card">
<div class="location-icon">
<i class="fas fa-ship"></i>
</div>
<h3>Liverpool Web Design Services</h3>
<p>Maritime heritage meets modern innovation. Web design services for Liverpool's growing digital economy, creative industries, and thriving tourism sector.</p>
<div class="location-stats">
<div class="stat-item">
<div class="stat-number">15+</div>
<div class="stat-label">Projects</div>
</div>
<div class="stat-item">
<div class="stat-number">1.4M+</div>
<div class="stat-label">Population</div>
</div>
</div>
<div class="location-highlights">
<h4>Liverpool Market Expertise:</h4>
<ul style="text-align: left; margin: 20px 0;">
<li>✓ Creative industry focus (Baltic Triangle)</li>
<li>✓ Tourism sector expertise</li>
<li>✓ Maritime business knowledge</li>
<li>✓ Cultural sensitivity & local pride</li>
<li>✓ Music & entertainment industry sites</li>
</ul>
</div>
<div class="local-insights">
<p><strong>Liverpool Insight:</strong> Liverpool's creative renaissance has created a £2.5bn digital sector. We help businesses tap into the city's unique cultural energy and growing tech scene.</p>
</div>
<a href="/locations/liverpool" class="btn btn-primary full-width">Explore Liverpool Services</a>
</div>
<!-- Bristol -->
<div class="location-card">
<div class="location-icon">
<i class="fas fa-rocket"></i>
</div>
<h3>Bristol Web Design Services</h3>
<p>Southwest England's tech and innovation capital. Modern web design solutions for Bristol's cutting-edge aerospace, tech, and creative sectors.</p>
<div class="location-stats">
<div class="stat-item">
<div class="stat-number">12+</div>
<div class="stat-label">Projects</div>
</div>
<div class="stat-item">
<div class="stat-number">700K+</div>
<div class="stat-label">Population</div>
</div>
</div>
<div class="location-highlights">
<h4>Bristol Market Expertise:</h4>
<ul style="text-align: left; margin: 20px 0;">
<li>✓ Tech startup expertise (Engine Shed)</li>
<li>✓ Aerospace industry focus</li>
<li>✓ Innovation-driven solutions</li>
<li>✓ Future-ready designs</li>
<li>✓ Green tech & sustainability focus</li>
</ul>
</div>
<div class="local-insights">
<p><strong>Bristol Insight:</strong> Named UK's most innovative city, Bristol's £13bn economy demands cutting-edge digital solutions. We create websites as forward-thinking as the businesses we serve.</p>
</div>
<a href="/locations/bristol" class="btn btn-primary full-width">Explore Bristol Services</a>
</div>
</div>
<!-- Extended Coverage -->
<div style="margin-top: 60px; text-align: center; padding: 40px; background: rgba(67, 97, 238, 0.05); border-radius: var(--border-radius);">
<h3>Plus Extended Coverage Across the UK</h3>
<p style="margin: 20px 0; color: var(--gray-color);">We also serve businesses in Newcastle, Sheffield, Nottingham, Cardiff, Edinburgh, Glasgow, and more.</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 30px 0;">
<div>Newcastle • Sheffield • Nottingham</div>
<div>Cardiff • Swansea • Newport</div>
<div>Edinburgh • Glasgow • Aberdeen</div>
<div>Leicester • Coventry • Derby</div>
</div>
<a href="#contact" class="btn btn-outline">Get Quote for Your City</a>
</div>
</div>
</section>
<!-- Coverage Map Section -->
<section class="coverage-map">
<div class="container">
<h2 class="section-title">UK Market Data & Opportunities</h2>
<p class="section-subtitle" style="text-align: center;">Understanding the digital landscape across major UK business centers</p>
<div class="market-data-grid" style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin: 50px 0;">
<div class="market-data-card" style="background: white; padding: 30px; border-radius: var(--border-radius); box-shadow: var(--box-shadow);">
<h4>London Digital Economy</h4>
<div style="font-size: 2rem; font-weight: 700; color: var(--primary-color); margin: 15px 0;">£200bn+</div>
<p>Annual digital economy value with 40,000+ new businesses starting yearly. London leads European fintech and has the highest concentration of digital startups.</p>
<ul style="margin-top: 20px; text-align: left;">
<li>• 1 in 3 UK tech unicorns are London-based</li>
<li>• £10.5bn invested in London tech in 2023</li>
<li>• 60% of UK's digital advertising spend</li>
</ul>
</div>
<div class="market-data-card" style="background: white; padding: 30px; border-radius: var(--border-radius); box-shadow: var(--box-shadow);">
<h4>Manchester Tech Growth</h4>
<div style="font-size: 2rem; font-weight: 700; color: var(--primary-color); margin: 15px 0;">+25%</div>
<p>Annual growth in tech jobs making Manchester the UK's fastest-growing tech hub outside London. The Northern Powerhouse initiative drives massive digital investment.</p>
<ul style="margin-top: 20px; text-align: left;">
<li>• 100,000+ digital jobs in Greater Manchester</li>
<li>• £5bn contribution to regional economy</li>
<li>• Home to 65,000+ businesses</li>
</ul>
</div>
<div class="market-data-card" style="background: white; padding: 30px; border-radius: var(--border-radius); box-shadow: var(--box-shadow);">
<h4>UK E-commerce Boom</h4>
<div style="font-size: 2rem; font-weight: 700; color: var(--primary-color); margin: 15px 0;">£99bn</div>
<p>UK online retail sales in 2023, representing 28% of total retail. Post-pandemic digital acceleration continues with mobile commerce growing 40% year-on-year.</p>
<ul style="margin-top: 20px; text-align: left;">
<li>• 87% of UK adults shop online</li>
<li>• Mobile accounts for 50% of e-commerce traffic</li>
<li>• B2B online sales growing 18% annually</li>
</ul>
</div>
</div>
<div class="coverage-stats">
<div class="coverage-stat">
<div class="coverage-number">150+</div>
<h4>Projects Completed</h4>
<p>Successful web design projects across the UK spanning all major industries and business sizes</p>
</div>
<div class="coverage-stat">
<div class="coverage-number">25+</div>
<h4>Cities Served</h4>
<p>Major UK cities and surrounding areas with dedicated local market expertise</p>
</div>
<div class="coverage-stat">
<div class="coverage-number">98%</div>
<h4>Client Satisfaction</h4>
<p>Outstanding client satisfaction rate with many long-term partnerships across all locations</p>
</div>
<div class="coverage-stat">
<div class="coverage-number">24hr</div>
<h4>Response Time</h4>
<p>Rapid response times nationwide with dedicated support for urgent projects</p>
</div>
</div>
</div>
</section>
<!-- Success Stories Section -->
<section class="success-stories" style="background: white; padding: 80px 0; margin: 80px 0;">
<div class="container">
<h2 class="section-title">Local Success Stories</h2>
<p class="section-subtitle" style="text-align: center;">Real results from businesses across our UK locations</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; margin: 50px 0;">
<div class="success-story-card" style="background: #f8f9ff; padding: 40px; border-radius: var(--border-radius); border-left: 5px solid var(--primary-color);">
<div style="display: flex; align-items: center; margin-bottom: 20px;">
<i class="fas fa-landmark" style="font-size: 2rem; color: var(--primary-color); margin-right: 15px;"></i>
<div>
<h4>London Fintech Startup</h4>
<p style="color: var(--gray-color); margin: 0;">Financial Technology</p>
</div>
</div>
<p>"Our website redesign helped us secure £2M in Series A funding. The professional design gave investors confidence in our digital capabilities."</p>
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px;">
<div style="text-align: center;">
<div style="font-size: 1.5rem; font-weight: 700; color: var(--primary-color);">+180%</div>
<div style="font-size: 0.9rem; color: var(--gray-color);">Lead Generation</div>
</div>
<div style="text-align: center;">
<div style="font-size: 1.5rem; font-weight: 700; color: var(--primary-color);">£2M</div>
<div style="font-size: 0.9rem; color: var(--gray-color);">Funding Secured</div>
</div>
</div>
</div>
<div class="success-story-card" style="background: #f8f9ff; padding: 40px; border-radius: var(--border-radius); border-left: 5px solid var(--primary-color);">
<div style="display: flex; align-items: center; margin-bottom: 20px;">
<i class="fas fa-industry" style="font-size: 2rem; color: var(--primary-color); margin-right: 15px;"></i>
<div>
<h4>Manchester Creative Agency</h4>
<p style="color: var(--gray-color); margin: 0;">Digital Marketing</p>
</div>
</div>
<p>"The new website perfectly captured Manchester's creative energy. Our client inquiries tripled within 6 months of launch."</p>
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px;">
<div style="text-align: center;">
<div style="font-size: 1.5rem; font-weight: 700; color: var(--primary-color);">+300%</div>
<div style="font-size: 0.9rem; color: var(--gray-color);">Client Inquiries</div>
</div>
<div style="text-align: center;">
<div style="font-size: 1.5rem; font-weight: 700; color: var(--primary-color);">Top 3</div>
<div style="font-size: 0.9rem; color: var(--gray-color);">Google Rankings</div>
</div>
</div>
</div>
<div class="success-story-card" style="background: #f8f9ff; padding: 40px; border-radius: var(--border-radius); border-left: 5px solid var(--primary-color);">
<div style="display: flex; align-items: center; margin-bottom: 20px;">
<i class="fas fa-building" style="font-size: 2rem; color: var(--primary-color); margin-right: 15px;"></i>
<div>
<h4>Birmingham Manufacturing</h4>
<p style="color: var(--gray-color); margin: 0;">Industrial Equipment</p>
</div>
</div>
<p>"Our B2B website now generates qualified leads daily. The professional design reflects our engineering excellence."</p>
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px;">
<div style="text-align: center;">
<div style="font-size: 1.5rem; font-weight: 700; color: var(--primary-color);">+250%</div>
<div style="font-size: 0.9rem; color: var(--gray-color);">B2B Leads</div>
</div>
<div style="text-align: center;">
<div style="font-size: 1.5rem; font-weight: 700; color: var(--primary-color);">£500K</div>
<div style="font-size: 0.9rem; color: var(--gray-color);">New Contracts</div>
</div>
</div>
</div>
</div>
<div style="text-align: center; margin-top: 50px;">
<h3>Join Our Success Stories</h3>
<p style="margin: 20px 0; color: var(--gray-color);">See how we can transform your business's digital presence in your local market</p>
<a href="#contact" class="btn btn-primary">Get Your Free Consultation</a>
</div>
</div>
</section>
<!-- Services Overview -->
<section class="primary-locations">
<div class="container">
<h2 class="section-title">What We Offer in Every Location</h2>
<p class="section-subtitle" style="text-align: center;">Consistent quality and expertise across all UK locations</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin: 50px 0;">
<div style="text-align: center;">
<div style="width: 60px; height: 60px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem;">
<i class="fas fa-desktop"></i>
</div>
<h4>Custom Web Design</h4>
<p>Bespoke websites tailored to your local market, competition, and customer preferences</p>
</div>
<div style="text-align: center;">
<div style="width: 60px; height: 60px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem;">
<i class="fas fa-rocket"></i>
</div>
<h4>High-Converting Landing Pages</h4>
<p>Landing pages optimised for your target location with local SEO and regional insights</p>
</div>
<div style="text-align: center;">
<div style="width: 60px; height: 60px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem;">
<i class="fas fa-search"></i>
</div>
<h4>Local SEO Optimisation</h4>
<p>Search optimisation targeting your specific city, region, and local search behaviours</p>
</div>
<div style="text-align: center;">
<div style="width: 60px; height: 60px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem;">
<i class="fas fa-shopping-cart"></i>
</div>
<h4>E-commerce Solutions</h4>
<p>Online stores optimised for your local customer base and regional payment preferences</p>
</div>
<div style="text-align: center;">
<div style="width: 60px; height: 60px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem;">
<i class="fas fa-mobile-alt"></i>
</div>
<h4>Mobile-First Design</h4>
<p>Responsive websites that work perfectly on all devices with fast loading speeds</p>
</div>
<div style="text-align: center;">
<div style="width: 60px; height: 60px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem;">
<i class="fas fa-headset"></i>
</div>
<h4>Ongoing Support</h4>
<p>Continuous maintenance, updates, and local support to keep your website performing</p>
</div>
</div>
</div>
</section>
<!-- Our Process Section -->
<section class="process-section" style="background: #f8f9ff; padding: 80px 0; margin: 80px 0;">
<div class="container">
<h2 class="section-title">Our Location-Focused Process</h2>
<p class="section-subtitle" style="text-align: center;">How we deliver exceptional results with local market expertise</p>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin: 50px 0;">
<div style="text-align: center; padding: 30px;">
<div style="width: 80px; height: 80px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; position: relative;">
<span style="position: absolute; top: -10px; right: -10px; background: var(--accent-color); color: white; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700;">1</span>
<i class="fas fa-search"></i>
</div>
<h4>Local Market Research</h4>
<p>Deep dive into your local market, competitors, and customer behaviours. We analyse regional trends, local search patterns, and area-specific business opportunities.</p>
</div>
<div style="text-align: center; padding: 30px;">
<div style="width: 80px; height: 80px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; position: relative;">
<span style="position: absolute; top: -10px; right: -10px; background: var(--accent-color); color: white; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700;">2</span>
<i class="fas fa-pencil-ruler"></i>
</div>
<h4>Strategic Design Planning</h4>
<p>Create wireframes and designs that reflect your local brand positioning. We ensure your website resonates with regional customers and stands out in your local market.</p>
</div>
<div style="text-align: center; padding: 30px;">
<div style="width: 80px; height: 80px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; position: relative;">
<span style="position: absolute; top: -10px; right: -10px; background: var(--accent-color); color: white; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700;">3</span>
<i class="fas fa-code"></i>
</div>
<h4>Development & Local SEO</h4>
<p>Build your website with local SEO optimisation, ensuring excellent performance in local search results and fast loading speeds for your regional audience.</p>
</div>
<div style="text-align: center; padding: 30px;">
<div style="width: 80px; height: 80px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; position: relative;">
<span style="position: absolute; top: -10px; right: -10px; background: var(--accent-color); color: white; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700;">4</span>
<i class="fas fa-rocket"></i>
</div>
<h4>Launch & Local Monitoring</h4>
<p>Launch your website with comprehensive local tracking. We monitor local search performance, regional traffic patterns, and provide ongoing optimisation.</p>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="faq-section" style="background: white; padding: 60px 0 40px 0;">
<div class="container">
<h2 class="section-title">Frequently Asked Questions</h2>
<p class="section-subtitle" style="text-align: center;">Everything you need to know about our UK-wide web design services</p>
<div class="faq-container">
<div class="faq-item">
<div class="faq-question">
<h3>Do you have physical offices in every city you serve?</h3>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>While we operate primarily as a digital-first agency, we have local representatives and partners in major UK cities. We can arrange face-to-face meetings in London, Manchester, Birmingham, Leeds, Liverpool, and Bristol when needed. Our digital-first approach allows us to provide excellent service nationwide while keeping costs competitive.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<h3>How do you understand local markets without being physically present?</h3>
<i class="fas fa-chevron-down"></i>
</div>
<div class="faq-answer">
<p>We invest heavily in local market research for each region we serve. Our team includes specialists with expertise in different UK regions, and we use advanced analytics tools to understand local search behaviours, competitor landscapes, and regional business trends. We also partner with local business networks and chambers of commerce.</p>
</div>
</div>
<div class="faq-item">
<div class="faq-question">
<h3>What makes your local SEO different from standard SEO?</h3>
<i class="fas fa-chevron-down"></i>
</div>