-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1120 lines (1023 loc) · 41 KB
/
Copy pathindex.html
File metadata and controls
1120 lines (1023 loc) · 41 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>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>HO Studio — AI Systems & Digital Growth for Small Businesses</title>
<meta name="description" content="We help small businesses grow with AI-powered UGC content, website optimization, voice agents, and automation. Real results, real projects." />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🚀</text></svg>" />
<!-- Lottie (load once) -->
<script
src="https://unpkg.com/@lottiefiles/dotlottie-wc@0.8.11/dist/dotlottie-wc.js"
type="module"
></script>
<!-- Eleven Labs Voice AI Widget -->
<script src="https://unpkg.com/@elevenlabs/convai-widget-embed" async type="text/javascript"></script>
<style>
:root{
--max: 1120px;
--sectionY: 96px;
--heroTop: 110px;
--gap: 26px;
--bg:#050505;
--text:rgba(255,255,255,.92);
--muted:rgba(255,255,255,.64);
--muted2:rgba(255,255,255,.46);
--link:#5aa7ff;
--radius:18px;
--gridOpacity: .48;
--gridSize: 66px;
--gridLine: rgba(255,255,255,.085);
--glow1: 0 0 0 1px rgba(255,255,255,.35);
--glow2: 0 10px 28px rgba(0,0,0,.55);
--glow3: 0 0 26px rgba(255,255,255,.18);
}
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
margin:0;
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
background: var(--bg);
color: var(--text);
line-height:1.45;
overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }
/* Background */
.bg-grid{
position:fixed; inset:0; pointer-events:none; z-index:-2;
background:
linear-gradient(to right, var(--gridLine) 1px, transparent 1px),
linear-gradient(to bottom, var(--gridLine) 1px, transparent 1px);
background-size: var(--gridSize) var(--gridSize);
opacity: var(--gridOpacity);
filter: blur(.15px);
transform: translateZ(0);
}
.bg-radial{
position:fixed; inset:-1px; pointer-events:none; z-index:-1;
background:
radial-gradient(ellipse at center,
rgba(255,255,255,.08) 0%,
rgba(255,255,255,0) 48%,
rgba(0,0,0,.90) 100%);
}
.wrap{ width:min(var(--max), calc(100% - 44px)); margin:0 auto; }
/* Nav */
.nav{ position:sticky; top:18px; z-index:50; margin-top:18px; }
.nav__bar{
display:flex; align-items:center; justify-content:space-between; gap:16px;
padding: 16px 20px;
border-radius:999px;
background: rgba(255,255,255,.045);
border: 1px solid rgba(255,255,255,.12);
backdrop-filter: blur(10px);
box-shadow: 0 12px 34px rgba(0,0,0,.45);
}
.brand{ display:flex; align-items:center; gap:12px; font-weight:800; letter-spacing:.2px; }
.brand__logo{
width: 44px;
height: 44px;
object-fit: contain;
display:block;
}
.nav__links{
display:flex; align-items:center; gap:18px;
color: var(--muted);
font-size:14px;
}
.nav__links a{ padding:8px 10px; border-radius:10px; }
.nav__links a:hover{
background: rgba(255,255,255,.05);
color: var(--text);
}
@media (max-width: 768px) {
.nav__links { display:none; }
}
/* Buttons */
.btn{
display:inline-flex; align-items:center; justify-content:center; gap:10px;
padding: 13px 18px;
border-radius: 14px;
font-weight: 750;
font-size: 14px;
cursor:pointer;
border: 1px solid rgba(255,255,255,.16);
background: rgba(255,255,255,.06);
box-shadow: 0 10px 22px rgba(0,0,0,.35);
color: var(--text);
transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); }
.btn--glow{
background: rgba(255,255,255,.94);
color:#0b0b0b;
border: 1px solid rgba(255,255,255,.70);
box-shadow: var(--glow1), var(--glow2), var(--glow3);
}
.btn--glow:hover{
transform: translateY(-1px);
box-shadow:
0 0 0 1px rgba(255,255,255,.45),
0 14px 34px rgba(0,0,0,.55),
0 0 34px rgba(255,255,255,.22);
background:#fff;
}
/* Sections */
section{ padding: var(--sectionY) 0; }
.hero{ padding-top: var(--heroTop); padding-bottom: 68px; }
.hero__inner{ text-align:center; padding: 62px 0 10px; }
h1{
margin: 22px 0 12px;
font-size: clamp(42px, 6.5vw, 92px);
letter-spacing: -1.6px;
line-height: 1.02;
font-weight: 900;
text-shadow: 0 16px 70px rgba(0,0,0,.65);
}
h1 .dim{ color: rgba(255,255,255,.34); font-weight: 900; }
.lead{
margin: 18px auto 30px;
max-width: 820px;
color: var(--muted);
font-size: 15px;
line-height: 1.6;
text-shadow: 0 10px 40px rgba(0,0,0,.55);
}
.hero__actions{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
/* Social Proof Badge */
.proof-badge{
display:inline-flex;
align-items:center;
gap:10px;
padding: 10px 18px;
border-radius:999px;
background: rgba(255,255,255,.05);
border: 1px solid rgba(255,255,255,.10);
font-size:13px;
color: var(--muted);
margin-bottom: 16px;
}
.proof-badge strong{ color: var(--text); font-weight:800; }
.divider-line{
margin-top: 68px;
height: 1px;
background: linear-gradient(to right, transparent, rgba(255,255,255,.22), transparent);
opacity:.75;
}
.section-head{
text-align:center;
max-width: 900px;
margin: 0 auto 28px;
}
.section-head h2{
margin:0 0 10px;
font-size: clamp(36px, 4.2vw, 60px);
letter-spacing:-1.15px;
line-height: 1.04;
font-weight: 900;
}
.section-head .dim{ color: rgba(255,255,255,.34); font-weight: 900; }
.section-head p{ margin: 10px 0 0; color: var(--muted); font-size: 15px; }
/* Featured Case Study */
.case-study{
background: rgba(255,255,255,.03);
border: 1px solid rgba(255,255,255,.11);
border-radius: var(--radius);
padding: 48px;
margin-top: 34px;
box-shadow: 0 18px 55px rgba(0,0,0,.50);
}
.case-study__header{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:24px;
margin-bottom: 32px;
flex-wrap:wrap;
}
.case-study__title{
flex:1;
min-width:280px;
}
.case-study__title h3{
margin:0 0 8px;
font-size: clamp(28px, 3.2vw, 42px);
letter-spacing:-0.8px;
font-weight:900;
}
.case-study__title .subtitle{
color: var(--muted);
font-size:15px;
}
.case-study__stats{
display:flex;
gap:32px;
flex-wrap:wrap;
}
.stat{
text-align:center;
}
.stat__number{
font-size: clamp(24px, 2.8vw, 36px);
font-weight:900;
margin-bottom:4px;
color: rgba(255,255,255,.94);
}
.stat__label{
font-size:13px;
color: var(--muted);
}
.case-study__content{
display:grid;
grid-template-columns: 1fr 1fr;
gap:28px;
align-items:start;
}
.case-study__text h4{
margin:0 0 12px;
font-size:18px;
font-weight:800;
}
.case-study__text p{
margin:0 0 16px;
color: var(--muted);
line-height:1.6;
}
.case-study__text ul{
margin:0;
padding-left:20px;
color: var(--muted);
}
.case-study__text li{
margin-bottom:8px;
}
.case-study__gallery{
display:grid;
grid-template-columns: repeat(2, 1fr);
gap:16px;
}
.gallery-item{
border-radius:12px;
overflow:hidden;
background: rgba(255,255,255,.04);
border: 1px solid rgba(255,255,255,.08);
aspect-ratio: 3/4;
}
.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
opacity:.95;
}
.gallery-item video{
width:100%;
height:100%;
object-fit:cover;
}
.gallery-item--wide{
grid-column: span 2;
aspect-ratio: 16/9;
}
@media (max-width: 968px) {
.case-study{ padding:32px 24px; }
.case-study__content{
grid-template-columns: 1fr;
}
.case-study__stats{
gap:20px;
}
}
/* Work cards */
.grid3{
display:grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: var(--gap);
margin-top: 34px;
}
.card{
border-radius: var(--radius);
overflow:hidden;
background: rgba(255,255,255,.03);
border: 1px solid rgba(255,255,255,.11);
box-shadow: 0 18px 55px rgba(0,0,0,.50);
transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover{
transform: translateY(-4px);
box-shadow: 0 22px 65px rgba(0,0,0,.60);
}
.card__media{
height: 200px;
position:relative;
overflow:hidden;
background: rgba(255,255,255,.04);
}
.card__media img{ width:100%; height:100%; object-fit:cover; opacity:.95; }
.card__media video{ width:100%; height:100%; object-fit:cover; }
.card__body{ padding: 20px 20px 18px; }
.card__title{ font-weight:900; margin:0 0 8px; letter-spacing:-.25px; font-size: 16px; }
.card__text{ margin:0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.card__link{
display:inline-flex; align-items:center; gap:8px;
margin-top: 14px;
color: var(--link);
font-weight: 750;
font-size: 14px;
}
/* Service blocks */
.service{
display:grid;
grid-template-columns: 1fr 1fr;
gap: 44px;
align-items:center;
}
.service__left h2{
margin:0 0 16px;
font-size: clamp(32px, 3.6vw, 48px);
letter-spacing:-0.9px;
line-height:1.05;
font-weight:900;
}
.service__left p{
margin:0 0 24px;
color: var(--muted);
line-height:1.6;
font-size:15px;
}
.service__right{
position:relative;
}
.lottie-card{
border-radius: var(--radius);
overflow:hidden;
background: rgba(255,255,255,.03);
border: 1px solid rgba(255,255,255,.11);
box-shadow: 0 18px 55px rgba(0,0,0,.50);
padding:32px;
}
.lottie-card dotlottie-wc{
width:100%;
max-width:450px;
margin:0 auto;
display:block;
}
/* Voice Inline Widget */
.voice-inline-widget{
border-radius: var(--radius);
overflow:hidden;
background: rgba(255,255,255,.03);
border: 1px solid rgba(255,255,255,.11);
box-shadow: 0 18px 55px rgba(0,0,0,.50);
padding:32px;
}
.widget-header{
text-align:center;
margin-bottom:24px;
}
.widget-header h3{
margin:0 0 8px;
font-size:28px;
font-weight:800;
color: var(--text);
}
.widget-header p{
margin:0;
color: var(--muted);
font-size:15px;
}
.widget-embed{
min-height:500px;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
background: rgba(0,0,0,.2);
padding:20px;
}
.widget-embed elevenlabs-convai{
width:100%;
height:100%;
min-height:450px;
}
@media (max-width: 968px) {
.service{
grid-template-columns: 1fr;
gap:32px;
}
}
/* FAQ */
.faq{ max-width:860px; margin:0 auto; }
.accordion{
border-radius: var(--radius);
overflow:hidden;
background: rgba(255,255,255,.03);
border: 1px solid rgba(255,255,255,.11);
box-shadow: 0 18px 55px rgba(0,0,0,.50);
}
details{
border-bottom: 1px solid rgba(255,255,255,.08);
}
details:last-child{ border-bottom:none; }
summary{
padding: 24px 28px;
cursor:pointer;
font-weight:750;
display:flex;
justify-content:space-between;
align-items:center;
user-select:none;
transition: background .2s ease;
}
summary:hover{
background: rgba(255,255,255,.04);
}
.chev{
transition: transform .25s ease;
font-size:18px;
color: var(--muted);
}
details[open] .chev{
transform: rotate(180deg);
}
.answer{
padding: 0 28px 24px;
color: var(--muted);
line-height:1.6;
}
/* Footer */
footer{
margin-top: 120px;
padding: 72px 0 48px;
border-top: 1px solid rgba(255,255,255,.08);
}
.footer-cta{
text-align:center;
max-width:720px;
margin:0 auto 68px;
}
.footer-cta h2{
margin:0 0 14px;
font-size: clamp(36px, 4vw, 54px);
letter-spacing:-1.1px;
line-height:1.04;
font-weight:900;
}
.footer-cta p{
margin:14px 0 26px;
color: var(--muted);
font-size:15px;
}
.footer-grid{
display:grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap:48px;
margin-bottom:48px;
}
.footer-col h4{
margin:0 0 14px;
font-size:14px;
font-weight:900;
letter-spacing:.3px;
text-transform:uppercase;
color: rgba(255,255,255,.50);
}
.footer-col a{
display:block;
margin-bottom:10px;
color: var(--muted);
font-size:14px;
}
.footer-col a:hover{ color: var(--text); }
.footer-note{
text-align:center;
padding-top:32px;
border-top: 1px solid rgba(255,255,255,.06);
color: var(--muted);
font-size:14px;
}
@media (max-width: 768px) {
.footer-grid{
grid-template-columns: 1fr 1fr;
gap:32px;
}
}
/* Eleven Labs Voice Widget - Mobile Size Control */
elevenlabs-convai {
position: fixed !important;
bottom: 20px !important;
right: 20px !important;
z-index: 9999 !important;
}
@media (max-width: 768px) {
elevenlabs-convai {
transform: scale(0.65) !important;
transform-origin: bottom right !important;
bottom: 10px !important;
right: 10px !important;
}
}
@media (max-width: 480px) {
elevenlabs-convai {
transform: scale(0.55) !important;
transform-origin: bottom right !important;
bottom: 5px !important;
right: 5px !important;
}
}
</style>
</head>
<body>
<div class="bg-grid"></div>
<div class="bg-radial"></div>
<div class="wrap">
<!-- Nav -->
<nav class="nav">
<div class="nav__bar">
<a href="#" class="brand">
<img class="brand__logo" src="./logo.png" alt="HO Studio" />
</a>
<div class="nav__links">
<a href="#services">Services</a>
<a href="#work">Work</a>
<a href="#faq">FAQ</a>
</div>
<a class="btn btn--glow" href="#contact">Get Started</a>
</div>
</nav>
<!-- Hero -->
<section class="hero">
<div class="hero__inner">
<div class="proof-badge">
✨ Helped <strong>Made by Amari</strong> grow to 1K+ followers
</div>
<h1>
Grow Your Business with<br/>
<span class="dim">AI-Powered Content & Automation</span>
</h1>
<p class="lead">
We help small businesses and entrepreneurs scale faster with professional UGC content, website optimization, AI voice agents, and smart automation. No big budgets. No complicated tech. Just results that grow your business.
</p>
<div class="hero__actions">
<a class="btn btn--glow" href="#contact">Start Your Project</a>
<a class="btn" href="#work">See Our Work</a>
</div>
<div class="divider-line"></div>
</div>
</section>
<!-- Featured Case Study - Made by Amari -->
<section id="work">
<div class="section-head">
<h2>Featured <span class="dim">Case Study</span></h2>
<p>How we helped a jewelry brand launch and grow on social media</p>
</div>
<div class="case-study">
<div class="case-study__header">
<div class="case-study__title">
<h3>Made by Amari</h3>
<p class="subtitle">Jewelry E-Commerce Brand Launch</p>
</div>
<div class="case-study__stats">
<div class="stat">
<div class="stat__number">1K+</div>
<div class="stat__label">Followers</div>
</div>
<div class="stat">
<div class="stat__number">30+</div>
<div class="stat__label">UGC Posts</div>
</div>
<div class="stat">
<div class="stat__number">100%</div>
<div class="stat__label">AI Content</div>
</div>
</div>
</div>
<div class="case-study__content">
<div class="case-study__text">
<h4>The Challenge</h4>
<p>Made by Amari needed to launch their jewelry e-commerce brand with professional social media content, but didn't have the budget for expensive photoshoots, models, or a content team.</p>
<h4>Our Solution</h4>
<p>We created a complete content strategy using AI-powered UGC:</p>
<ul>
<li>Professional product photography with AI models</li>
<li>Lifestyle content for Instagram & TikTok</li>
<li>Website design and e-commerce setup</li>
<li>Social media launch strategy</li>
</ul>
<h4>The Results</h4>
<p>Launched successfully with a professional brand presence, grew to 1K+ followers organically, and created a scalable content system for ongoing growth—all without traditional production costs.</p>
<a class="btn btn--glow" href="https://madebyamari.com/" target="_blank" rel="noopener noreferrer">Visit madebyamari.com →</a>
</div>
<div class="case-study__gallery">
<div class="gallery-item">
<img src="img_1383.png" alt="Amari jewelry product 1" />
</div>
<div class="gallery-item">
<img src="img_1385.jpg" alt="Amari jewelry product 2" />
</div>
<div class="gallery-item">
<img src="img_1405.jpg" alt="Amari jewelry lifestyle 1" />
</div>
<div class="gallery-item">
<img src="img_1409.jpg" alt="Amari jewelry lifestyle 2" />
</div>
<div class="gallery-item gallery-item--wide">
<video autoplay loop muted playsinline webkit-playsinline preload="metadata">
<source src="amari1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
</div>
</section>
<!-- RA AUTO EXPRESS CASE STUDY -->
<section id="ra-auto-case-study" style="margin-top:80px;">
<div class="section-head">
<h2>Website <span class="dim">Flip</span></h2>
<p>Complete redesign and performance optimization</p>
</div>
<div class="case-study">
<div class="case-study__header">
<div class="case-study__title">
<h3>RA Auto Express</h3>
<p class="subtitle">Auto Body Shop Website Redesign</p>
</div>
<div class="case-study__stats">
<div class="stat">
<div class="stat__number">50%+</div>
<div class="stat__label">Faster Load</div>
</div>
<div class="stat">
<div class="stat__number">25%</div>
<div class="stat__label">Less Code</div>
</div>
<div class="stat">
<div class="stat__number">90+</div>
<div class="stat__label">Lighthouse Score</div>
</div>
</div>
</div>
<div class="case-study__content">
<div class="case-study__text">
<h4>The Challenge</h4>
<p>RA Auto Express, a local Murfreesboro auto body shop, had a functional but outdated website with major performance issues, complex code, and poor mobile experience.</p>
<h4>Our Solution</h4>
<p>Complete rebuild focusing on speed and simplicity:</p>
<ul>
<li>Rebuilt with Next.js 14 & TypeScript</li>
<li>Removed heavy video hero (12MB+) for static gradient</li>
<li>Simplified from 8 to 5 clean components</li>
<li>Mobile-first responsive design</li>
<li>Conversion-focused with prominent CTAs</li>
<li>Performance optimization throughout</li>
</ul>
<h4>The Results</h4>
<p>Transformed a slow, complex site into a fast, professional website that loads in under 2 seconds, scores 90+ on Lighthouse, and provides an excellent mobile experience. Reduced codebase by 25% while improving functionality.</p>
<div style="display:flex;gap:12px;margin-top:24px;flex-wrap:wrap;">
<a class="btn btn--glow" href="https://ra-autoexpress.vercel.app/" target="_blank" rel="noopener noreferrer">
View New Site →
</a>
<a class="btn" href="https://raautoexpress-git-main-spinachfilms-projects.vercel.app/" target="_blank" rel="noopener noreferrer" style="background:rgba(255,255,255,.03);">
View Old Site
</a>
</div>
</div>
<div class="case-study__gallery">
<!-- Hero Before Screenshot -->
<div class="gallery-item gallery-item--wide">
<div style="padding:16px;background:rgba(255,255,255,.02);border-radius:12px;border:1px solid rgba(255,255,255,.05);">
<p style="margin:0 0 12px;font-size:13px;color:rgba(255,255,255,.4);text-align:center;text-transform:uppercase;letter-spacing:1px;">Before - Hero</p>
<img src="ra-auto-old.png" alt="RA Auto Express old website hero" style="width:100%;height:auto;border-radius:8px;border:1px solid rgba(255,255,255,.1);" />
<div style="margin-top:12px;display:flex;gap:12px;font-size:12px;color:rgba(255,255,255,.3);justify-content:center;flex-wrap:wrap;">
<span>⏱️ 3-4s load</span>
<span>📱 Poor mobile</span>
<span>📊 ~60 score</span>
</div>
</div>
</div>
<!-- Hero After Screenshot -->
<div class="gallery-item gallery-item--wide">
<div style="padding:16px;background:rgba(90,167,255,.05);border-radius:12px;border:1px solid rgba(90,167,255,.15);">
<p style="margin:0 0 12px;font-size:13px;color:rgba(90,167,255,.8);text-align:center;text-transform:uppercase;letter-spacing:1px;">After - Hero</p>
<img src="ra-auto-new.png" alt="RA Auto Express new website hero" style="width:100%;height:auto;border-radius:8px;border:1px solid rgba(90,167,255,.2);" />
<div style="margin-top:12px;display:flex;gap:12px;font-size:12px;color:rgba(90,167,255,.7);justify-content:center;flex-wrap:wrap;">
<span>⚡ <2s load</span>
<span>📱 Excellent mobile</span>
<span>🚀 90+ score</span>
</div>
</div>
</div>
<!-- Services Before -->
<div class="gallery-item gallery-item--wide">
<div style="padding:16px;background:rgba(255,255,255,.02);border-radius:12px;border:1px solid rgba(255,255,255,.05);">
<p style="margin:0 0 12px;font-size:13px;color:rgba(255,255,255,.4);text-align:center;text-transform:uppercase;letter-spacing:1px;">Before - Services</p>
<img src="ra-auto-services-old.png" alt="RA Auto Express old services section" style="width:100%;height:auto;border-radius:8px;border:1px solid rgba(255,255,255,.1);" />
<div style="margin-top:12px;display:flex;gap:12px;font-size:12px;color:rgba(255,255,255,.3);justify-content:center;flex-wrap:wrap;">
<span>🎯 2 services only</span>
<span>📸 Image-heavy</span>
</div>
</div>
</div>
<!-- Services After -->
<div class="gallery-item gallery-item--wide">
<div style="padding:16px;background:rgba(90,167,255,.05);border-radius:12px;border:1px solid rgba(90,167,255,.15);">
<p style="margin:0 0 12px;font-size:13px;color:rgba(90,167,255,.8);text-align:center;text-transform:uppercase;letter-spacing:1px;">After - Services</p>
<img src="ra-auto-services-new.png" alt="RA Auto Express new services section" style="width:100%;height:auto;border-radius:8px;border:1px solid rgba(90,167,255,.2);" />
<div style="margin-top:12px;display:flex;gap:12px;font-size:12px;color:rgba(90,167,255,.7);justify-content:center;flex-wrap:wrap;">
<span>✨ 6 clear cards</span>
<span>💰 Pricing shown</span>
</div>
</div>
</div>
</div>
</div>
<!-- Tech Stack -->
<div style="margin-top:32px;padding-top:32px;border-top:1px solid rgba(255,255,255,.08);">
<h4 style="margin:0 0 16px;font-size:13px;font-weight:800;color:rgba(255,255,255,.4);text-transform:uppercase;letter-spacing:.8px;">Technologies Used</h4>
<div style="display:flex;flex-wrap:wrap;gap:8px;">
<span style="padding:8px 14px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:8px;font-size:13px;color:rgba(255,255,255,.6);">Next.js 14</span>
<span style="padding:8px 14px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:8px;font-size:13px;color:rgba(255,255,255,.6);">TypeScript</span>
<span style="padding:8px 14px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:8px;font-size:13px;color:rgba(255,255,255,.6);">Tailwind CSS</span>
<span style="padding:8px 14px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:8px;font-size:13px;color:rgba(255,255,255,.6);">React Hooks</span>
<span style="padding:8px 14px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:8px;font-size:13px;color:rgba(255,255,255,.6);">Vercel</span>
</div>
</div>
</div>
</section>
<!-- Services -->
<section id="services" style="margin-top:120px;">
<div class="section-head">
<h2>What We <span class="dim">Do Best</span></h2>
<p>Practical AI solutions that help small businesses compete and grow</p>
</div>
</section>
<!-- UGC -->
<section id="ugc">
<div class="service">
<div class="service__left">
<h2>UGC Content with AI</h2>
<p>Professional content without the production headaches. We use AI and creative direction to produce high-quality, authentic, scroll-stopping content designed to promote and sell your products.</p>
<p>No expensive models, studios, or full filming crews. From scripts to editing, we combine modern AI tools with real creative expertise to deliver content that looks natural, performs better, and scales faster across all social platforms.</p>
<a class="btn btn--glow" href="#contact">Get Your Content Strategy</a>
</div>
<div class="service__right">
<div style="padding:22px;">
<div class="case-study__gallery">
<div class="gallery-item">
<img alt="UGC AI example 1" src="img_1488.jpg">
</div>
<div class="gallery-item">
<video autoplay loop muted playsinline webkit-playsinline preload="metadata">
<source src="amari2.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Website Flip -->
<section id="website-flip">
<div class="service">
<div class="service__right">
<div class="lottie-card">
<dotlottie-wc
src="https://lottie.host/8f59b9d2-46d3-4689-abbf-7eab65d92ab3/ajGWNOotqG.lottie"
autoplay
loop
></dotlottie-wc>
</div>
</div>
<div class="service__left">
<h2>Website Optimization</h2>
<p>Your website should convert visitors into customers. We redesign and optimize existing websites to improve speed, user experience, and conversion rates.</p>
<p>Whether you need a complete redesign or just strategic improvements, we'll make your site work harder for your business. Better design, faster loading, clearer calls-to-action.</p>
<a class="btn btn--glow" href="#contact">Upgrade My Website</a>
</div>
</div>
</section>
<!-- Voice AI -->
<section id="voice-ai">
<div class="service">
<div class="service__left">
<h2>Voice AI Agents</h2>
<p>Your business, available 24/7. We design intelligent voice agents that answer calls, respond to questions, qualify leads, and book appointments automatically—even while you sleep.</p>
<p>Want to see it in action? <strong>Look for our AI assistant in the bottom right corner!</strong> Click the floating widget to talk with our voice agent. This is the same technology we build for our clients..</p>
<a class="btn btn--glow" href="#contact">Build Your Voice AI</a>
</div>
<div class="service__right">
<div class="voice-demo-card" style="border-radius:18px;overflow:hidden;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.11);box-shadow:0 18px 55px rgba(0,0,0,.50);padding:32px;">
<div style="text-align:center;margin-bottom:28px;">
<h3 style="margin:0 0 8px;font-size:28px;font-weight:800;color:var(--text);">🎙️ Live Voice AI Demo</h3>
<p style="margin:0;color:var(--muted);font-size:15px;">See the widget in the bottom right corner?</p>
</div>
<div style="display:flex;flex-direction:column;gap:20px;">
<div style="display:flex;gap:16px;align-items:flex-start;padding:16px;background:rgba(0,0,0,.15);border-radius:12px;border:1px solid rgba(255,255,255,.06);">
<div style="flex-shrink:0;width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg, rgba(90,167,255,.2), rgba(90,167,255,.05));border:2px solid rgba(90,167,255,.3);display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:900;color:var(--link);">1</div>
<div style="flex:1;">
<h4 style="margin:0 0 6px;font-size:16px;font-weight:800;color:var(--text);">Find the floating widget</h4>
<p style="margin:0;color:var(--muted);font-size:14px;line-height:1.5;">Look in the bottom right corner of your screen for the purple voice icon</p>
</div>
</div>
<div style="display:flex;gap:16px;align-items:flex-start;padding:16px;background:rgba(0,0,0,.15);border-radius:12px;border:1px solid rgba(255,255,255,.06);">
<div style="flex-shrink:0;width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg, rgba(90,167,255,.2), rgba(90,167,255,.05));border:2px solid rgba(90,167,255,.3);display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:900;color:var(--link);">2</div>
<div style="flex:1;">
<h4 style="margin:0 0 6px;font-size:16px;font-weight:800;color:var(--text);">Click to open</h4>
<p style="margin:0;color:var(--muted);font-size:14px;line-height:1.5;">Click the widget and allow microphone access when prompted</p>
</div>
</div>
<div style="display:flex;gap:16px;align-items:flex-start;padding:16px;background:rgba(0,0,0,.15);border-radius:12px;border:1px solid rgba(255,255,255,.06);">
<div style="flex-shrink:0;width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg, rgba(90,167,255,.2), rgba(90,167,255,.05));border:2px solid rgba(90,167,255,.3);display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:900;color:var(--link);">3</div>
<div style="flex:1;">
<h4 style="margin:0 0 6px;font-size:16px;font-weight:800;color:var(--text);">Start talking!</h4>
<p style="margin:0;color:var(--muted);font-size:14px;line-height:1.5;">Ask about our services, pricing, or anything else. Available 24/7!</p>
</div>
</div>
<div style="margin-top:8px;padding:16px;background:rgba(90,167,255,.08);border-radius:12px;border:1px solid rgba(90,167,255,.15);color:var(--muted);font-size:14px;line-height:1.6;">
💡 <strong style="color:var(--text);">Pro Tip:</strong> This AI agent answers questions, qualifies leads, and books appointments automatically. We can build one for your business too!
</div>
</div>
</div>
</div>
</div>
</section>
<!-- AI Automation -->
<section id="automation">
<div class="service">
<div class="service__right">
<div class="lottie-card">
<dotlottie-wc
src="https://lottie.host/8f59b9d2-46d3-4689-abbf-7eab65d92ab3/ajGWNOotqG.lottie"
autoplay
loop
></dotlottie-wc>
</div>
</div>
<div class="service__left">
<h2>AI Automation with n8n</h2>
<p>Stop wasting time on repetitive tasks. We build custom automation workflows that connect your tools, process data, and handle routine work automatically.</p>
<p>From social media scheduling to customer follow-ups to data processing, we'll create systems that save you hours every week. Work smarter, not harder.</p>
<a class="btn btn--glow" href="#contact">Automate My Workflow</a>
</div>
</div>
</section>
<!-- FAQ -->
<section id="faq" style="margin-top:120px;">
<div class="section-head">
<h2>Frequently Asked <span class="dim">Questions</span></h2>
<p>Everything you need to know about working with us</p>
</div>
<div class="faq">
<div class="accordion">
<details>
<summary>Who is this for? <span class="chev">▾</span></summary>
<div class="answer">
Small businesses, e-commerce brands, local shops, and entrepreneurs who want professional content, a better website, and smarter workflows without hiring a full team or breaking the bank.
</div>
</details>
<details>
<summary>How is AI content different from stock photos? <span class="chev">▾</span></summary>
<div class="answer">
AI content is custom-created specifically for your brand and products. Unlike stock photos that thousands of others use, your content is unique, on-brand, and designed to showcase YOUR products authentically.
</div>
</details>
<details>
<summary>Do I need technical knowledge? <span class="chev">▾</span></summary>
<div class="answer">
No. We handle all the technical work, explain everything clearly, and deliver systems that are easy to use day-to-day. If you can use Instagram or send an email, you can use what we build.
</div>
</details>
<details>
<summary>How long does a project take? <span class="chev">▾</span></summary>
<div class="answer">
Most projects take 1-3 weeks. Website optimizations typically take 1-2 weeks, UGC content packages can be delivered within days to weeks depending on volume, and voice AI systems take 2-3 weeks depending on complexity.
</div>
</details>
<details>
<summary>What if I'm not sure which service I need? <span class="chev">▾</span></summary>
<div class="answer">
No problem! Send us a message describing your biggest challenge or goal. We'll have a conversation about your business and recommend the best starting point based on what will have the biggest impact for you.
</div>
</details>
<details>
<summary>Do you offer ongoing support? <span class="chev">▾</span></summary>
<div class="answer">
Yes. After your project launches, we offer support packages for updates, content creation, and system maintenance. We're here to help your business grow long-term.
</div>
</details>
</div>
<div style="text-align:center;margin-top:30px;">
<a class="btn btn--glow" href="#contact">Still Have Questions? Let's Talk</a>