-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2125 lines (2125 loc) · 110 KB
/
Copy pathindex.html
File metadata and controls
2125 lines (2125 loc) · 110 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="vi">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; img-src 'self' data: https://media.cuoituandidau.vn https://randomuser.me https://www.google-analytics.com https://www.googletagmanager.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; script-src 'self' 'unsafe-inline' https://www.googletagmanager.com https://unpkg.com; connect-src 'self' https://www.google-analytics.com https://www.googletagmanager.com; object-src 'none'; base-uri 'self';" />
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5BJB8F6W1D"></script>
<script src="/assets/js/ga.js"></script>
<title>Cuối Tuần Đi Đâu? - App gợi ý cuối tuần cho gia đình Việt</title>
<meta
name="description"
content="App Cuối Tuần Đi Đâu giúp ba mẹ ở Hà Nội & TP.HCM lên kế hoạch cuối tuần cho gia đình trong 3 phút — gợi ý điểm vui chơi, review địa điểm chọn lọc theo tuổi con."
/>
<meta property="og:site_name" content="Cuối Tuần Đi Đâu" />
<meta
property="og:title"
content="Cuối Tuần Đi Đâu? - App gợi ý cuối tuần cho gia đình Việt"
/>
<meta
property="og:description"
content="Lên kế hoạch cuối tuần cho gia đình trong 3 phút. Gợi ý điểm vui chơi, review địa điểm chọn lọc theo tuổi con — không phải lướt Facebook hay hỏi group."
/>
<meta property="og:type" content="website" />
<meta property="og:locale" content="vi_VN" />
<meta property="og:url" content="https://cuoituandidau.vn/" />
<meta
property="og:image"
content="https://cuoituandidau.vn/assets/images/og-cover.jpg"
/>
<meta property="og:image:secure_url" content="https://cuoituandidau.vn/assets/images/og-cover.jpg" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Cuối Tuần Đi Đâu - App gợi ý hoạt động cuối tuần cho gia đình Việt" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Cuối Tuần Đi Đâu? - App gợi ý cuối tuần cho gia đình Việt"
/>
<meta
name="twitter:description"
content="Lên kế hoạch cuối tuần cho gia đình trong 3 phút. Gợi ý điểm vui chơi, review địa điểm chọn lọc theo tuổi con."
/>
<meta name="twitter:image" content="https://cuoituandidau.vn/assets/images/og-cover.jpg" />
<meta name="twitter:image:alt" content="Cuối Tuần Đi Đâu - App gợi ý hoạt động cuối tuần cho gia đình Việt" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"@id": "https://cuoituandidau.vn/#website",
"url": "https://cuoituandidau.vn/",
"name": "Cuối Tuần Đi Đâu",
"description": "App gợi ý điểm vui chơi cuối tuần cho gia đình Việt — lên kế hoạch trong 3 phút.",
"inLanguage": "vi-VN",
"publisher": { "@id": "https://cuoituandidau.vn/#organization" }
},
{
"@type": "Organization",
"@id": "https://cuoituandidau.vn/#organization",
"name": "Cuối Tuần Đi Đâu",
"url": "https://cuoituandidau.vn/",
"logo": "https://cuoituandidau.vn/assets/images/logo.jpg"
},
{
"@type": "MobileApplication",
"name": "Cuối Tuần Đi Đâu",
"operatingSystem": "iOS, Android",
"applicationCategory": "LifestyleApplication",
"inLanguage": "vi-VN",
"url": "https://cuoituandidau.vn/",
"description": "App giúp ba mẹ Việt lên kế hoạch cuối tuần cho gia đình trong 3 phút.",
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "VND" }
}
]
}
</script>
<link rel="canonical" href="https://cuoituandidau.vn/" />
<link rel="icon" type="image/png" href="assets/images/favicon.png" />
<link rel="apple-touch-icon" href="assets/images/app-icon-160.png" />
<link
rel="preload"
as="image"
type="image/webp"
href="assets/images/hero-banner-mobile.webp"
media="(max-width: 1023px)"
/>
<link
rel="preload"
as="image"
type="image/webp"
href="assets/images/hero-banner-desktop.webp"
media="(min-width: 1024px)"
/>
<link rel="preload" as="font" type="font/woff2" href="assets/fonts/inter-latin.woff2" crossorigin />
<link rel="preload" as="font" type="font/woff2" href="assets/fonts/inter-vietnamese.woff2" crossorigin />
<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=Dancing+Script:wght@600;700&family=Nunito:wght@700;800;900&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="assets/css/styles.css" />
<link rel="stylesheet" href="assets/css/carousel.css" />
<link rel="stylesheet" href="assets/css/polaroid.css" />
<link rel="stylesheet" href="assets/css/notes.css" />
</head>
<body class="bg-white text-text-primary antialiased">
<svg xmlns="http://www.w3.org/2000/svg" hidden aria-hidden="true">
<defs>
<symbol id="icon-star" viewBox="0 0 20 20">
<path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/>
</symbol>
<symbol id="icon-faq-chevron" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" stroke="currentColor" fill="none" d="M19 9l-7 7-7-7"/>
</symbol>
<symbol id="icon-mail-fill" viewBox="0 0 20 20">
<path d="M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0016 4H4a2 2 0 00-1.997 1.884z"/>
<path d="M18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z"/>
</symbol>
<symbol id="icon-facebook" viewBox="0 0 24 24">
<path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/>
</symbol>
<symbol id="icon-linkedin" viewBox="0 0 24 24">
<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.063 2.063 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/>
</symbol>
<symbol id="icon-carousel-prev" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" stroke="currentColor" fill="none" d="M15 19l-7-7 7-7"/>
</symbol>
<symbol id="icon-carousel-next" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" stroke="currentColor" fill="none" d="M9 5l7 7-7 7"/>
</symbol>
<symbol id="icon-hamburger" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" stroke="currentColor" fill="none" d="M4 6h16M4 12h16M4 18h16"/>
</symbol>
<symbol id="icon-download" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" stroke="currentColor" fill="none" d="M12 17V3M6 11l6 6 6-6M19 21H5"/>
</symbol>
<symbol id="icon-close" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" stroke="currentColor" fill="none" d="M18 6L6 18M6 6l12 12"/>
</symbol>
</defs>
</svg>
<a href="#main" class="sr-only focus:not-sr-only focus:absolute focus:top-2 focus:left-2 focus:z-50 focus:px-4 focus:py-2 focus:bg-primary focus:text-white focus:rounded">Đi đến nội dung chính</a>
<div id="scroll-progress" aria-hidden="true"></div>
<header
class="sticky top-0 z-50 bg-bg-warm/90 backdrop-blur-md border-b border-border-default/80"
role="banner"
>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-20">
<a href="/" class="flex items-center gap-3 group">
<img
src="assets/images/logo.jpg"
alt="Cuối Tuần Đi Đâu"
class="w-11 h-11 rounded-xl object-cover shadow-md shadow-primary/10"
/>
<span class="text-xl font-heading font-extrabold tracking-tight text-text-primary"
>Cuối Tuần <span class="text-primary">Đi Đâu?</span></span
>
</a>
<nav class="hidden lg:flex items-center gap-8">
<a
href="#planner"
class="text-md font-medium text-text-secondary hover:text-primary-dark transition-colors py-2"
>Gợi ý</a
>
<a
href="#features"
class="text-md font-medium text-text-secondary hover:text-primary-dark transition-colors py-2"
>Tính năng</a
>
<a
href="#how-it-works"
class="text-md font-medium text-text-secondary hover:text-primary-dark transition-colors py-2"
>Cách dùng</a
>
<a
href="#testimonials"
class="text-md font-medium text-text-secondary hover:text-primary-dark transition-colors py-2"
>Đánh giá</a
>
<a
href="#faq"
class="text-md font-medium text-text-secondary hover:text-primary-dark transition-colors py-2"
>FAQ</a
>
</nav>
<div class="hidden lg:flex items-center gap-4">
<a
href="#download"
class="px-5 py-2.5 bg-primary hover:bg-primary-deep text-white text-sm font-heading font-bold rounded-xl shadow-lg shadow-primary/10 transition-all flex items-center gap-2 hover:-translate-y-0.5"
>
<i data-lucide="arrow-down-to-line" class="w-4 h-4"></i>
Tải ứng dụng
</a>
</div>
<button
id="mobile-menu-btn"
class="lg:hidden p-2 rounded-lg text-text-secondary hover:bg-border-default/50"
aria-label="Mở menu điều hướng"
aria-controls="mobile-menu"
aria-expanded="false"
>
<i data-lucide="menu" class="w-6 h-6"></i>
</button>
</div>
</div>
<div id="mobile-menu" class="lg:hidden bg-white border-t border-border-default hidden">
<div class="px-4 pt-3 pb-6 space-y-2">
<a
href="#planner"
class="block px-3 py-3 rounded-lg text-md font-semibold text-text-secondary hover:text-primary-deep hover:bg-bg-warm"
>Gợi ý</a
>
<a
href="#features"
class="block px-3 py-3 rounded-lg text-md font-semibold text-text-secondary hover:text-primary-deep hover:bg-bg-warm"
>Tính năng</a
>
<a
href="#how-it-works"
class="block px-3 py-3 rounded-lg text-md font-semibold text-text-secondary hover:text-primary-deep hover:bg-bg-warm"
>Cách dùng</a
>
<a
href="#testimonials"
class="block px-3 py-3 rounded-lg text-md font-semibold text-text-secondary hover:text-primary-deep hover:bg-bg-warm"
>Đánh giá</a
>
<a
href="#faq"
class="block px-3 py-3 rounded-lg text-md font-semibold text-text-secondary hover:text-primary-deep hover:bg-bg-warm"
>FAQ</a
>
<div class="pt-4 border-t border-border-default mt-3">
<a
href="#download"
class="w-full py-3.5 bg-primary text-center text-white font-heading font-bold text-sm rounded-xl shadow-lg shadow-primary/10 flex items-center justify-center gap-2"
>
<i data-lucide="arrow-down-to-line" class="w-4 h-4"></i>
Tải ứng dụng
</a>
</div>
</div>
</div>
</header>
<main id="main" role="main">
<section
class="relative overflow-hidden bg-gradient-to-b from-bg-warm via-white to-bg-warm py-16 sm:py-24"
aria-label="Giới thiệu ứng dụng"
>
<div
class="absolute top-0 right-0 -z-10 translate-x-1/3 -translate-y-1/4 w-[500px] h-[500px] rounded-full bg-primary-light/10 blur-3xl"
></div>
<div
class="absolute bottom-0 left-0 -z-10 -translate-x-1/3 translate-y-1/4 w-[400px] h-[400px] rounded-full bg-primary-faint/25 blur-3xl"
></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 lg:grid-cols-12 gap-12 lg:gap-8 items-center">
<div class="lg:col-span-6 space-y-8 text-center lg:text-left order-2 lg:order-1">
<div
class="inline-flex items-center gap-2 px-3.5 py-1.5 bg-primary-light/30 text-primary-dark rounded-full text-xs sm:text-sm font-semibold border border-primary/25"
>
<span>Ứng dụng cho gia đình Việt</span>
</div>
<h1
class="text-[28px] sm:text-5xl lg:text-6xl font-heading font-extrabold tracking-tight text-text-primary leading-[1.15]"
>
Cuối tuần này, <br />
<span
class="text-transparent bg-clip-text bg-gradient-to-r from-primary-dark to-primary-deep"
>nhà mình đi đâu chơi?</span
>
</h1>
<p
class="mt-5 sm:mt-6 text-lg sm:text-xl text-text-secondary leading-relaxed max-w-xl mx-auto lg:mx-0"
>
Chọn tuổi con, thời tiết và khu vực. App gợi ý vài địa điểm phù hợp để cả nhà có
một chuyến đi nhẹ nhàng, an toàn và nhiều kỷ niệm hơn.
</p>
<div class="space-y-4">
<div class="flex items-center gap-3 justify-center lg:justify-start">
<a
href="https://apps.apple.com/vn/app/cu%E1%BB%91i-tu%E1%BA%A7n-%C4%91i-%C4%91%C3%A2u/id6765682490"
data-app-link="ios"
data-app-link-placement="hero"
class="hover:opacity-90 transition-opacity"
aria-label="Tải về từ App Store"
>
<img
src="assets/logos/app-store-badge-vi.svg"
alt="Tải về từ App Store"
class="h-9 sm:h-11 w-auto"
/>
</a>
<a
href="https://github.com/unknown-studio-dev/weekend-go-android-distribution/releases/download/v1.0.3/cuoituandidauv1.0.3.apk"
data-app-link="android"
data-app-link-placement="hero"
class="hover:opacity-90 transition-opacity"
aria-label="Tải ứng dụng trên Google Play"
>
<img
src="assets/logos/GetItOnGooglePlay_Badge_Web_color_Vietnamese.svg"
alt="Tải ứng dụng trên Google Play"
class="h-9 sm:h-11 w-auto"
/>
</a>
</div>
</div>
<div
class="pt-6 border-t border-border-default/70 flex flex-wrap items-center justify-center lg:justify-start gap-x-6 gap-y-3 text-xs sm:text-sm text-text-secondary"
>
<div class="flex items-center gap-2">
<i data-lucide="check-circle" class="w-4 h-4 text-primary-deep shrink-0"></i>
<span>Miễn phí hoàn toàn</span>
</div>
<div class="flex items-center gap-2">
<i data-lucide="shield-check" class="w-4 h-4 text-primary-deep shrink-0"></i>
<span>Kiểm duyệt từng địa điểm</span>
</div>
<div class="flex items-center gap-2">
<i data-lucide="map-pin" class="w-4 h-4 text-primary-deep shrink-0"></i>
<span>Hơn 1000 địa điểm</span>
</div>
</div>
</div>
<div class="lg:col-span-6 relative order-1 lg:order-2 h-[400px] sm:h-[460px]">
<div class="absolute inset-0 rounded-[32px] overflow-hidden shadow-2xl shadow-primary/20 border border-white">
<svg viewBox="0 0 600 440" preserveAspectRatio="xMidYMid slice" class="w-full h-full" aria-hidden="true">
<rect width="600" height="440" fill="#E8EEDD" />
<path d="M-20,120 C120,150 215,238 345,250 C475,262 548,338 640,300" stroke="#A9D6EA" stroke-width="40" fill="none" stroke-linecap="round" />
<ellipse cx="545" cy="405" rx="95" ry="55" fill="#A9D6EA" />
<rect x="45" y="45" width="135" height="100" rx="26" fill="#BFE1A3" />
<circle cx="468" cy="100" r="60" fill="#BFE1A3" />
<g stroke="#D7DECB" stroke-width="11" fill="none" stroke-linecap="round">
<path d="M0,178 C160,172 330,188 600,150" /><path d="M0,332 C150,338 350,330 600,348" />
<path d="M205,-10 C212,150 196,300 214,450" /><path d="M488,-10 C494,150 480,300 502,450" />
</g>
<g stroke="#ffffff" stroke-width="6" fill="none" stroke-linecap="round">
<path d="M0,178 C160,172 330,188 600,150" /><path d="M0,332 C150,338 350,330 600,348" />
<path d="M205,-10 C212,150 196,300 214,450" /><path d="M488,-10 C494,150 480,300 502,450" />
</g>
<path d="M0,305 C150,285 270,205 600,232" stroke="#F2C75C" stroke-width="13" fill="none" stroke-linecap="round" />
<path d="M0,305 C150,285 270,205 600,232" stroke="#ffffff" stroke-width="2" stroke-dasharray="8 9" fill="none" />
<g fill="#9AA88C" font-weight="800" opacity="0.7" font-family="Nunito, sans-serif">
<text x="255" y="125" font-size="13">QUẬN 1</text><text x="470" y="285" font-size="12">QUẬN 7</text>
</g>
<path class="js-route" d="" stroke="#24a94b" stroke-width="3" stroke-dasharray="1 7" stroke-linecap="round" fill="none" />
</svg>
</div>
<div class="js-markers absolute inset-0" data-theme="light" data-flat="1"></div>
</div>
</div>
</div>
</section>
<section id="problem" class="reveal py-20 lg:py-28 bg-bg-warm">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 lg:grid-cols-12 gap-12 lg:gap-24 items-center">
<div class="lg:col-span-6 space-y-6">
<span
class="inline-flex items-center gap-2 px-3.5 py-1.5 bg-primary-light/30 text-primary-dark rounded-full text-xs sm:text-sm font-semibold border border-primary/25"
>
Nỗi vất vả của ba mẹ
</span>
<h2
class="text-3xl sm:text-4xl font-heading font-extrabold text-text-primary tracking-tight"
>
Cuối tuần ngắn lắm. <br />
<span class="text-primary-dark">Đừng mất nửa ngày để loay hoay tìm chỗ.</span>
</h2>
<p class="text-text-secondary text-base sm:text-lg leading-relaxed">
Ba mẹ cần một nơi đủ nhanh để chọn, đủ thật để tin và đủ cụ thể để chuẩn bị cho con.
</p>
<div class="hidden lg:block relative rounded-2xl overflow-hidden py-[1px] bg-gradient-to-r from-primary-faint to-transparent">
<div class="bg-bg-warm p-5 rounded-2xl">
<p class="text-xs italic text-text-tertiary">
"Đi chơi với con không khó. Khó là biết chỗ nào thật sự hợp với nhà mình."
</p>
</div>
</div>
</div>
<div class="lg:col-span-6 relative max-w-[35rem] w-full lg:ml-auto">
<div aria-hidden="true" class="pointer-events-none absolute -top-8 -right-10 w-40 h-40 bg-amber-light/50 rounded-full blur-3xl"></div>
<div aria-hidden="true" class="pointer-events-none absolute -bottom-8 -left-6 w-40 h-40 bg-primary-light/40 rounded-full blur-3xl"></div>
<div class="relative">
<div
aria-hidden="true"
class="hidden lg:block absolute top-8 left-[16%] right-[16%] h-[2px] bg-gradient-to-r from-amber via-accent to-danger"
></div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6 lg:gap-4">
<div class="group flex flex-row lg:flex-col items-start lg:items-center gap-4 lg:gap-4">
<div class="shrink-0 relative z-10 w-16 h-16 bg-white border-2 border-amber rounded-2xl flex flex-col items-center justify-center shadow-sm">
<i data-lucide="newspaper" class="w-4 h-4 text-amber"></i>
<span class="font-heading font-black text-sm text-amber leading-none mt-0.5">7h</span>
<span class="text-3xs text-amber/70 font-extrabold tracking-[0.12em]">SÁNG</span>
</div>
<div class="flex-1 lg:w-full bg-amber-light border border-amber/50 rounded-xl p-4 shadow-md transition-transform duration-200 lg:-rotate-2 group-hover:rotate-0 group-hover:-translate-y-1">
<span class="inline-flex items-center px-1.5 py-0.5 mb-1.5 bg-amber-light text-[#92400E] rounded text-3xs font-extrabold uppercase tracking-wider">
Bão hòa quảng cáo
</span>
<h3 class="font-heading font-bold text-text-primary text-sm leading-snug mb-1">
Lướt Facebook, tìm chỗ chơi
</h3>
<p class="text-xs text-text-secondary leading-relaxed">
Toàn bài review nhưng không biết bài nào thật, bài nào là quảng cáo.
</p>
</div>
</div>
<div class="group flex flex-row lg:flex-col items-start lg:items-center gap-4 lg:gap-4">
<div class="shrink-0 relative z-10 w-16 h-16 bg-white border-2 border-accent rounded-2xl flex flex-col items-center justify-center shadow-sm">
<i data-lucide="cloud-rain" class="w-4 h-4 text-[#C2410C]"></i>
<span class="font-heading font-black text-xs text-[#C2410C] leading-none mt-0.5">8h30</span>
<span class="text-3xs text-[#C2410C]/70 font-extrabold tracking-[0.12em]">SÁNG</span>
</div>
<div class="flex-1 lg:w-full bg-accent-light border border-accent/50 rounded-xl p-4 shadow-md transition-transform duration-200 lg:rotate-1 group-hover:rotate-0 group-hover:-translate-y-1">
<span class="inline-flex items-center px-1.5 py-0.5 mb-1.5 bg-accent-light text-[#9A3412] rounded text-3xs font-extrabold uppercase tracking-wider">
Thiếu thông tin
</span>
<h3 class="font-heading font-bold text-text-primary text-sm leading-snug mb-1">
Chọn được chỗ — nhưng thiếu thông tin
</h3>
<p class="text-xs text-text-secondary leading-relaxed">
Không biết có phòng thay tã, bóng râm thế nào, gửi xe ở đâu.
</p>
</div>
</div>
<div class="group flex flex-row lg:flex-col items-start lg:items-center gap-4 lg:gap-4">
<div class="shrink-0 relative z-10 w-16 h-16 bg-white border-2 border-danger rounded-2xl flex flex-col items-center justify-center shadow-sm">
<i data-lucide="shuffle" class="w-4 h-4 text-danger"></i>
<span class="font-heading font-black text-xs text-danger leading-none mt-0.5">9h30</span>
<span class="text-3xs text-danger/70 font-extrabold tracking-[0.12em]">SÁNG</span>
</div>
<div class="flex-1 lg:w-full bg-danger-light border border-danger/50 rounded-xl p-4 shadow-md transition-transform duration-200 lg:-rotate-1 group-hover:rotate-0 group-hover:-translate-y-1">
<span class="inline-flex items-center px-1.5 py-0.5 mb-1.5 bg-danger-light text-[#991B1B] rounded text-3xs font-extrabold uppercase tracking-wider">
Lệch nhịp 2 thế hệ
</span>
<h3 class="font-heading font-bold text-text-primary text-sm leading-snug mb-1">
Ông bà than mệt, con đòi về
</h3>
<p class="text-xs text-text-secondary leading-relaxed">
Chỗ chỉ hợp con nhỏ, không có ghế cho ông bà nghỉ.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="planner" class="reveal py-20 lg:py-28 bg-white relative">
<div
class="absolute inset-0 bg-gradient-to-b from-bg-warm/50 via-white to-bg-warm/30 pointer-events-none"
></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative">
<div class="text-center max-w-3xl mx-auto mb-16 space-y-4">
<span
class="inline-flex items-center gap-2 px-3.5 py-1.5 bg-primary-light/30 text-primary-dark rounded-full text-xs sm:text-sm font-semibold border border-primary/25"
>
Tính năng độc quyền
</span>
<h2
class="text-3xl sm:text-4xl font-heading font-extrabold text-text-primary tracking-tight"
>
Thử ngay — <span class="text-primary-dark">Gợi ý cho gia đình bạn</span>
</h2>
<p class="text-text-secondary text-base sm:text-lg">
Chọn điều kiện của gia đình bạn — tụi mình gợi ý chỗ phù hợp ngay lập tức.
</p>
</div>
<div
class="grid grid-cols-1 lg:grid-cols-12 gap-10 bg-white border border-border-default rounded-3xl p-6 sm:p-8 lg:p-10 shadow-lg shadow-primary/10"
>
<div
id="planner-panel-filters"
class="lg:col-span-5 space-y-8 border-b lg:border-b-0 lg:border-r border-border-default pb-8 lg:pb-0 lg:pr-8"
>
<div class="flex justify-between items-center">
<h3 class="text-lg font-heading font-bold text-text-primary flex items-center gap-2">
Thiết lập hồ sơ gia đình
</h3>
<button
id="planner-reset"
type="button"
class="text-xs font-semibold text-text-tertiary hover:text-primary-deep flex items-center gap-1.5"
>
<i data-lucide="rotate-ccw" class="w-3.5 h-3.5"></i> Khôi phục
</button>
</div>
<div class="space-y-3.5">
<label
class="text-sm font-heading font-bold text-text-secondary tracking-wider flex items-center gap-2"
>
<span class="flex items-center justify-center w-5 h-5 rounded-full bg-primary text-white text-xs font-bold shrink-0">1</span>
Nhập tuổi của bé
</label>
<div class="grid grid-cols-4 gap-2" data-filter-group="age">
<button
data-toggle
data-group="age"
data-value="toddler"
data-active="false"
class="px-3 py-2 rounded-full border bg-white/50 border-border-default text-text-secondary text-xs sm:text-sm font-heading font-bold"
>
1-3 tuổi
</button>
<button
data-toggle
data-group="age"
data-value="preschool"
data-active="true"
class="px-3 py-2 rounded-full border bg-white/50 border-border-default text-text-secondary text-xs sm:text-sm font-heading font-bold"
>
4-5 tuổi
</button>
<button
data-toggle
data-group="age"
data-value="primary"
data-active="false"
class="px-3 py-2 rounded-full border bg-white/50 border-border-default text-text-secondary text-xs sm:text-sm font-heading font-bold"
>
6-11 tuổi
</button>
<button
data-toggle
data-group="age"
data-value="teen"
data-active="false"
class="px-3 py-2 rounded-full border bg-white/50 border-border-default text-text-secondary text-xs sm:text-sm font-heading font-bold"
>
11-15 tuổi
</button>
</div>
</div>
<div class="space-y-3.5">
<label
class="text-sm font-heading font-bold text-text-secondary tracking-wider flex items-center gap-2"
>
<span class="flex items-center justify-center w-5 h-5 rounded-full bg-primary text-white text-xs font-bold shrink-0">2</span>
Gu đi chơi của nhà mình:
</label>
<div class="space-y-2" data-filter-group="vibe">
<button
data-toggle
data-group="vibe"
data-value="cafe"
data-active="true"
class="w-full text-left p-3 rounded-xl border flex items-start gap-3 bg-white/50 border-border-default text-text-secondary"
>
<div
class="toggle-icon-wrap p-2.5 rounded-lg shrink-0 bg-bg-warm text-text-tertiary"
>
<i data-lucide="coffee" class="w-4 h-4"></i>
</div>
<div class="text-left">
<p class="text-sm font-heading font-extrabold">Trà bánh có góc chơi</p>
<p class="text-xs text-text-tertiary mt-0.5 leading-snug">
Ba mẹ thảnh thơi trò chuyện, bé chơi an toàn.
</p>
</div>
</button>
<button
data-toggle
data-group="vibe"
data-value="active"
data-active="false"
class="w-full text-left p-3 rounded-xl border flex items-start gap-3 bg-white/50 border-border-default text-text-secondary"
>
<div
class="toggle-icon-wrap p-2.5 rounded-lg shrink-0 bg-bg-warm text-text-tertiary"
>
<i data-lucide="flame" class="w-4 h-4"></i>
</div>
<div class="text-left">
<p class="text-sm font-heading font-extrabold">Năng động ngoài trời</p>
<p class="text-xs text-text-tertiary mt-0.5 leading-snug">
Nông trại, lội suối, gieo hạt — con vận động cả ngày.
</p>
</div>
</button>
<button
data-toggle
data-group="vibe"
data-value="nature"
data-active="false"
class="w-full text-left p-3 rounded-xl border flex items-start gap-3 bg-white/50 border-border-default text-text-secondary"
>
<div
class="toggle-icon-wrap p-2.5 rounded-lg shrink-0 bg-bg-warm text-text-tertiary"
>
<i data-lucide="trees" class="w-4 h-4"></i>
</div>
<div class="text-left">
<p class="text-sm font-heading font-extrabold">Dã ngoại</p>
<p class="text-xs text-text-tertiary mt-0.5 leading-snug">
Bãi cỏ rộng, có bóng râm để trải bạt.
</p>
</div>
</button>
<button
data-toggle
data-group="vibe"
data-value="creative"
data-active="false"
class="w-full text-left p-3 rounded-xl border flex items-start gap-3 bg-white/50 border-border-default text-text-secondary"
>
<div
class="toggle-icon-wrap p-2.5 rounded-lg shrink-0 bg-bg-warm text-text-tertiary"
>
<i data-lucide="sparkles" class="w-4 h-4"></i>
</div>
<div class="text-left">
<p class="text-sm font-heading font-extrabold">Sáng tạo trong nhà</p>
<p class="text-xs text-text-tertiary mt-0.5 leading-snug">
Bảo tàng, xưởng gốm, lớp vẽ — tránh nắng mưa.
</p>
</div>
</button>
</div>
</div>
<div class="space-y-3.5">
<label
class="text-sm font-heading font-bold text-text-secondary tracking-wider flex items-center gap-2"
>
<span class="flex items-center justify-center w-5 h-5 rounded-full bg-primary text-white text-xs font-bold shrink-0">3</span>
Thời tiết cuối tuần:
</label>
<div class="grid grid-cols-3 gap-2" data-filter-group="weather">
<button
data-toggle
data-group="weather"
data-value="sunny"
data-active="true"
class="p-3 rounded-xl border flex flex-col items-center justify-center text-center bg-white/50 border-border-default text-text-secondary"
>
<i data-lucide="sun" class="toggle-icon w-5 h-5 mb-1.5 text-text-tertiary"></i>
<p class="text-xs font-heading font-bold leading-tight">Nắng ráo / Mát mẻ</p>
</button>
<button
data-toggle
data-group="weather"
data-value="hot"
data-active="false"
class="p-3 rounded-xl border flex flex-col items-center justify-center text-center bg-white/50 border-border-default text-text-secondary"
>
<i
data-lucide="cloud-sun"
class="toggle-icon w-5 h-5 mb-1.5 text-text-tertiary"
></i>
<p class="text-xs font-heading font-bold leading-tight">Trời nắng nóng</p>
</button>
<button
data-toggle
data-group="weather"
data-value="rain"
data-active="false"
class="p-3 rounded-xl border flex flex-col items-center justify-center text-center bg-white/50 border-border-default text-text-secondary"
>
<i
data-lucide="cloud-rain"
class="toggle-icon w-5 h-5 mb-1.5 text-text-tertiary"
></i>
<p class="text-xs font-heading font-bold leading-tight">Ngày mưa dầm dề</p>
</button>
</div>
</div>
<button
id="planner-submit"
type="button"
class="lg:hidden w-full inline-flex items-center justify-center gap-2 px-4 py-3.5 rounded-xl bg-primary text-white font-heading font-bold text-sm shadow-md shadow-primary/30 active:scale-[0.99] transition-transform"
>
<i data-lucide="search" class="w-4 h-4"></i>
Tìm địa điểm cho nhà mình
</button>
</div>
<div id="planner-panel-results" class="lg:col-span-7 flex flex-col justify-start">
<button
id="planner-back"
type="button"
class="lg:hidden inline-flex items-center gap-1.5 mb-4 text-sm font-heading font-bold text-text-secondary hover:text-primary-deep"
>
<i data-lucide="arrow-left" class="w-4 h-4"></i>
Quay lại chỉnh bộ lọc
</button>
<div
id="planner-loading"
class="hidden lg:hidden flex-col items-center justify-center py-16 text-center"
aria-live="polite"
>
<i data-lucide="loader-2" class="w-8 h-8 text-primary-deep animate-spin mb-3"></i>
<p class="text-sm text-text-secondary font-medium">Đang tìm chỗ chơi...</p>
</div>
<div id="planner-results-content">
<div class="flex items-center justify-between mb-6">
<h4
class="text-sm font-heading font-extrabold text-text-tertiary tracking-wider uppercase"
>
Gợi ý cho nhà mình (<span id="planner-count">2</span>)
</h4>
<span class="hidden lg:inline text-xs text-gray-400">Tự động làm mới</span>
</div>
<div
id="planner-fallback"
class="hidden mb-4 flex items-start gap-2.5 bg-amber-light border border-amber rounded-xl px-4 py-3"
>
<i data-lucide="info" class="w-4 h-4 text-amber mt-0.5 shrink-0"></i>
<p class="text-xs sm:text-sm text-[#7A5A1A] leading-relaxed">
Không có gợi ý cho thời tiết này — đang hiển thị các nơi gần đúng (theo tuổi & gu chơi của bé).
</p>
</div>
<div id="planner-results" class="space-y-6"></div>
<div
id="planner-empty"
class="hidden bg-white border border-dashed border-border-default rounded-2xl p-8 text-center"
>
<i data-lucide="search-x" class="w-8 h-8 text-gray-300 mx-auto mb-2"></i>
<p class="text-sm text-text-secondary">
Chưa có địa điểm khớp. Thử đổi gu chơi hoặc thời tiết nhé!
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="features" class="reveal py-20 lg:py-28 bg-bg-warm relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center max-w-3xl mx-auto mb-16 sm:mb-20 space-y-4">
<span
class="inline-flex items-center gap-2 px-3.5 py-1.5 bg-primary-light/30 text-primary-dark rounded-full text-xs sm:text-sm font-semibold border border-primary/25"
>
Tính năng cốt lõi
</span>
<h2
class="text-3xl sm:text-4xl font-heading font-extrabold text-text-primary tracking-tight"
>
Mọi tính năng đều <br />
<span class="text-primary-dark">xuất phát từ ba mẹ</span>
</h2>
<p class="text-text-secondary text-base sm:text-lg leading-relaxed">
Tụi mình tự phát triển app này — vừa là người làm, vừa là ba mẹ. Mỗi tính năng đều ra
đời từ tình huống thật của con: từ chọn chỗ đi, chuẩn bị kỹ, đến chia sẻ lại kinh
nghiệm.
</p>
</div>
<div class="feat-board p-6 sm:p-12 rounded-3xl">
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 lg:gap-x-10 lg:gap-y-12 max-w-5xl mx-auto items-stretch">
<div class="feat-note">
<span class="feat-washi"></span>
<div class="flex items-center gap-2.5 mb-2.5">
<div class="feat-chip"><i data-lucide="users-round" class="w-4 h-4"></i></div>
<h3 class="font-heading font-extrabold text-base text-text-primary leading-snug">Hồ sơ gia đình</h3>
</div>
<p class="text-sm text-text-secondary leading-relaxed mb-3">
Lưu tuổi con, khu vực, phương tiện và sở thích để gợi ý đúng với nhà mình.
</p>
<div class="flex flex-wrap gap-1.5 mb-3">
<span class="feat-pill"><i data-lucide="baby" class="w-3 h-3"></i>Tuổi con</span>
<span class="feat-pill"><i data-lucide="map" class="w-3 h-3"></i>Khu vực</span>
<span class="feat-pill"><i data-lucide="car" class="w-3 h-3"></i>Phương tiện</span>
<span class="feat-pill"><i data-lucide="heart" class="w-3 h-3"></i>Sở thích</span>
</div>
<span class="feat-stat mt-auto self-start"><i data-lucide="timer" class="w-3.5 h-3.5"></i>Tạo trong 30 giây</span>
</div>
<div class="feat-note">
<span class="feat-washi"></span>
<div class="flex items-center gap-2.5 mb-2.5">
<div class="feat-chip"><i data-lucide="sparkles" class="w-4 h-4"></i></div>
<h3 class="font-heading font-extrabold text-base text-text-primary leading-snug">Gợi ý cá nhân hóa</h3>
</div>
<p class="text-sm text-text-secondary leading-relaxed mb-3">
Đề xuất 3-5 địa điểm cuối tuần phù hợp với tuổi bé, thời tiết và nhu cầu gia đình.
</p>
<div class="space-y-1.5 mt-auto">
<div class="feat-sugg"><span>🦒</span><span class="text-xs font-heading font-bold">Thảo Cầm Viên</span><span class="ml-auto text-[10px] font-bold text-primary-dark">98%</span></div>
<div class="feat-sugg"><span>🎨</span><span class="text-xs font-heading font-bold">Lớp gốm cuối tuần</span><span class="ml-auto text-[10px] font-bold text-primary-dark">91%</span></div>
</div>
</div>
<div class="feat-note">
<span class="feat-washi"></span>
<div class="flex items-center gap-2.5 mb-2.5">
<div class="feat-chip"><i data-lucide="map-pin" class="w-4 h-4"></i></div>
<h3 class="font-heading font-extrabold text-base text-text-primary leading-snug">Chi tiết địa điểm</h3>
</div>
<p class="text-sm text-text-secondary leading-relaxed mb-3">
Xem độ tuổi phù hợp, chi phí, thời lượng, ảnh thật, review và mẹo đi chơi từ phụ huynh.
</p>
<div class="flex flex-wrap gap-1.5 mt-auto">
<span class="feat-pill"><i data-lucide="baby" class="w-3 h-3"></i>Độ tuổi</span>
<span class="feat-pill"><i data-lucide="wallet" class="w-3 h-3"></i>Chi phí</span>
<span class="feat-pill"><i data-lucide="clock" class="w-3 h-3"></i>Thời lượng</span>
<span class="feat-pill"><i data-lucide="image" class="w-3 h-3"></i>Ảnh thật</span>
<span class="feat-pill"><i data-lucide="lightbulb" class="w-3 h-3"></i>Mẹo đi chơi</span>
</div>
</div>
<div class="feat-note">
<span class="feat-washi"></span>
<div class="flex items-center gap-2.5 mb-2.5">
<div class="feat-chip"><i data-lucide="calendar-check" class="w-4 h-4"></i></div>
<h3 class="font-heading font-extrabold text-base text-text-primary leading-snug">Lập kế hoạch cuối tuần</h3>
</div>
<p class="text-sm text-text-secondary leading-relaxed mb-3">
Chọn địa điểm, lưu ngày giờ, ghi chú và chuẩn bị chuyến đi cho cả nhà.
</p>
<div class="flex flex-wrap gap-1.5 mb-3">
<span class="feat-pill"><i data-lucide="calendar" class="w-3 h-3"></i>Ngày giờ</span>
<span class="feat-pill"><i data-lucide="sticky-note" class="w-3 h-3"></i>Ghi chú</span>
<span class="feat-pill"><i data-lucide="list-checks" class="w-3 h-3"></i>Soạn đồ</span>
</div>
<span class="feat-stat mt-auto self-start"><i data-lucide="bell" class="w-3.5 h-3.5"></i>Nhắc trước chuyến đi</span>
</div>
<div class="feat-note">
<span class="feat-washi"></span>
<div class="flex items-center gap-2.5 mb-2.5">
<div class="feat-chip"><i data-lucide="navigation" class="w-4 h-4"></i></div>
<h3 class="font-heading font-extrabold text-base text-text-primary leading-snug">Chỉ đường thông minh</h3>
</div>
<p class="text-sm text-text-secondary leading-relaxed mb-3">
Điều hướng đến đúng bãi đỗ xe, cổng vào hoặc vị trí thuận tiện cho gia đình có trẻ nhỏ.
</p>
<div class="flex flex-wrap gap-1.5 mb-3">
<span class="feat-pill"><i data-lucide="square-parking" class="w-3 h-3"></i>Bãi đỗ xe</span>
<span class="feat-pill"><i data-lucide="door-open" class="w-3 h-3"></i>Cổng vào</span>
</div>
<span class="feat-stat mt-auto self-start"><i data-lucide="map-pinned" class="w-3.5 h-3.5"></i>1 chạm mở bản đồ</span>
</div>
<div class="feat-note">
<span class="feat-washi"></span>
<div class="flex items-center gap-2.5 mb-2.5">
<div class="feat-chip"><i data-lucide="message-circle-heart" class="w-4 h-4"></i></div>
<h3 class="font-heading font-extrabold text-base text-text-primary leading-snug">Review từ phụ huynh</h3>
</div>
<p class="text-sm text-text-secondary leading-relaxed mb-3">
Chia sẻ trải nghiệm, ảnh, mẹo và phản hồi sau chuyến đi để giúp gia đình khác chọn tốt hơn.
</p>
<p class="font-hand font-semibold text-xl text-primary-deep bg-primary-faint border border-primary/20 rounded-lg px-3 py-1.5 -rotate-1 mb-2.5">
"Có bóng râm, dễ gửi xe!" — mẹ Bống
</p>
<div class="flex items-center gap-2 mt-auto">
<span class="feat-stat"><i data-lucide="star" class="w-3.5 h-3.5"></i>4.8/5</span>
<span class="text-[11px] text-text-tertiary font-medium">từ 1.200+ ba mẹ</span>
</div>
</div>
</div>
<p class="font-hand font-bold text-3xl text-primary-deep text-center mt-10 -rotate-1">
… làm bởi ba mẹ, cho ba mẹ ♥
</p>
</div>
</div>
</section>
<section
id="experience"
class="reveal py-12 lg:py-16 bg-white overflow-hidden"
>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center max-w-3xl mx-auto mb-8 space-y-4">
<span
class="inline-flex items-center gap-2 px-3.5 py-1.5 bg-primary-light/30 text-primary-dark rounded-full text-xs sm:text-sm font-semibold border border-primary/25"
>
Giao diện trực quan
</span>
<h2 class="text-3xl sm:text-4xl font-heading font-extrabold text-text-primary tracking-tight">
Bên trong ứng dụng <span class="text-primary-dark">cho ba mẹ bận</span>
</h2>
<p class="text-text-secondary text-base sm:text-lg">
Giao diện tối giản, tốc độ nhanh, không quảng cáo; các thao tác chính được gom gọn để
ba mẹ vừa bế con vẫn dùng được.
</p>
</div>
<div class="relative max-w-6xl mx-auto">
<button
type="button"
class="carousel-nav prev"
id="carousel-prev" data-carousel-prev
aria-label="Màn hình trước"
>
<i data-lucide="chevron-left" class="w-6 h-6"></i>
</button>
<button
type="button"
class="carousel-nav next"
id="carousel-next" data-carousel-next
aria-label="Màn hình kế tiếp"
>
<i data-lucide="chevron-right" class="w-6 h-6"></i>
</button>
<div
class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-[420px] h-[420px] bg-primary/10 rounded-full blur-3xl -z-10"
></div>
<div
class="phone-carousel"
id="phone-carousel"
role="group"
aria-roledescription="carousel"
aria-label="Các màn hình chính của app"
>
<article
class="phone-slide"
data-index="0"
data-title="Thông tin chi tiết"
data-desc="Xem đầy đủ thông tin địa điểm: độ tuổi phù hợp, thời tiết, giá vé, địa chỉ và kinh nghiệm thực tế từ phụ huynh."
aria-label="Slide 1 / 8: Thông tin chi tiết"
>
<div
class="relative w-full h-full rounded-[32px] p-[2px] shadow-lg bg-gradient-to-br from-border-default via-subtle to-ink"
>
<span
aria-hidden="true"
class="absolute -left-[2px] top-[14%] w-[2px] h-[16px] rounded-l-sm bg-gradient-to-r from-ink to-subtle z-30"
></span>
<span
aria-hidden="true"
class="absolute -left-[2px] top-[22%] w-[2px] h-[30px] rounded-l-sm bg-gradient-to-r from-ink to-subtle z-30"
></span>
<span
aria-hidden="true"
class="absolute -left-[2px] top-[31%] w-[2px] h-[30px] rounded-l-sm bg-gradient-to-r from-ink to-subtle z-30"
></span>
<span
aria-hidden="true"
class="absolute -right-[2px] top-[18%] w-[2px] h-[44px] rounded-r-sm bg-gradient-to-l from-ink to-subtle z-30"
></span>
<span
aria-hidden="true"
class="absolute -right-[2px] top-[33%] w-[2px] h-[22px] rounded-r-sm bg-gradient-to-l from-ink to-subtle z-30"
></span>
<div
class="w-full h-full rounded-[30px] p-[1px] bg-gradient-to-br from-ink via-ink to-[#27272a]"
>
<div
class="relative w-full h-full rounded-[29px] bg-black p-[3px] overflow-hidden"
>
<div
class="absolute top-1.5 left-1/2 -translate-x-1/2 w-[52px] h-[14px] bg-black rounded-full z-40 flex items-center justify-between px-1 ring-[0.5px] ring-zinc-800"
>
<div class="w-1 h-1 rounded-full bg-zinc-800"></div>
<div class="w-[3px] h-[3px] rounded-full bg-zinc-900 ring-[0.5px] ring-zinc-700"></div>
</div>
<div
class="w-full h-full rounded-[26px] bg-bg-warm overflow-hidden relative"
>
<picture>
<source
type="image/webp"
srcset="assets/images/preview-venue-detail.webp"
/>
<img
loading="eager"
fetchpriority="high"
decoding="async"
src="assets/images/preview-venue-detail.png"
alt="Màn hình chi tiết địa điểm — review, độ tuổi, giờ mở cửa"
width="310"
height="620"
class="w-full h-full object-contain object-top"
/>
</picture>
</div>
</div>
</div>
</div>
</article>
<article
class="phone-slide"
data-index="1"
data-title="Nhật ký & chia sẻ"
data-desc="Nơi ba mẹ kể lại chuyến đi của con."
aria-label="Slide 2 / 8: Nhật ký & chia sẻ"
>
<div
class="relative w-full h-full rounded-[32px] p-[2px] shadow-lg bg-gradient-to-br from-border-default via-subtle to-ink"
>
<span
aria-hidden="true"
class="absolute -left-[2px] top-[14%] w-[2px] h-[16px] rounded-l-sm bg-gradient-to-r from-ink to-subtle z-30"
></span>
<span
aria-hidden="true"
class="absolute -left-[2px] top-[22%] w-[2px] h-[30px] rounded-l-sm bg-gradient-to-r from-ink to-subtle z-30"
></span>
<span
aria-hidden="true"
class="absolute -left-[2px] top-[31%] w-[2px] h-[30px] rounded-l-sm bg-gradient-to-r from-ink to-subtle z-30"
></span>
<span
aria-hidden="true"
class="absolute -right-[2px] top-[18%] w-[2px] h-[44px] rounded-r-sm bg-gradient-to-l from-ink to-subtle z-30"
></span>
<span
aria-hidden="true"
class="absolute -right-[2px] top-[33%] w-[2px] h-[22px] rounded-r-sm bg-gradient-to-l from-ink to-subtle z-30"
></span>
<div
class="w-full h-full rounded-[30px] p-[1px] bg-gradient-to-br from-ink via-ink to-[#27272a]"
>
<div
class="relative w-full h-full rounded-[29px] bg-black p-[3px] overflow-hidden"
>
<div