-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1410 lines (1304 loc) · 89.3 KB
/
Copy pathindex.html
File metadata and controls
1410 lines (1304 loc) · 89.3 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.0">
<title>Maica - Maintenance Call | AI Voice Agent for HOA Management</title>
<meta name="description" content="Transform your HOA management with Maica - the AI voice agent that handles resident inquiries, automates maintenance requests, and eliminates board member burnout 24/7.">
<!-- Accessibility enhancements -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#0066FF">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.4.0/css/all.min.css">
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css">
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
'helvetica': ['Helvetica', 'Arial', '-apple-system', 'BlinkMacSystemFont', 'sans-serif'],
},
colors: {
// AI Design System Colors
'electric-blue': '#0066FF',
'vivid-green': '#00FF88',
'pure-white': '#FFFFFF',
'deep-charcoal': '#1A1A1A',
'medium-gray': '#2A2A2A',
'light-gray': '#404040',
'warning-orange': '#FF6B35',
'muted-blue': '#4A90E2',
'soft-gray': '#888888',
// Legacy support
'primary': {
50: '#f0f9ff',
500: '#0066FF',
600: '#0052CC',
700: '#003D99'
},
'accent': {
500: '#00FF88',
600: '#00CC6A'
}
},
spacing: {
'18': '4.5rem', // 72px
'30': '7.5rem', // 120px
'15': '3.75rem', // 60px for mobile
},
maxWidth: {
'ai': '1200px', // AI Design System container width
},
fontSize: {
'hero': ['72px', { lineHeight: '1.1', letterSpacing: '-0.02em' }],
'section': ['48px', { lineHeight: '1.2', letterSpacing: '-0.02em' }],
'subsection': ['32px', { lineHeight: '1.3', letterSpacing: '-0.02em' }],
'body-large': ['20px', { lineHeight: '1.6' }],
'caption': ['12px', { lineHeight: '1.4' }],
}
}
}
}
</script>
</head>
<body class="font-helvetica bg-deep-charcoal text-pure-white">
<!-- Navigation -->
<nav class="fixed w-full bg-deep-charcoal/95 backdrop-blur-sm border-b border-light-gray z-40 transition-all duration-200" id="navbar">
<div class="max-w-ai mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16">
<div class="flex items-center space-x-3">
<div class="w-8 h-8 bg-electric-blue rounded-lg flex items-center justify-center">
<i class="fas fa-robot text-pure-white text-sm"></i>
</div>
<span class="text-lg sm:text-xl font-bold text-pure-white">Maica</span>
</div>
<div class="hidden lg:flex items-center space-x-6 xl:space-x-8">
<a href="#features" class="text-pure-white hover:text-electric-blue transition-all duration-200 text-sm xl:text-base">Features</a>
<a href="#benefits" class="text-pure-white hover:text-electric-blue transition-all duration-200 text-sm xl:text-base">Benefits</a>
<a href="#pricing" class="text-pure-white hover:text-electric-blue transition-all duration-200 text-sm xl:text-base">Pricing</a>
<a href="#faq" class="text-pure-white hover:text-electric-blue transition-all duration-200 text-sm xl:text-base">FAQ</a>
<a href="#demo" class="text-pure-white hover:text-electric-blue transition-all duration-200 text-sm xl:text-base">Demo</a>
</div>
<!-- Mobile menu button -->
<div class="lg:hidden">
<button id="mobile-menu-button" class="text-pure-white hover:text-electric-blue transition-colors duration-200 p-2 min-h-[44px] min-w-[44px] flex items-center justify-center">
<i class="fas fa-bars text-lg"></i>
</button>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden lg:hidden pb-6 border-t border-light-gray mt-4 pt-6">
<div class="flex flex-col space-y-4">
<a href="#features" class="text-pure-white hover:text-electric-blue transition-colors duration-200 py-3 px-2 text-lg">Features</a>
<a href="#benefits" class="text-pure-white hover:text-electric-blue transition-colors duration-200 py-3 px-2 text-lg">Benefits</a>
<a href="#pricing" class="text-pure-white hover:text-electric-blue transition-colors duration-200 py-3 px-2 text-lg">Pricing</a>
<a href="#faq" class="text-pure-white hover:text-electric-blue transition-colors duration-200 py-3 px-2 text-lg">FAQ</a>
<a href="#demo" class="text-pure-white hover:text-electric-blue transition-colors duration-200 py-3 px-2 text-lg">Demo</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<main id="main-content">
<section class="pt-40 pb-24 bg-deep-charcoal relative overflow-hidden" role="banner" aria-label="Maica AI Voice Agent Introduction">
<!-- Abstract AI Animation Background -->
<div class="absolute inset-0 overflow-hidden">
<!-- Animated Grid Pattern -->
<div class="absolute inset-0 grid-pattern opacity-5"></div>
<!-- Floating AI Nodes -->
<div class="ai-node ai-node-1"></div>
<div class="ai-node ai-node-2"></div>
<div class="ai-node ai-node-3"></div>
<div class="ai-node ai-node-4"></div>
<div class="ai-node ai-node-5"></div>
<!-- Neural Network Lines -->
<svg class="absolute inset-0 w-full h-full opacity-20" viewBox="0 0 1200 800" preserveAspectRatio="xMidYMid slice">
<defs>
<linearGradient id="networkGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#0066FF;stop-opacity:0.8" />
<stop offset="50%" style="stop-color:#00FF88;stop-opacity:0.4" />
<stop offset="100%" style="stop-color:#0066FF;stop-opacity:0.8" />
</linearGradient>
</defs>
<!-- Animated Network Lines -->
<path class="neural-path neural-path-1" d="M0,100 Q300,200 600,150 T1200,100" stroke="url(#networkGradient)" stroke-width="2" fill="none" />
<path class="neural-path neural-path-2" d="M0,300 Q400,100 800,250 T1200,200" stroke="url(#networkGradient)" stroke-width="1.5" fill="none" />
<path class="neural-path neural-path-3" d="M0,500 Q200,300 500,400 T1200,350" stroke="url(#networkGradient)" stroke-width="1" fill="none" />
<path class="neural-path neural-path-4" d="M0,700 Q350,500 700,600 T1200,550" stroke="url(#networkGradient)" stroke-width="1.5" fill="none" />
<!-- Pulse Circles -->
<circle class="pulse-circle pulse-1" cx="150" cy="150" r="4" fill="#0066FF" />
<circle class="pulse-circle pulse-2" cx="450" cy="280" r="3" fill="#00FF88" />
<circle class="pulse-circle pulse-3" cx="750" cy="180" r="4" fill="#0066FF" />
<circle class="pulse-circle pulse-4" cx="950" cy="320" r="3" fill="#00FF88" />
<circle class="pulse-circle pulse-5" cx="650" cy="450" r="4" fill="#0066FF" />
</svg>
<!-- Geometric Shapes -->
<div class="geometric-shape shape-1"></div>
<div class="geometric-shape shape-2"></div>
<div class="geometric-shape shape-3"></div>
<!-- Particle System -->
<div class="particle-container">
<div class="particle particle-1"></div>
<div class="particle particle-2"></div>
<div class="particle particle-3"></div>
<div class="particle particle-4"></div>
<div class="particle particle-5"></div>
<div class="particle particle-6"></div>
<div class="particle particle-7"></div>
<div class="particle particle-8"></div>
</div>
</div>
<div class="max-w-ai mx-auto px-6 lg:px-8 relative">
<div class="max-w-4xl mx-auto text-center">
<div>
<div class="inline-flex items-center space-x-2 bg-vivid-green/10 text-vivid-green px-4 py-2 rounded-full text-sm font-medium mb-8 border border-vivid-green/20">
<i class="fas fa-robot"></i>
<span>AI-Powered HOA Management</span>
</div>
<h1 class="text-4xl sm:text-5xl md:text-6xl lg:text-hero font-bold text-pure-white leading-tight mb-6">
From <span style="color: #FFB6C1;">requests</span> to <span class="text-vivid-green">resolution</span>
</h1>
<p class="text-lg sm:text-xl text-soft-gray mb-8 leading-relaxed max-w-2xl mx-auto">
AI agent handles 96% of resident calls 24/7. Starting at $29/month per unit.
</p>
<!-- Cost Examples -->
<div class="grid grid-cols-1 sm:grid-cols-3 gap-4 max-w-3xl mx-auto mb-8">
<div class="bg-deep-charcoal/50 p-4 rounded-lg border border-vivid-green/20">
<div class="text-vivid-green font-bold">50 units</div>
<div class="text-pure-white text-sm">$121/month total</div>
</div>
<div class="bg-deep-charcoal/50 p-4 rounded-lg border border-electric-blue/20">
<div class="text-electric-blue font-bold">150 units</div>
<div class="text-pure-white text-sm">$363/month total</div>
</div>
<div class="bg-deep-charcoal/50 p-4 rounded-lg border border-warning-orange/20">
<div class="text-warning-orange font-bold">300 units</div>
<div class="text-pure-white text-sm">$725/month total</div>
</div>
</div>
<!-- FAQ Preview -->
<div class="bg-gradient-to-r from-vivid-green/10 to-electric-blue/10 p-6 rounded-lg max-w-3xl mx-auto mb-8 border border-vivid-green/30">
<div class="flex items-start space-x-4">
<div class="w-8 h-8 bg-vivid-green/20 rounded-full flex items-center justify-center mt-1 border border-vivid-green/50">
<i class="fas fa-question text-vivid-green text-sm"></i>
</div>
<div class="flex-1">
<div class="text-pure-white font-semibold mb-3 text-lg">Will this actually work for our community?</div>
<div class="grid sm:grid-cols-3 gap-4 text-sm">
<div class="flex items-center space-x-2">
<i class="fas fa-check text-vivid-green"></i>
<span class="text-soft-gray">96% call reduction</span>
</div>
<div class="flex items-center space-x-2">
<i class="fas fa-check text-vivid-green"></i>
<span class="text-soft-gray">150+ communities</span>
</div>
<div class="flex items-center space-x-2">
<i class="fas fa-check text-vivid-green"></i>
<span class="text-soft-gray">Works all property types</span>
</div>
</div>
</div>
</div>
</div>
<div class="flex flex-col sm:flex-row gap-4 sm:gap-6 mb-12 justify-center">
<button onclick="accessDemo()" class="bg-electric-blue text-pure-white px-6 sm:px-8 py-4 rounded-lg hover:brightness-110 hover:scale-102 transition-all duration-200 font-semibold text-base sm:text-lg flex flex-col items-center justify-center space-y-1 group min-h-[44px] w-full sm:w-auto">
<div class="flex items-center space-x-3">
<i class="fas fa-play"></i>
<span>Try Demo Agent</span>
<i class="fas fa-arrow-right group-hover:translate-x-1 transition-transform duration-200"></i>
</div>
<span class="text-xs bg-vivid-green text-deep-charcoal font-bold px-2 py-0.5 rounded-full">Free setup • 7 communities joined this week</span>
</button>
</div>
<div class="flex flex-col sm:flex-row items-center justify-center space-y-2 sm:space-y-0 sm:space-x-3 text-soft-gray text-center">
<div class="flex items-center space-x-2">
<i class="fas fa-phone text-vivid-green"></i>
<span>Or call directly:</span>
</div>
<a href="tel:747-898-0112" class="text-electric-blue hover:text-vivid-green transition-colors duration-200 font-semibold text-lg">747-898-0112</a>
</div>
</div>
</div>
</div>
</section>
<!-- HOA Problems Section -->
<section class="py-16 sm:py-20 lg:py-24 bg-gradient-to-b from-deep-charcoal to-medium-gray">
<div class="max-w-ai mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-2xl sm:text-3xl lg:text-section font-bold text-pure-white mb-6">
The Hidden Crisis in HOA Management
</h2>
<p class="text-lg sm:text-xl lg:text-body-large text-soft-gray max-w-3xl mx-auto">
These widespread challenges are destroying property values and community satisfaction across America
</p>
</div>
<div class="grid md:grid-cols-2 gap-8 lg:gap-12 mb-16">
<!-- Communication Crisis -->
<div class="bg-deep-charcoal/80 p-8 rounded-xl border border-warning-orange/30 hover:border-warning-orange/50 transition-all duration-300">
<div class="flex items-start space-x-4 mb-6">
<div class="w-16 h-16 bg-warning-orange/20 rounded-xl flex items-center justify-center border border-warning-orange/30 flex-shrink-0">
<i class="fas fa-exclamation-triangle text-warning-orange text-2xl"></i>
</div>
<div>
<h3 class="text-xl font-bold text-pure-white mb-2">Communication Breakdown</h3>
<p class="text-warning-orange font-semibold">The #1 complaint nationwide</p>
</div>
</div>
<div class="space-y-4">
<div class="flex items-start space-x-3">
<i class="fas fa-times text-warning-orange mt-1 flex-shrink-0"></i>
<div>
<div class="font-semibold text-pure-white">Slow or Unclear Responses</div>
<div class="text-soft-gray text-sm">Homeowners wait days or weeks for answers to simple questions</div>
</div>
</div>
<div class="flex items-start space-x-3">
<i class="fas fa-times text-warning-orange mt-1 flex-shrink-0"></i>
<div>
<div class="font-semibold text-pure-white">No Project Updates</div>
<div class="text-soft-gray text-sm">Board decisions happen in darkness, residents feel excluded</div>
</div>
</div>
<div class="flex items-start space-x-3">
<i class="fas fa-times text-warning-orange mt-1 flex-shrink-0"></i>
<div>
<div class="font-semibold text-pure-white">Insufficient Feedback Channels</div>
<div class="text-soft-gray text-sm">Leads to disengagement, frustration, and community division</div>
</div>
</div>
</div>
<div class="mt-6 p-4 bg-warning-orange/10 rounded-lg border border-warning-orange/20">
<div class="text-warning-orange font-semibold text-sm">Impact:</div>
<div class="text-soft-gray text-sm">Destroys trust, increases disputes, undermines community standards</div>
</div>
</div>
<!-- Maintenance Crisis -->
<div class="bg-deep-charcoal/80 p-8 rounded-xl border border-warning-orange/30 hover:border-warning-orange/50 transition-all duration-300">
<div class="flex items-start space-x-4 mb-6">
<div class="w-16 h-16 bg-warning-orange/20 rounded-xl flex items-center justify-center border border-warning-orange/30 flex-shrink-0">
<i class="fas fa-tools text-warning-orange text-2xl"></i>
</div>
<div>
<h3 class="text-xl font-bold text-pure-white mb-2">Maintenance Disasters</h3>
<p class="text-warning-orange font-semibold">Delays & vendor failures</p>
</div>
</div>
<div class="space-y-4">
<div class="flex items-start space-x-3">
<i class="fas fa-times text-warning-orange mt-1 flex-shrink-0"></i>
<div>
<div class="font-semibold text-pure-white">Chronic Delays & Neglect</div>
<div class="text-soft-gray text-sm">Common areas, landscaping, amenities deteriorate for months</div>
</div>
</div>
<div class="flex items-start space-x-3">
<i class="fas fa-times text-warning-orange mt-1 flex-shrink-0"></i>
<div>
<div class="font-semibold text-pure-white">Poor Vendor Selection</div>
<div class="text-soft-gray text-sm">Choosing cheapest over quality creates repeated problems</div>
</div>
</div>
<div class="flex items-start space-x-3">
<i class="fas fa-times text-warning-orange mt-1 flex-shrink-0"></i>
<div>
<div class="font-semibold text-pure-white">Unfinished Projects</div>
<div class="text-soft-gray text-sm">Work drags on indefinitely, creating eyesores and liability</div>
</div>
</div>
</div>
<div class="mt-6 p-4 bg-warning-orange/10 rounded-lg border border-warning-orange/20">
<div class="text-warning-orange font-semibold text-sm">Impact:</div>
<div class="text-soft-gray text-sm">Property values decline, resident satisfaction plummets</div>
</div>
</div>
</div>
<!-- Additional Problems Row -->
<div class="grid sm:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="bg-deep-charcoal/60 p-6 rounded-xl border border-light-gray">
<div class="w-12 h-12 bg-warning-orange/20 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-gavel text-warning-orange"></i>
</div>
<h4 class="font-bold text-pure-white mb-2">Inconsistent Rule Enforcement</h4>
<p class="text-soft-gray text-sm">Creates perceived favoritism and legal liability</p>
</div>
<div class="bg-deep-charcoal/60 p-6 rounded-xl border border-light-gray">
<div class="w-12 h-12 bg-warning-orange/20 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-chart-line text-warning-orange"></i>
</div>
<h4 class="font-bold text-pure-white mb-2">Poor Financial Oversight</h4>
<p class="text-soft-gray text-sm">Lack of transparency breeds distrust and suspicion</p>
</div>
<div class="bg-deep-charcoal/60 p-6 rounded-xl border border-light-gray">
<div class="w-12 h-12 bg-warning-orange/20 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-users-slash text-warning-orange"></i>
</div>
<h4 class="font-bold text-pure-white mb-2">Board Governance Issues</h4>
<p class="text-soft-gray text-sm">Burnout leads to poor decisions and high turnover</p>
</div>
<div class="bg-deep-charcoal/60 p-6 rounded-xl border border-light-gray">
<div class="w-12 h-12 bg-warning-orange/20 rounded-lg flex items-center justify-center mb-4">
<i class="fas fa-handshake-slash text-warning-orange"></i>
</div>
<h4 class="font-bold text-pure-white mb-2">Vendor Reliability</h4>
<p class="text-soft-gray text-sm">Unreliable contractors damage community trust</p>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-16 sm:py-20 lg:py-24 bg-medium-gray">
<div class="max-w-ai mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6 md:gap-8 text-center">
<div class="bg-deep-charcoal border border-light-gray hover:-translate-y-1 transition-all duration-300" style="padding: 32px; border-radius: 12px;">
<div class="text-5xl font-bold text-vivid-green mb-4 stat-number">96%</div>
<div class="text-pure-white font-semibold text-lg mb-2">Call Volume Reduction</div>
<div class="text-soft-gray">AI handles inquiries with instant SMS & email confirmations to residents</div>
</div>
<div class="bg-deep-charcoal border border-light-gray hover:-translate-y-1 transition-all duration-300" style="padding: 32px; border-radius: 12px;">
<div class="text-5xl font-bold text-electric-blue mb-4 stat-number">100%</div>
<div class="text-pure-white font-semibold text-lg mb-2">Maintenance Visibility</div>
<div class="text-soft-gray">Full Kanban board tracking for all ongoing maintenance work</div>
</div>
<div class="bg-deep-charcoal border border-light-gray hover:-translate-y-1 transition-all duration-300" style="padding: 32px; border-radius: 12px;">
<div class="text-5xl font-bold text-vivid-green mb-4 stat-number">24/7</div>
<div class="text-pure-white font-semibold text-lg mb-2">Property-Specific Answers</div>
<div class="text-soft-gray">AI knows your CC&Rs, bylaws, and property rules for accurate responses</div>
</div>
</div>
</div>
</section>
<!-- ROI Calculator Section -->
<section class="py-16 sm:py-20 lg:py-24 bg-gradient-to-b from-medium-gray to-deep-charcoal">
<div class="max-w-ai mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-2xl sm:text-3xl lg:text-section font-bold text-pure-white mb-6">
Calculate Your ROI in 30 Seconds
</h2>
<p class="text-lg text-soft-gray max-w-2xl mx-auto">
See exactly how much time and money Maica will save your HOA
</p>
</div>
<div class="max-w-4xl mx-auto bg-deep-charcoal/80 p-8 rounded-2xl border border-electric-blue/30">
<div class="grid md:grid-cols-2 gap-8">
<!-- Calculator Inputs -->
<div>
<h3 class="text-xl font-bold text-pure-white mb-6">Your Current Situation</h3>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium text-pure-white mb-2">Number of Units</label>
<input type="number" id="units" placeholder="150" min="100" max="2000"
class="w-full bg-medium-gray border border-light-gray rounded-lg px-4 py-3 text-pure-white placeholder-soft-gray focus:border-electric-blue focus:outline-none"
oninput="calculateROI()">
</div>
<div>
<label class="block text-sm font-medium text-pure-white mb-2">Board Member Hours/Week (Currently)</label>
<input type="number" id="hours" placeholder="15" min="5" max="40"
class="w-full bg-medium-gray border border-light-gray rounded-lg px-4 py-3 text-pure-white placeholder-soft-gray focus:border-electric-blue focus:outline-none"
oninput="calculateROI()">
</div>
<div>
<label class="block text-sm font-medium text-pure-white mb-2">Average Board Member Hourly Value</label>
<select id="hourlyRate" class="w-full bg-medium-gray border border-light-gray rounded-lg px-4 py-3 text-pure-white focus:border-electric-blue focus:outline-none" onchange="calculateROI()">
<option value="50">$50/hr (Conservative)</option>
<option value="75" selected>$75/hr (Professional)</option>
<option value="100">$100/hr (Executive)</option>
<option value="150">$150/hr (Senior Executive)</option>
</select>
</div>
</div>
</div>
<!-- Results -->
<div class="bg-gradient-to-br from-electric-blue/20 to-vivid-green/20 p-6 rounded-xl border border-electric-blue/30">
<h3 class="text-xl font-bold text-pure-white mb-6">Your Annual Savings</h3>
<div class="space-y-4">
<div class="flex justify-between items-center py-3 border-b border-light-gray/30">
<span class="text-pure-white">Time Saved Weekly:</span>
<span class="text-vivid-green font-bold text-lg" id="timeSaved">14.4 hours</span>
</div>
<div class="flex justify-between items-center py-3 border-b border-light-gray/30">
<span class="text-pure-white">Annual Time Value:</span>
<span class="text-vivid-green font-bold text-lg" id="timeValue">$56,160</span>
</div>
<div class="flex justify-between items-center py-3 border-b border-light-gray/30">
<span class="text-pure-white">Maica Annual Cost:</span>
<span class="text-pure-white font-bold text-lg" id="maicaCost">$43,800</span>
</div>
<div class="flex justify-between items-center py-4 bg-vivid-green/20 rounded-lg px-4 border border-vivid-green/30">
<span class="text-pure-white font-bold text-lg">Net Annual Savings:</span>
<span class="text-vivid-green font-bold text-2xl" id="netSavings">$12,360</span>
</div>
<div class="text-center pt-4">
<div class="text-sm text-soft-gray mb-2">ROI Payback Period:</div>
<div class="text-electric-blue font-bold text-xl" id="payback">2.8 months</div>
</div>
</div>
<button onclick="accessDemo()" class="w-full mt-6 bg-electric-blue text-pure-white px-6 py-3 rounded-lg hover:brightness-110 hover:scale-102 transition-all duration-200 font-bold">
See These Savings in Action
</button>
</div>
</div>
<div class="mt-8 text-center">
<div class="inline-flex items-center space-x-2 bg-vivid-green/10 text-vivid-green px-4 py-2 rounded-full text-sm font-medium border border-vivid-green/20">
<i class="fas fa-users"></i>
<span>Join 150+ communities already saving with Maica</span>
</div>
</div>
</div>
<!-- Social Proof Banner -->
<div class="mt-16 text-center">
<div class="bg-gradient-to-r from-vivid-green/10 to-electric-blue/10 border border-vivid-green/30 rounded-xl p-6 max-w-4xl mx-auto">
<div class="flex flex-wrap items-center justify-center gap-6 text-sm">
<div class="flex items-center space-x-2 text-pure-white">
<i class="fas fa-star text-vivid-green"></i>
<span class="font-semibold">4.9/5 rating</span>
</div>
<div class="flex items-center space-x-2 text-pure-white">
<i class="fas fa-building text-electric-blue"></i>
<span class="font-semibold">150+ communities</span>
</div>
<div class="flex items-center space-x-2 text-pure-white">
<i class="fas fa-phone-slash text-vivid-green"></i>
<span class="font-semibold">50,000+ calls automated</span>
</div>
<div class="flex items-center space-x-2 text-pure-white">
<i class="fas fa-clock text-electric-blue"></i>
<span class="font-semibold">2-minute setup</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 sm:py-20 lg:py-30 bg-deep-charcoal">
<div class="max-w-ai mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 lg:mb-24">
<h2 class="text-2xl sm:text-3xl lg:text-section font-bold text-pure-white mb-4 lg:mb-6">
Why Maica Transforms HOA Management
</h2>
<p class="text-lg sm:text-xl lg:text-body-large text-soft-gray max-w-3xl mx-auto px-4">
Built specifically for HOAs, Maica addresses the root causes of board burnout and resident frustration
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 md:gap-8">
<!-- Feature 1 -->
<div class="bg-medium-gray p-8 rounded-xl border border-light-gray hover:-translate-y-1 hover:border-electric-blue/50 transition-all duration-300 feature-card">
<div class="w-16 h-16 bg-electric-blue/20 rounded-xl flex items-center justify-center mb-8 border border-electric-blue/30">
<i class="fas fa-clock text-electric-blue text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-pure-white mb-6">Slash Call Volume by 96%</h3>
<p class="text-soft-gray mb-8 leading-relaxed">
<strong>Stop board member burnout:</strong> Eliminate the endless cycle of repetitive calls and emails drowning your volunteers. AI handles routine inquiries instantly while keeping everyone informed.
</p>
<ul class="space-y-3">
<li class="flex items-center text-pure-white">
<i class="fas fa-check text-vivid-green mr-3"></i>
<strong>96% fewer calls</strong> to board members
</li>
<li class="flex items-center text-pure-white">
<i class="fas fa-check text-vivid-green mr-3"></i>
<strong>Instant SMS confirmations</strong> for all requests
</li>
<li class="flex items-center text-pure-white">
<i class="fas fa-check text-vivid-green mr-3"></i>
<strong>Detailed email updates</strong> with photos & status
</li>
<li class="flex items-center text-pure-white">
<i class="fas fa-check text-vivid-green mr-3"></i>
<strong>24/7 availability</strong> with zero downtime
</li>
</ul>
</div>
<!-- Feature 2 -->
<div class="bg-medium-gray p-8 rounded-xl border border-light-gray hover:-translate-y-1 hover:border-electric-blue/50 transition-all duration-300 feature-card">
<div class="w-16 h-16 bg-electric-blue/20 rounded-xl flex items-center justify-center mb-8 border border-electric-blue/30">
<i class="fas fa-tasks text-electric-blue text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-pure-white mb-6">100% Maintenance Visibility</h3>
<p class="text-soft-gray mb-8 leading-relaxed">
<strong>End maintenance disasters:</strong> No more chronic delays, unfinished projects, or poor vendor selection. Complete visibility prevents problems before they hurt property values.
</p>
<ul class="space-y-3">
<li class="flex items-center text-pure-white">
<i class="fas fa-check text-vivid-green mr-3"></i>
<strong>Visual Kanban board</strong> for all maintenance
</li>
<li class="flex items-center text-pure-white">
<i class="fas fa-check text-vivid-green mr-3"></i>
<strong>Drag-and-drop</strong> status management
</li>
<li class="flex items-center text-pure-white">
<i class="fas fa-check text-vivid-green mr-3"></i>
<strong>Automatic notifications</strong> on status changes
</li>
<li class="flex items-center text-pure-white">
<i class="fas fa-check text-vivid-green mr-3"></i>
<strong>Photo documentation</strong> & progress tracking
</li>
</ul>
</div>
<!-- Feature 3 -->
<div class="bg-medium-gray p-8 rounded-xl border border-light-gray hover:-translate-y-1 hover:border-vivid-green/50 transition-all duration-300 feature-card">
<div class="w-16 h-16 bg-vivid-green/20 rounded-xl flex items-center justify-center mb-8 border border-vivid-green/30">
<i class="fas fa-mobile-alt text-vivid-green text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-pure-white mb-6">Instant Resident Confirmations</h3>
<p class="text-soft-gray mb-8 leading-relaxed">
<strong>Solve the #1 HOA complaint:</strong> poor communication. End the frustrating cycle of slow responses, missing updates, and residents feeling unheard with instant, comprehensive confirmations.
</p>
<ul class="space-y-3">
<li class="flex items-center text-pure-white">
<i class="fas fa-check text-vivid-green mr-3"></i>
<strong>Instant SMS confirmations</strong> for all requests
</li>
<li class="flex items-center text-pure-white">
<i class="fas fa-check text-vivid-green mr-3"></i>
<strong>Detailed email receipts</strong> with request numbers
</li>
<li class="flex items-center text-pure-white">
<i class="fas fa-check text-vivid-green mr-3"></i>
<strong>Progress notifications</strong> at every step
</li>
<li class="flex items-center text-pure-white">
<i class="fas fa-check text-vivid-green mr-3"></i>
<strong>Completion confirmations</strong> with photos
</li>
<li class="flex items-center text-pure-white">
<i class="fas fa-check text-vivid-green mr-3"></i>
<strong>Property-specific answers</strong> from CC&Rs & bylaws
</li>
</ul>
</div>
<!-- Feature 4 - Maintenance Tracking -->
<div class="bg-medium-gray p-8 rounded-xl border border-light-gray hover:-translate-y-1 hover:border-vivid-green/50 transition-all duration-300 feature-card">
<div class="w-16 h-16 bg-vivid-green/20 rounded-xl flex items-center justify-center mb-8 border border-vivid-green/30">
<i class="fas fa-clipboard-list text-vivid-green text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-pure-white mb-6">Complete Maintenance Oversight</h3>
<p class="text-soft-gray mb-8 leading-relaxed">
Full transparency and accountability for all maintenance requests. Residents stay informed while boards maintain complete oversight for reviews and approvals.
</p>
<div class="space-y-4">
<div class="bg-deep-charcoal/50 p-4 rounded-lg border border-vivid-green/20">
<div class="font-semibold text-vivid-green mb-2">For Homeowners & Tenants:</div>
<ul class="space-y-2 text-sm text-pure-white">
<li class="flex items-start">
<i class="fas fa-mobile-alt text-vivid-green mr-2 mt-0.5"></i>
Real-time SMS updates on request status
</li>
<li class="flex items-start">
<i class="fas fa-envelope text-vivid-green mr-2 mt-0.5"></i>
Detailed email notifications with photos
</li>
<li class="flex items-start">
<i class="fas fa-history text-vivid-green mr-2 mt-0.5"></i>
Complete request history tracking
</li>
</ul>
</div>
<div class="bg-deep-charcoal/50 p-4 rounded-lg border border-electric-blue/20">
<div class="font-semibold text-electric-blue mb-2">For HOA Boards:</div>
<ul class="space-y-2 text-sm text-pure-white">
<li class="flex items-start">
<i class="fas fa-tasks text-electric-blue mr-2 mt-0.5"></i>
Full Kanban board with drag-and-drop management
</li>
<li class="flex items-start">
<i class="fas fa-gavel text-electric-blue mr-2 mt-0.5"></i>
Approval workflows and accountability trails
</li>
<li class="flex items-start">
<i class="fas fa-chart-line text-electric-blue mr-2 mt-0.5"></i>
Performance metrics and reporting
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Benefits Section -->
<section id="benefits" class="py-16 sm:py-20 lg:py-30 bg-medium-gray">
<div class="max-w-ai mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 lg:mb-24">
<h2 class="text-2xl sm:text-3xl lg:text-section font-bold text-pure-white mb-4 lg:mb-6">
The Maica Advantage
</h2>
<p class="text-lg sm:text-xl lg:text-body-large text-soft-gray max-w-3xl mx-auto px-4">
See how Maica breaks the cycle of burnout and creates thriving HOA communities
</p>
</div>
<div class="grid lg:grid-cols-2 gap-8 lg:gap-16 items-center mb-16 lg:mb-24">
<div>
<h3 class="text-xl sm:text-2xl lg:text-subsection font-bold text-pure-white mb-6 lg:mb-8">Before Maica: The Crisis Reality</h3>
<div class="space-y-6">
<div class="flex items-start space-x-4">
<div class="w-8 h-8 bg-warning-orange/20 rounded-full flex items-center justify-center mt-1 border border-warning-orange/30">
<i class="fas fa-times text-warning-orange text-sm"></i>
</div>
<div>
<div class="font-bold text-pure-white text-lg">Slow Communication</div>
<div class="text-soft-gray">Days/weeks for responses, residents feel unheard and excluded</div>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="w-8 h-8 bg-warning-orange/20 rounded-full flex items-center justify-center mt-1 border border-warning-orange/30">
<i class="fas fa-times text-warning-orange text-sm"></i>
</div>
<div>
<div class="font-bold text-pure-white text-lg">Maintenance Disasters</div>
<div class="text-soft-gray">Chronic delays, poor vendor selection, unfinished projects</div>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="w-8 h-8 bg-warning-orange/20 rounded-full flex items-center justify-center mt-1 border border-warning-orange/30">
<i class="fas fa-times text-warning-orange text-sm"></i>
</div>
<div>
<div class="font-bold text-pure-white text-lg">Inconsistent Enforcement</div>
<div class="text-soft-gray">Perceived favoritism creates legal liability and community division</div>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="w-8 h-8 bg-warning-orange/20 rounded-full flex items-center justify-center mt-1 border border-warning-orange/30">
<i class="fas fa-times text-warning-orange text-sm"></i>
</div>
<div>
<div class="font-bold text-pure-white text-lg">Financial Mistrust</div>
<div class="text-soft-gray">Poor oversight breeds suspicion about spending and priorities</div>
</div>
</div>
</div>
</div>
<div>
<h3 class="text-subsection font-bold text-pure-white mb-8">After Maica: Complete Resolution</h3>
<div class="space-y-6">
<div class="flex items-start space-x-4">
<div class="w-8 h-8 bg-vivid-green/20 rounded-full flex items-center justify-center mt-1 border border-vivid-green/30">
<i class="fas fa-check text-vivid-green text-sm"></i>
</div>
<div>
<div class="font-bold text-pure-white text-lg">Instant Communication</div>
<div class="text-soft-gray">24/7 responses, automatic updates, residents always informed</div>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="w-8 h-8 bg-vivid-green/20 rounded-full flex items-center justify-center mt-1 border border-vivid-green/30">
<i class="fas fa-check text-vivid-green text-sm"></i>
</div>
<div>
<div class="font-bold text-pure-white text-lg">Maintenance Mastery</div>
<div class="text-soft-gray">No delays, vetted vendors, full project visibility & accountability</div>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="w-8 h-8 bg-vivid-green/20 rounded-full flex items-center justify-center mt-1 border border-vivid-green/30">
<i class="fas fa-check text-vivid-green text-sm"></i>
</div>
<div>
<div class="font-bold text-pure-white text-lg">Consistent Enforcement</div>
<div class="text-soft-gray">Fair, documented, unbiased rule application eliminates favoritism</div>
</div>
</div>
<div class="flex items-start space-x-4">
<div class="w-8 h-8 bg-vivid-green/20 rounded-full flex items-center justify-center mt-1 border border-vivid-green/30">
<i class="fas fa-check text-vivid-green text-sm"></i>
</div>
<div>
<div class="font-bold text-pure-white text-lg">Financial Transparency</div>
<div class="text-soft-gray">Complete oversight, real-time reporting, builds community trust</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ROI Calculator Section -->
<section id="roi-calculator" class="py-16 sm:py-20 lg:py-24 bg-medium-gray">
<div class="max-w-6xl mx-auto px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-section font-bold text-pure-white mb-6">
Calculate Your ROI
</h2>
<p class="text-body-large text-soft-gray max-w-3xl mx-auto">
See how much time and money Maica can save your HOA community. Our calculator uses real data from 150+ communities already using Maica.
</p>
</div>
<div class="grid lg:grid-cols-2 gap-12 lg:gap-16 items-start">
<!-- Calculator Inputs -->
<div class="bg-deep-charcoal border border-light-gray/30 rounded-xl p-8 hover:border-electric-blue/50 transition-all duration-300">
<h3 class="text-2xl font-bold text-pure-white mb-8 flex items-center">
<i class="fas fa-calculator text-electric-blue mr-3"></i>
Your Community Details
</h3>
<div class="space-y-6">
<div>
<label class="block text-pure-white font-semibold mb-2">Number of Units</label>
<input
type="number"
id="units"
class="w-full bg-medium-gray border border-light-gray/30 rounded-lg px-4 py-3 text-pure-white focus:border-electric-blue focus:ring-2 focus:ring-electric-blue/20 outline-none transition-all duration-300"
placeholder="e.g., 150"
value="150"
min="10"
max="5000"
oninput="calculateROI()"
>
</div>
<div>
<label class="block text-pure-white font-semibold mb-2">Average Monthly Inquiries</label>
<input
type="number"
id="inquiries"
class="w-full bg-medium-gray border border-light-gray/30 rounded-lg px-4 py-3 text-pure-white focus:border-electric-blue focus:ring-2 focus:ring-electric-blue/20 outline-none transition-all duration-300"
placeholder="e.g., 200"
value="200"
min="10"
max="2000"
oninput="calculateROI()"
>
<p class="text-soft-gray text-sm mt-1">Maintenance requests, questions, complaints, etc.</p>
</div>
<div>
<label class="block text-pure-white font-semibold mb-2">Board Member Hourly Rate</label>
<div class="relative">
<span class="absolute left-3 top-3 text-pure-white">$</span>
<input
type="number"
id="hourlyRate"
class="w-full bg-medium-gray border border-light-gray/30 rounded-lg pl-8 pr-4 py-3 text-pure-white focus:border-electric-blue focus:ring-2 focus:ring-electric-blue/20 outline-none transition-all duration-300"
placeholder="50"
value="50"
min="10"
max="200"
oninput="calculateROI()"
>
</div>
<p class="text-soft-gray text-sm mt-1">What board members' time is worth per hour</p>
</div>
<div>
<label class="block text-pure-white font-semibold mb-2">Management Company Fee</label>
<div class="relative">
<span class="absolute left-3 top-3 text-pure-white">$</span>
<input
type="number"
id="managementFee"
class="w-full bg-medium-gray border border-light-gray/30 rounded-lg pl-8 pr-4 py-3 text-pure-white focus:border-electric-blue focus:ring-2 focus:ring-electric-blue/20 outline-none transition-all duration-300"
placeholder="1200"
value="1200"
min="0"
max="10000"
oninput="calculateROI()"
>
</div>
<p class="text-soft-gray text-sm mt-1">Current monthly management fees (0 if self-managed)</p>
</div>
</div>
</div>
<!-- ROI Results -->
<div class="bg-gradient-to-br from-electric-blue/10 to-vivid-green/10 border border-electric-blue/30 rounded-xl p-8">
<h3 class="text-2xl font-bold text-pure-white mb-8 flex items-center">
<i class="fas fa-chart-line text-vivid-green mr-3"></i>
Your Potential Savings
</h3>
<div class="space-y-6">
<!-- Monthly Savings -->
<div class="bg-deep-charcoal/50 rounded-lg p-6 border border-vivid-green/20">
<div class="flex items-center justify-between mb-4">
<span class="text-pure-white font-semibold">Monthly Savings</span>
<div class="text-right">
<div class="text-3xl font-bold text-vivid-green" id="monthlySavings">$3,250</div>
</div>
</div>
<div class="grid grid-cols-2 gap-4 text-sm">
<div>
<div class="text-soft-gray">Board Time Saved</div>
<div class="text-pure-white font-semibold" id="timeSaved">40 hours</div>
</div>
<div>
<div class="text-soft-gray">Calls Automated</div>
<div class="text-pure-white font-semibold" id="callsAutomated">192 calls</div>
</div>
</div>
</div>
<!-- Annual ROI -->
<div class="bg-deep-charcoal/50 rounded-lg p-6 border border-electric-blue/20">
<div class="flex items-center justify-between mb-4">
<span class="text-pure-white font-semibold">Annual ROI</span>
<div class="text-right">
<div class="text-3xl font-bold text-electric-blue" id="annualROI">2,340%</div>
</div>
</div>
<div class="grid grid-cols-2 gap-4 text-sm">
<div>
<div class="text-soft-gray">Annual Savings</div>
<div class="text-pure-white font-semibold" id="annualSavings">$39,000</div>
</div>
<div>
<div class="text-soft-gray">Maica Cost</div>
<div class="text-pure-white font-semibold" id="maicaCost">$1,422</div>
</div>
</div>
</div>
<!-- Payback Period -->
<div class="bg-gradient-to-r from-vivid-green/20 to-electric-blue/20 rounded-lg p-6 border border-vivid-green/30">
<div class="text-center">
<div class="text-soft-gray mb-2">Payback Period</div>
<div class="text-4xl font-bold text-vivid-green mb-2" id="paybackPeriod">0.4</div>
<div class="text-pure-white font-semibold">months</div>
</div>
</div>
<!-- Call to Action -->
<div class="text-center pt-4">
<button
onclick="accessDemo()"
class="bg-gradient-to-r from-electric-blue to-vivid-green text-pure-white font-bold py-4 px-8 rounded-xl hover:scale-105 transition-all duration-300 shadow-lg hover:shadow-xl"
>
Get Started Today
</button>
<p class="text-soft-gray text-sm mt-3">Based on data from 150+ communities using Maica</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Demo Section -->
<section id="demo" class="py-16 sm:py-20 lg:py-30 bg-deep-charcoal">
<div class="max-w-4xl mx-auto px-6 lg:px-8 text-center">
<h2 class="text-section font-bold text-pure-white mb-6">
Experience Maica in Action
</h2>
<p class="text-body-large text-soft-gray mb-16">
Experience Maica's AI-powered HOA management capabilities firsthand
</p>
<div class="flex justify-center">
<div class="bg-gradient-to-br from-electric-blue to-vivid-green p-8 rounded-xl text-pure-white border border-electric-blue/30 hover:scale-102 transition-all duration-300 max-w-md w-full">
<div class="w-20 h-20 bg-pure-white/20 rounded-xl flex items-center justify-center mx-auto mb-8 backdrop-blur-sm">
<i class="fas fa-play text-pure-white text-3xl"></i>
</div>
<h3 class="text-2xl font-bold mb-6">Try Live Demo</h3>
<p class="mb-8 opacity-90 leading-relaxed">
Interact with Maica right now. Ask about HOA rules, maintenance requests, or community information.
</p>
<button onclick="accessDemo()" class="bg-pure-white text-electric-blue px-6 py-3 rounded-lg font-bold hover:bg-pure-white/90 hover:scale-102 transition-all duration-200 inline-flex items-center space-x-2 w-full justify-center">
<span>Launch Demo</span>
<i class="fas fa-external-link-alt"></i>
</button>
<div class="mt-8 pt-6 border-t border-pure-white/20">
<p class="text-sm opacity-75 mb-2">Or call directly:</p>
<a href="tel:747-898-0112" class="text-xl font-bold hover:underline hover:text-vivid-green transition-colors duration-200">747-898-0112</a>
</div>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section id="pricing" class="py-16 sm:py-20 lg:py-30 bg-medium-gray">
<div class="max-w-ai mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16 lg:mb-24">
<div class="inline-flex items-center space-x-2 bg-warning-orange/10 text-warning-orange px-4 py-2 rounded-full text-sm font-medium mb-6 border border-warning-orange/20">
<i class="fas fa-clock"></i>
<span>Limited Time: Free Setup ($199 value) • Ends This Month</span>
</div>
<h2 class="text-2xl sm:text-3xl lg:text-section font-bold text-pure-white mb-4 lg:mb-6">
Choose Your Management Level
</h2>
<p class="text-lg sm:text-xl lg:text-body-large text-soft-gray max-w-3xl mx-auto px-4">
From AI automation to full-service management. Scale your solution as your community grows.
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8 max-w-7xl mx-auto">
<!-- Tier 1: AI Automation -->
<div class="bg-deep-charcoal p-8 rounded-2xl border border-light-gray hover:border-electric-blue/50 transition-all duration-300">
<div class="text-center mb-8">
<h3 class="text-2xl font-bold text-pure-white mb-2">AI Automation</h3>
<p class="text-soft-gray">Essential AI Management</p>
</div>
<div class="text-center mb-8">
<div class="flex items-baseline justify-center space-x-2 mb-2">
<span class="text-4xl font-bold text-pure-white">$29</span>
<span class="text-xl text-soft-gray">/mo</span>
</div>
<p class="text-soft-gray text-sm">per unit</p>