-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1195 lines (1079 loc) · 95.8 KB
/
index.html
File metadata and controls
1195 lines (1079 loc) · 95.8 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="ko" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>부트페이 - 쉽고 빠른 커머스 솔루션</title>
<!-- SEO Meta Tags -->
<meta name="description" content="부트페이는 안전하고 간편한 결제 솔루션을 제공합니다. 다양한 PG사 연동, 간단한 API, 실시간 결제 분석으로 비즈니스 성장을 지원합니다.">
<meta name="keywords" content="부트페이, 결제, PG, 결제솔루션, 결제API, 온라인결제, 모바일결제, 결제연동, 결제시스템">
<meta name="author" content="부트페이">
<meta name="robots" content="index, follow">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.bootpay.co.kr/">
<meta property="og:title" content="부트페이 - 쉽고 빠른 커머스 솔루션">
<meta property="og:description" content="부트페이는 쉽고 빠른 커머스 솔루션을 제공합니다. 모든 PG사 연동, 쇼핑몰 API, 데이터 분석으로 비즈니스 성장을 지원합니다.">
<meta property="og:image" content="https://bootpay.github.io/homepage_v2/assets/images/logo.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://www.bootpay.co.kr/">
<meta property="twitter:title" content="부트페이 - 쉽고 빠른 커머스 솔루션">
<meta property="twitter:description" content="부트페이는 쉽고 빠른 커머스 솔루션을 제공합니다. 모든 PG사 연동, 쇼핑몰 API, 데이터 분석으로 비즈니스 성장을 지원합니다.">
<meta property="twitter:image" content="https://bootpay.github.io/homepage_v2/assets/images/logo.png">
<!-- Canonical URL -->
<link rel="canonical" href="https://www.bootpay.co.kr/">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="assets/images/logo.png">
<link href="https://fonts.googleapis.com/css?family=Nunito:300,400,400i,600,700,800,900" rel="stylesheet">
<link rel="stylesheet" href="assets/styles/vendor/slick.css">
<link rel="stylesheet" href="assets/styles/vendor/slick-theme.css">
<link rel="stylesheet" href="assets/styles/vendor/aos.css">
<link rel="stylesheet" href="assets/styles/vendor/perfect-scrollbar.css">
<link rel="stylesheet" href="assets/styles/css/themes/lite-blue.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="custom.css">
</head>
<body class="text-left" itemscope itemtype="http://schema.org/WebPage">
<!-- Pre Loader Strat -->
<div class="loadscreen" id="preloader">
<div class="loader spinner-bubble spinner-bubble-primary">
</div>
</div>
<!-- Pre Loader end -->
<div class="app-landing-wrap landing_wrap spa-container" id="spa-content">
<div id="landing_wrap" class="landing-sky-blue">
<!--=============== Header start ================-->
<div class="main-header header-fixed-default" id="home-header">
<nav class="navbar container w-100 navbar-expand-lg navbar-transparent bg-transparent" style="padding: 15px 20px 15px 30px;">
<div class="logo" style="margin-left: 20px;">
<div class="bootpay text-white text-20 "><a href="index.html" style="color: inherit; text-decoration: none;">Bootpay</a></div>
</div>
<div class="menu-toggle navbar-toggler" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation" style="margin-right: 10px;">
<div></div>
<div></div>
<div></div>
</div>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<div class="d-flex align-items-center">
<!-- Mega menu -->
<div class="dropdown mega-menu d-none d-md-block">
</div>
<!-- / Mega menu -->
</div>
<div style="margin: auto"></div>
<div class="header-part-right">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link m-2" href="pg-integration.html">PG 연동</a>
</li>
<li class="nav-item">
<a class="nav-link m-2" href="store.html">스토어</a>
</li>
<li class="nav-item">
<a class="nav-link m-2" href="price.html">가격</a>
</li>
<li class="nav-item">
<a class="nav-link m-2 external-link" href="https://docs.bootpay.co.kr" target="_blank">개발자센터</a>
</li>
<li class="nav-item">
<a class="nav-link m-2 external-link" href="https://admin.bootpay.co.kr" target="_blank">관리자</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<!--=============== Header End ================-->
<!-- ============ Main content start ============= -->
<div class="main-content-wrap">
<!-- intro-section -->
<section id="intro-wrap" class="intro2Wrap text-white" style="position: relative;">
<!-- PC 버전 -->
<div class="d-none d-lg-block">
<div class="container" style="position: relative;">
<div class="intro-fixed-content">
<h1 class="intro2Title font-weight-bold text-42 text-white">쉽고 빠른 커머스 솔루션</h1>
<div class="intro2Description text-18">
<p class="mb-4">모든 PG 쉽게 연동<br/>
커스텀 가능한 쇼핑몰 제공<br/>
정기 구독 · 정기 배송 자동 · 수납 시스템<br/>
</p>
</div>
<div class="intro2Buttons my-8">
<a name="" id="" href="https://demos.ui-lib.com/sessions/signin" class="btn half-button btn-outline-white btn-lg pl-5 pr-5 pb-2 mr-2 mb-4 text-uppercase" href="landing.v9.html#" role="button">
PG 연동하기
</a>
<a id="" href="https://demos.ui-lib.com/sessions/signup" class="btn half-button btn-warning btn-lg pl-5 pr-5 pb-2 mb-4 text-uppercase" href="landing.v9.html#" role="button">
쇼핑몰 개설하기
</a>
</div>
</div>
<div class="intro-images-wrapper">
<img class="intro-device laptop-device" src="assets/images/2_laptop.svg" alt="부트페이 랩톱 솔루션" data-aos="fade-up" data-aos-delay="200">
<img class="intro-device tablet-device" src="assets/images/3_tablet.svg" alt="부트페이 태블릿 솔루션" data-aos="fade-up" data-aos-delay="600">
</div>
</div>
</div>
<!-- 모바일 버전 -->
<div class="d-block d-lg-none" style="padding: 20px; min-height: 100vh;">
<div class="text-center">
<h1 class="font-weight-bold text-28 text-white mb-4" style="line-height: 1.3;">
쉽고 빠른 커머스 솔루션
</h1>
<div class="text-16 text-white mb-4">
<p class="mb-1">모든 PG 쉽게 연동</p>
<p class="mb-1">커스텀 가능한 쇼핑몰 제공</p>
<p class="mb-0">정기 구독 · 정기 배송 자동 · 수납 시스템</p>
</div>
</div>
</div>
<div class="overlay"></div>
</section>
<!-- end::intro-section -->
<!-- start-problem-section -->
<section id="problem-section" class="problem-wrap p-t-b-100" style="position: relative; z-index: 1;">
<div class="container">
<div class="row">
<div data-aos="fade-up" class="col-md-12 section-header mb-5">
<h2 class="font-weight-bold">쇼핑몰과 결제, 시작부터 복잡하진 않나요?</h2>
<p class="text-18">매번 반복되는 복잡한 과정들. 이제 단순하게 시작하세요.</p>
</div>
</div>
<div class="row mb-2">
<div data-aos="fade-up" data-aos-delay="100" class="col-md-4 col-sm-12 mb-4">
<div class="card o-hidden text-center">
<div class="card-body pt-4 pb-4">
<div class="w-16 h-16 bg-neutral-100 rounded-full flex items-center justify-center mx-auto mb-4" style="width: 64px; height: 64px; background-color: #f5f5f4; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;">
<i class="eva eva-clock-outline text-30 text-neutral-600"></i>
</div>
<h4 class="card-title pt-2 text-20 font-weight-bold">긴 대기시간</h4>
<p class="card-text">PG 계약 승인까지 몇 주씩 기다려야 하고,<br/>백엔드 구축까지 몇 달이 걸림</p>
</div>
</div>
</div>
<div data-aos="fade-up" data-aos-delay="200" class="col-md-4 col-sm-12 mb-4">
<div class="card o-hidden text-center">
<div class="card-body pt-4 pb-4">
<div class="w-16 h-16 bg-neutral-100 rounded-full flex items-center justify-center mx-auto mb-4" style="width: 64px; height: 64px; background-color: #f5f5f4; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;">
<i class="eva eva-cube-outline text-30 text-neutral-600"></i>
</div>
<h4 class="card-title pt-2 text-20 font-weight-bold">복잡한 연동</h4>
<p class="card-text">연동 과정이 번거롭고<br/>원하는 대로 커스터마이징하기엔 한계</p>
</div>
</div>
</div>
<div data-aos="fade-up" data-aos-delay="300" class="col-md-4 col-sm-12 mb-4">
<div class="card o-hidden text-center">
<div class="card-body pt-4 pb-4">
<div class="w-16 h-16 bg-neutral-100 rounded-full flex items-center justify-center mx-auto mb-4" style="width: 64px; height: 64px; background-color: #f5f5f4; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;">
<i class="eva eva-trending-up-outline text-30 text-neutral-600"></i>
</div>
<h4 class="card-title pt-2 text-20 font-weight-bold">운영 부담</h4>
<p class="card-text">성장할수록 더 많은 기능과<br/>운영 리소스가 필요해짐</p>
</div>
</div>
</div>
</div>
<div class="row">
<div data-aos="fade-up" data-aos-delay="400" class="col-md-12">
<div class="card o-hidden text-center">
<div class="card-body pt-5 pb-5">
<div class="w-24 h-24 bg-neutral-200 rounded-full flex items-center justify-center mx-auto mb-4" style="width: 96px; height: 96px; background-color: #e5e7eb; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;">
<i class="eva eva-person-outline text-36 text-neutral-500"></i>
</div>
<h3 class="text-2xl text-neutral-900 mb-4 font-weight-bold">"매번 똑같은 고민의 반복..."</h3>
<p class="text-neutral-600 text-lg max-w-2xl mx-auto">결제 연동은 복잡하고, 쇼핑몰 구축은 시간이 오래 걸리고,<br/>성장하면서 필요한 기능들은 점점 늘어나는데...</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end-problem-section -->
<!-- start-solution-section -->
<section id="solution-section" class="problem-wrap p-t-b-100" style="background: linear-gradient(135deg, #fafafa 0%, #fafafa 100%);">
<div class="container">
<div class="row">
<div class="col-md-12 section-header mb-5 text-center">
<h2 class="font-weight-bold text-30 mb-4" style="color: #171717;">부담 없이 시작해서, 원하는 대로 확장하세요.</h2>
<p class="text-18" style="color: #525252; max-width: 800px; margin: 0 auto;">백엔드는 부트페이에 맡기고, 프론트는 자유롭게. 당신의 상황에 맞는 최적의 솔루션을 제공합니다.</p>
</div>
</div>
<div class="row">
<!-- 결제만 필요한 경우 -->
<div data-aos="fade-up" data-aos-delay="100" class="col-lg-4 col-md-6 col-sm-12 mb-4">
<div class="card o-hidden shadow-lg border-0 h-100" style="border-radius: 24px; transition: box-shadow 0.3s ease;">
<div class="card-body p-4 d-flex flex-column">
<div class="d-flex align-items-center justify-content-center mb-4" style="width: 64px; height: 64px; background-color: #f5f5f4; border-radius: 16px;">
<i class="eva eva-credit-card-outline text-30" style="color: #525252;"></i>
</div>
<h3 class="font-weight-bold text-24 mb-3" style="color: #171717;">결제만 필요하다면</h3>
<div class="mb-4 p-3" style="background-color: #fafafa; border-radius: 12px;">
<h4 class="font-weight-bold mb-2" style="color: #171717;">PG 연동</h4>
<p class="text-14 mb-0" style="color: #404040;">빠른 가맹, 바로 오픈</p>
</div>
<ul class="list-unstyled mb-4">
<li class="d-flex align-items-start mb-3"><i class="eva eva-checkmark-circle-2-outline mr-3 mt-1" style="color: #737373;"></i><span style="color: #404040;">모든 PG · 결제수단 통합 지원</span></li>
<li class="d-flex align-items-start mb-3"><i class="eva eva-checkmark-circle-2-outline mr-3 mt-1" style="color: #737373;"></i><span style="color: #404040;">결제 위젯 & 브랜드페이 제공</span></li>
<li class="d-flex align-items-start mb-3"><i class="eva eva-checkmark-circle-2-outline mr-3 mt-1" style="color: #737373;"></i><span style="color: #404040;">브랜드 맞춤 디자인 가능</span></li>
<li class="d-flex align-items-start mb-3"><i class="eva eva-checkmark-circle-2-outline mr-3 mt-1" style="color: #737373;"></i><span style="color: #404040;">모바일·PC 환경 대응</span></li>
</ul>
<div class="mb-4 p-3 mt-auto" style="background-color: #fafafa; border-radius: 12px;">
<p class="text-14 mb-1" style="color: #525252;">주요 고객</p>
<p class="mb-0" style="color: #262626;">기존 쇼핑몰 운영자, SaaS, 개발자</p>
</div>
<button class="btn btn-gradient btn-block py-3 text-16" style="border-radius: 12px;">
결제 연동하기
</button>
</div>
</div>
</div>
<!-- 쇼핑몰이 필요한 경우 -->
<div data-aos="fade-up" data-aos-delay="200" class="col-lg-4 col-md-6 col-sm-12 mb-4">
<div class="card o-hidden shadow-lg border-0 h-100" style="border-radius: 24px; transition: box-shadow 0.3s ease;">
<div class="card-body p-4 d-flex flex-column">
<div class="d-flex align-items-center justify-content-center mb-4" style="width: 64px; height: 64px; background-color: #f5f5f4; border-radius: 16px;">
<i class="eva eva-home-outline text-30" style="color: #525252;"></i>
</div>
<h3 class="font-weight-bold text-24 mb-3" style="color: #171717;">쇼핑몰이 필요하다면</h3>
<div class="mb-4 p-3" style="background-color: #fafafa; border-radius: 12px;">
<h4 class="font-weight-bold mb-2" style="color: #171717;">스토어</h4>
<p class="text-14 mb-0" style="color: #404040;">
복잡한 서버 없이 쇼핑몰 완성
</p>
</div>
<ul class="list-unstyled mb-4">
<li class="d-flex align-items-start mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3 mt-1" style="color: #737373;"></i>
<span style="color: #404040;">JS 한 줄로 원하는 페이지에 상품 진열</span>
</li>
<li class="d-flex align-items-start mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3 mt-1" style="color: #737373;"></i>
<span style="color: #404040;">상품 진열부터 결제까지 바로 연결</span>
</li>
<li class="d-flex align-items-start mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3 mt-1" style="color: #737373;"></i>
<span style="color: #404040;">복잡한 서버 없이 쇼핑몰 운영 가능</span>
</li>
<li class="d-flex align-items-start mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3 mt-1" style="color: #737373;"></i>
<span style="color: #404040;">구독 상품도 지원</span>
</li>
</ul>
<div class="mb-4 p-3 mt-auto" style="background-color: #fafafa; border-radius: 12px;">
<p class="text-14 mb-1" style="color: #525252;">주요 고객</p>
<p class="mb-0" style="color: #262626;">창업자, 브랜드, 크리에이터</p>
</div>
<button class="btn btn-gradient btn-block py-3 text-16" style="border-radius: 12px;">
쇼핑몰 시작하기
</button>
</div>
</div>
</div>
<!-- 구독결제가 필요한 경우 -->
<div data-aos="fade-up" data-aos-delay="300" class="col-lg-4 col-md-6 col-sm-12 mb-4">
<div class="card o-hidden shadow-lg border-0 h-100" style="border-radius: 24px; transition: box-shadow 0.3s ease;">
<div class="card-body p-4 d-flex flex-column">
<div class="d-flex align-items-center justify-content-center mb-4" style="width: 64px; height: 64px; background-color: #f5f5f4; border-radius: 16px;">
<i class="eva eva-refresh-outline text-30" style="color: #525252;"></i>
</div>
<h3 class="font-weight-bold text-24 mb-3" style="color: #171717;">구독결제가 필요하다면</h3>
<div class="mb-4 p-3" style="background-color: #fafafa; border-radius: 12px;">
<h4 class="font-weight-bold mb-2" style="color: #171717;">스토어 + 구독</h4>
<p class="text-14 mb-0" style="color: #404040;">B2B, B2C 수납 자동화 시스템</p>
</div>
<ul class="list-unstyled mb-4">
<li class="d-flex align-items-start mb-3"><i class="eva eva-checkmark-circle-2-outline mr-3 mt-1" style="color: #737373;"></i><span style="color: #404040;">정기과금/자동결제 지원</span></li>
<li class="d-flex align-items-start mb-3"><i class="eva eva-checkmark-circle-2-outline mr-3 mt-1" style="color: #737373;"></i><span style="color: #404040;">구독 관리 및 취소/재개 기능</span></li>
<li class="d-flex align-items-start mb-3"><i class="eva eva-checkmark-circle-2-outline mr-3 mt-1" style="color: #737373;"></i><span style="color: #404040;">카드/계좌 미납 관리 시나리오</span></li>
<li class="d-flex align-items-start mb-3"><i class="eva eva-checkmark-circle-2-outline mr-3 mt-1" style="color: #737373;"></i><span style="color: #404040;">SaaS·콘텐츠·멤버십에 최적화</span></li>
</ul>
<div class="mb-4 p-3 mt-auto" style="background-color: #fafafa; border-radius: 12px;">
<p class="text-14 mb-1" style="color: #525252;">주요 고객</p>
<p class="mb-0" style="color: #262626;">정기구독, 정기배송, 렌탈/리스</p>
</div>
<button class="btn btn-gradient btn-block py-3 text-16" style="border-radius: 12px;">
구독결제 시작하기
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end-solution-section -->
<!-- start-features-section -->
<section id="features-section" class="p-t-b-100 bg-white">
<div class="container">
<div class="row">
<div class="col-md-12 section-header mb-5 text-center">
<h2 class="font-weight-bold text-30 mb-4" style="color: #171717;">결제, 더 이상 제약 없이.</h2>
<p class="text-18" style="color: #525252; max-width: 800px; margin: 0 auto;">부트페이의 핵심 기능들로 복잡한 결제와 쇼핑몰 운영을 단순하게 만드세요.</p>
</div>
</div>
<!-- Payment Solution -->
<div class="row align-items-center mb-5 pb-5">
<div data-aos="fade-right" class="col-lg-6 col-md-12 mb-4">
<h3 class="font-weight-bold text-28 mb-4" style="color: #171717;">결제 솔루션</h3>
<div class="mb-4">
<div class="d-flex align-items-start mb-4">
<div class="d-flex align-items-center justify-content-center mr-3 mt-1" style="width: 32px; height: 32px; background-color: #f5f5f4; border-radius: 50%;">
<i class="eva eva-checkmark-outline" style="color: #525252;"></i>
</div>
<div>
<h4 class="font-weight-bold mb-2" style="color: #171717;">코드 한 줄로 쉽게 연동</h4>
<p style="color: #525252; margin-bottom: 0;">국내 주요 PG 모두 지원</p>
</div>
</div>
<div class="d-flex align-items-start mb-4">
<div class="d-flex align-items-center justify-content-center mr-3 mt-1" style="width: 32px; height: 32px; background-color: #f5f5f4; border-radius: 50%;">
<i class="eva eva-checkmark-outline" style="color: #525252;"></i>
</div>
<div>
<h4 class="font-weight-bold mb-2" style="color: #171717;">선택적 결제수단 구성</h4>
<p style="color: #525252; margin-bottom: 0;">위젯 안에 필요한 결제수단만 선택적으로 담을 수 있음</p>
</div>
</div>
<div class="d-flex align-items-start">
<div class="d-flex align-items-center justify-content-center mr-3 mt-1" style="width: 32px; height: 32px; background-color: #f5f5f4; border-radius: 50%;">
<i class="eva eva-checkmark-outline" style="color: #525252;"></i>
</div>
<div>
<h4 class="font-weight-bold mb-2" style="color: #171717;">브랜드 맞춤 디자인</h4>
<p style="color: #525252; margin-bottom: 0;">색상, 버튼 스타일, UX까지 브랜드에 맞게 조정 가능</p>
</div>
</div>
</div>
</div>
<div data-aos="fade-left" class="col-lg-6 col-md-12">
<div class="p-4" style="background-color: #fafafa; border-radius: 16px; display: inline-block;">
<div class="bg-white shadow-sm p-4 " style="border-radius: 12px; display: inline-block;">
<img src="assets/images/brandpay.png" alt="부트페이 쇼핑몰 설정 인터페이스" class="rounded" style="width: 100%; height: auto; max-width: 100%; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges;">
</div>
</div>
</div>
</div>
<!-- Shopping Mall Solution -->
<div class="row align-items-center mb-5 pb-5">
<div data-aos="fade-right" class="col-lg-6 col-md-12 mb-4 order-lg-2">
<h3 class="font-weight-bold text-28 mb-4" style="color: #171717;">쇼핑몰 솔루션</h3>
<div class="mb-4">
<div class="d-flex align-items-start mb-4">
<div class="d-flex align-items-center justify-content-center mr-3 mt-1" style="width: 32px; height: 32px; background-color: #f5f5f4; border-radius: 50%;">
<i class="eva eva-checkmark-outline" style="color: #525252;"></i>
</div>
<div>
<h4 class="font-weight-bold mb-2" style="color: #171717;">원하는 div에 임베드 삽입</h4>
<p style="color: #525252; margin-bottom: 0;">상품 → 장바구니 → 결제 → 알림톡 완결, 백엔드 없이 판매 가능</p>
</div>
</div>
<div class="d-flex align-items-start mb-4">
<div class="d-flex align-items-center justify-content-center mr-3 mt-1" style="width: 32px; height: 32px; background-color: #f5f5f4; border-radius: 50%;">
<i class="eva eva-checkmark-outline" style="color: #525252;"></i>
</div>
<div>
<h4 class="font-weight-bold mb-2" style="color: #171717;">구독 상품 지원</h4>
<p style="color: #525252; margin-bottom: 0;">B2B, B2C 자동 수납 시스템, 정기구독/정기배송/렌탈리스, 실패 시 미납 관리</p>
</div>
</div>
<div class="d-flex align-items-start">
<div class="d-flex align-items-center justify-content-center mr-3 mt-1" style="width: 32px; height: 32px; background-color: #f5f5f4; border-radius: 50%;">
<i class="eva eva-checkmark-outline" style="color: #525252;"></i>
</div>
<div>
<h4 class="font-weight-bold mb-2" style="color: #171717;">쉬운 커스터마이징</h4>
<p style="color: #525252; margin-bottom: 0;">백엔드는 부트페이에게 맡기고, 프론트는 자유롭게 개발</p>
</div>
</div>
</div>
</div>
<div data-aos="fade-left" class="col-lg-6 col-md-12 order-lg-1">
<div class="p-4" style="background-color: #fafafa; border-radius: 16px; display: inline-block;">
<div class="bg-white shadow-sm p-4 " style="border-radius: 12px; display: inline-block;">
<img src="assets/images/admin-product.png" alt="부트페이 쇼핑몰 설정 인터페이스" class="rounded" style="width: 100%; height: auto; max-width: 100%; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges;">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end-features-section -->
<!-- start-use-cases-section -->
<section id="use-cases-section" class="p-t-b-100" style="background-color: #fafafa;">
<div class="container">
<div class="row">
<div class="col-md-12 section-header mb-5 text-center">
<h2 class="font-weight-bold text-30 mb-4" style="color: #171717;">당신의 상황에 맞는 완벽한 솔루션</h2>
<p class="text-18" style="color: #525252; max-width: 800px; margin: 0 auto;">개발자부터 창업자까지, 모든 상황에 맞는 최적의 방법을 제공합니다.</p>
</div>
</div>
<div class="row">
<div data-aos="fade-up" data-aos-delay="100" class="col-lg-4 col-md-6 col-sm-12 mb-4">
<div class="bg-white card o-hidden shadow-lg border-0 h-100 d-flex flex-column" style="border-radius: 16px; transition: box-shadow 0.3s ease;" onmouseover="this.classList.add('shadow-xl')" onmouseout="this.classList.remove('shadow-xl')">
<div class="card-body p-4 text-center flex-grow-1 d-flex flex-column">
<div class="d-flex align-items-center justify-content-center mx-auto mb-4" style="width: 80px; height: 80px; background-color: #f5f5f4; border-radius: 16px;">
<i class="eva eva-code-outline text-36" style="color: #525252;"></i>
</div>
<h3 class="font-weight-bold text-24 mb-3" style="color: #171717;">개발자</h3>
<p class="text-16 mb-4" style="color: #525252;">PG 연동은 쉽게, 쇼핑몰 제작도 빠르게</p>
<div class="mb-4 p-3 text-left" style="background-color: #171717; border-radius: 12px;">
<div class="text-14" style="color: #a3a3a3; line-height: 1.5;">
<div>// 3줄로 결제 연동 완료</div>
<div>bootpay.request({</div>
<div> price: 29000,</div>
<div> name: "상품명"</div>
<div>})</div>
</div>
</div>
<ul class="list-unstyled text-left mb-4 flex-grow-1">
<li class="d-flex align-items-center mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3" style="color: #737373;"></i>
<span style="color: #404040;">모든 PG 연동 지원</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3" style="color: #737373;"></i>
<span style="color: #404040;">복잡한 백엔드는 부트페이에게</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3" style="color: #737373;"></i>
<span style="color: #404040;">프론트만 직접 개발</span>
</li>
</ul>
<button class="btn btn-gradient btn-block py-3 mt-auto text-16" style="border-radius: 12px;">
개발 문서 보기
</button>
</div>
</div>
</div>
<div data-aos="fade-up" data-aos-delay="200" class="col-lg-4 col-md-6 col-sm-12 mb-4">
<div class="bg-white card o-hidden shadow-lg border-0 h-100 d-flex flex-column" style="border-radius: 16px; transition: box-shadow 0.3s ease;" onmouseover="this.classList.add('shadow-xl')" onmouseout="this.classList.remove('shadow-xl')">
<div class="card-body p-4 text-center flex-grow-1 d-flex flex-column">
<div class="d-flex align-items-center justify-content-center mx-auto mb-4" style="width: 80px; height: 80px; background-color: #f5f5f4; border-radius: 16px;">
<i class="eva eva-person-outline text-36" style="color: #525252;"></i>
</div>
<h3 class="font-weight-bold text-24 mb-3" style="color: #171717;">창업자/개인</h3>
<p class="text-16 mb-4" style="color: #525252;">가입 후 즉시 오픈</p>
<div class="mb-4 p-3" style="background-color: #fafafa; border-radius: 12px;">
<div class="d-flex align-items-center justify-content-between mb-3">
<span style="color: #171717;">쇼핑몰 생성</span>
<span class="text-14" style="color: #525252;">30초 완성</span>
</div>
<div class="text-left">
<div class="d-flex align-items-center mb-2 text-14">
<i class="eva eva-checkmark-outline mr-2" style="color: #737373;"></i>
<span>상품 등록</span>
</div>
<div class="d-flex align-items-center mb-2 text-14">
<i class="eva eva-checkmark-outline mr-2" style="color: #737373;"></i>
<span>결제 설정</span>
</div>
<div class="d-flex align-items-center text-14">
<i class="eva eva-checkmark-outline mr-2" style="color: #737373;"></i>
<span>쇼핑몰 오픈</span>
</div>
</div>
</div>
<ul class="list-unstyled text-left mb-4 flex-grow-1">
<li class="d-flex align-items-center mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3" style="color: #737373;"></i>
<span style="color: #404040;">개발 지식 불필요</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3" style="color: #737373;"></i>
<span style="color: #404040;">구독 상품 지원</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3" style="color: #737373;"></i>
<span style="color: #404040;">모바일 최적화</span>
</li>
</ul>
<button class="btn btn-gradient btn-block py-3 mt-auto text-16" style="border-radius: 12px;">
쇼핑몰 만들기
</button>
</div>
</div>
</div>
<div data-aos="fade-up" data-aos-delay="300" class="col-lg-4 col-md-6 col-sm-12 mb-4">
<div class="bg-white card o-hidden shadow-lg border-0 h-100 d-flex flex-column" style="border-radius: 16px; transition: box-shadow 0.3s ease;" onmouseover="this.classList.add('shadow-xl')" onmouseout="this.classList.remove('shadow-xl')">
<div class="card-body p-4 text-center flex-grow-1 d-flex flex-column">
<div class="d-flex align-items-center justify-content-center mx-auto mb-4" style="width: 80px; height: 80px; background-color: #f5f5f4; border-radius: 16px;">
<i class="eva eva-briefcase-outline text-36" style="color: #525252;"></i>
</div>
<h3 class="font-weight-bold text-24 mb-3" style="color: #171717;">브랜드/스타트업</h3>
<p class="text-16 mb-4" style="color: #525252;">커머스 솔루션으로 안성맞춤</p>
<div class="mb-4 p-3" style="background-color: #fafafa; border-radius: 12px;">
<div class="d-flex align-items-center justify-content-between mb-3">
<span style="color: #171717;">커머스 솔루션</span>
<span class="text-14" style="color: #525252;">복수 PG 지원</span>
</div>
<div class="text-left">
<div class="d-flex align-items-center mb-2 text-14">
<i class="eva eva-checkmark-outline mr-2" style="color: #737373;"></i>
<span>B2C, B2B 모두 지원</span>
</div>
<div class="d-flex align-items-center mb-2 text-14">
<i class="eva eva-checkmark-outline mr-2" style="color: #737373;"></i>
<span>주문, 미납, 청구 관리 지원</span>
</div>
<div class="d-flex align-items-center text-14">
<i class="eva eva-checkmark-outline mr-2" style="color: #737373;"></i>
<span>문자, 알림톡 발송</span>
</div>
</div>
</div>
<ul class="list-unstyled text-left mb-4 flex-grow-1">
<li class="d-flex align-items-center mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3" style="color: #737373;"></i>
<span style="color: #404040;">팀원별 역할 관리</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3" style="color: #737373;"></i>
<span style="color: #404040;">멀티 쇼핑몰 관리</span>
</li>
<li class="d-flex align-items-center mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3" style="color: #737373;"></i>
<span style="color: #404040;">데이터 분석</span>
</li>
</ul>
<button class="btn btn-gradient btn-block py-3 mt-auto text-16" style="border-radius: 12px;">
관리자 체험하기
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end-use-cases-section -->
<!-- start-integration-section -->
<section id="integration-section" class="p-t-b-100 bg-white">
<div class="container">
<div class="row">
<div class="col-md-12 section-header mb-5 text-center">
<h2 class="font-weight-bold text-30 mb-4" style="color: #171717;">3분만에 시작하는 간단 연동</h2>
<p class="text-18" style="color: #525252; max-width: 800px; margin: 0 auto;">복잡한 설정은 이제 그만. 몇 줄의 코드나 클릭 몇 번으로 바로 시작하세요.</p>
</div>
</div>
<div class="row align-items-center mb-5 pb-5">
<div data-aos="fade-right" class="col-lg-6 col-md-12 mb-4">
<h3 class="font-weight-bold text-24 mb-4" style="color: #171717;">개발자를 위한 API</h3>
<div class="p-4" style="background-color: #171717; border-radius: 16px;">
<div class="d-flex align-items-center justify-content-between mb-3">
<div class="d-flex align-items-center">
<i class="eva eva-monitor-outline mr-2" style="color: #a3a3a3;"></i>
<span style="color: #a3a3a3;">bootpay-integration.js</span>
</div>
<div class="d-flex">
<div class="mr-1" style="width: 12px; height: 12px; background-color: #a3a3a3; border-radius: 50%;"></div>
<div class="mr-1" style="width: 12px; height: 12px; background-color: #a3a3a3; border-radius: 50%;"></div>
<div style="width: 12px; height: 12px; background-color: #a3a3a3; border-radius: 50%;"></div>
</div>
</div>
<div class="text-14" style="color: #a3a3a3; line-height: 1.6;">
<div>// 1. 부트페이 초기화</div>
<div><span style="color: #a3a3a3;">import</span> <span style="color: white;">Bootpay</span> <span style="color: #a3a3a3;">from</span> <span style="color: #a3a3a3;">'@bootpay/client-js'</span></div>
<br/>
<div>// 2. 결제 요청</div>
<div><span style="color: white;">Bootpay.request({</span></div>
<div> <span style="color: #a3a3a3;">application_id:</span> <span style="color: #a3a3a3;">'your_app_id'</span>,</div>
<div> <span style="color: #a3a3a3;">price:</span> <span style="color: #a3a3a3;">29000</span>,</div>
<div> <span style="color: #a3a3a3;">order_name:</span> <span style="color: #a3a3a3;">'프리미엄 상품'</span>,</div>
<div> <span style="color: #a3a3a3;">pg:</span> <span style="color: #a3a3a3;">'nicepay'</span></div>
<div><span style="color: white;">})</span></div>
<br/>
<div>// 3. 완료! 이제 결제 가능</div>
</div>
</div>
<div class="mt-4">
<div class="d-flex align-items-center mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3" style="color: #737373;"></i>
<span style="color: #404040;">REST API & SDK 지원</span>
</div>
<div class="d-flex align-items-center mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3" style="color: #737373;"></i>
<span style="color: #404040;">실시간 웹훅 알림</span>
</div>
<div class="d-flex align-items-center">
<i class="eva eva-checkmark-circle-2-outline mr-3" style="color: #737373;"></i>
<span style="color: #404040;">테스트 환경 제공</span>
</div>
</div>
</div>
<div data-aos="fade-left" class="col-lg-6 col-md-12">
<h3 class="font-weight-bold text-24 mb-4" style="color: #171717;">비개발자를 위한 위젯</h3>
<div class="p-4" style="background-color: #fafafa; border-radius: 16px; display: inline-block;">
<img src="assets/images/admin-widget.png" alt="부트페이 쇼핑몰 설정 인터페이스" class="rounded" style="width: 100%; height: auto; max-width: 100%;">
</div>
<div class="mt-4">
<div class="d-flex align-items-center mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3" style="color: #737373;"></i>
<span style="color: #404040;">드래그 앤 드롭으로 쉬운 설정</span>
</div>
<div class="d-flex align-items-center mb-3">
<i class="eva eva-checkmark-circle-2-outline mr-3" style="color: #737373;"></i>
<span style="color: #404040;">실시간 미리보기</span>
</div>
<div class="d-flex align-items-center">
<i class="eva eva-checkmark-circle-2-outline mr-3" style="color: #737373;"></i>
<span style="color: #404040;">자동 반응형 지원</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end-integration-section -->
<!-- start-analytics-section -->
<section id="analytics-section" class="p-t-b-80" style="background: linear-gradient(135deg, #fafafa 0%, #fafafa 100%);">
<div class="container">
<div class="row">
<div class="col-md-12 section-header mb-5 text-center">
<h2 class="font-weight-bold text-30 mb-4" style="color: #171717;">데이터 기반 성장을 위한 통합 대시보드</h2>
<p class="text-18" style="color: #525252; max-width: 800px; margin: 0 auto;">매출부터 고객 분석까지, 비즈니스 성장에 필요한 모든 데이터를 한눈에 확인하세요.</p>
</div>
</div>
<div class="row">
<div data-aos="fade-up" class="col-12">
<div class="shadow-xl p-4" style="border-radius: 24px;">
<img src="assets/images/dashboard.svg" alt="부트페이 쇼핑몰 설정 인터페이스" class="rounded" style="width: 70%; height: auto; max-width: 700px; margin: 0 auto; display: block;">
</div>
</div>
</div>
</div>
</section>
<!-- end-analytics-section -->
<!-- start-trust-section -->
<section id="trust-section" class="p-t-b-100 bg-white">
<div class="container">
<div class="row">
<div class="col-md-12 section-header mb-5 text-center">
<h2 class="font-weight-bold text-30 mb-4" style="color: #171717;">수천 개 사업자가 부트페이를 선택했습니다</h2>
<p class="text-18" style="color: #525252; max-width: 800px; margin: 0 auto;">스타트업부터 대기업까지, 신뢰할 수 있는 결제 파트너로 함께하고 있습니다.</p>
</div>
</div>
<!-- Company Logos -->
<div class="logos-container mb-5">
<!-- 첫 번째 줄 -->
<div class="logos-row logos-row-1">
<div class="logos-slide">
<div class="logo-item">
<img src="assets/images/pg/toss.png" alt="Toss" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/kakao.png" alt="KakaoPay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/nicepay.png" alt="NicePay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/kcp.png" alt="KCP" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/inicis.png" alt="INIpay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/smartro.png" alt="Smartro" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/settlebank.png" alt="SettleBank" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/payco.png" alt="Payco" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/paypal.png" alt="PayPal" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/npay.png" alt="Naver Pay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/easypay.png" alt="EasyPay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/danal.png" alt="Danal" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/lightpay.png" alt="LightPay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/kiwoom.png" alt="Kiwoom" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/mobilians.png" alt="Mobilians" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/payapp.png" alt="PayApp" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/payletter.png" alt="PayLetter" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/welcome.png" alt="Welcome" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
</div>
</div>
<!-- 두 번째 줄 -->
<div class="logos-row logos-row-2">
<div class="logos-slide">
<div class="logo-item">
<img src="assets/images/pg/paypal.png" alt="PayPal" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/npay.png" alt="Naver Pay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/easypay.png" alt="EasyPay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/danal.png" alt="Danal" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/lightpay.png" alt="LightPay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/kiwoom.png" alt="Kiwoom" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/mobilians.png" alt="Mobilians" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/payapp.png" alt="PayApp" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/payletter.png" alt="PayLetter" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/welcome.png" alt="Welcome" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/toss.png" alt="Toss" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/kakao.png" alt="KakaoPay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/nicepay.png" alt="NicePay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/kcp.png" alt="KCP" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/inicis.png" alt="INIpay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/smartro.png" alt="Smartro" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/settlebank.png" alt="SettleBank" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/payco.png" alt="Payco" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
</div>
</div>
<!-- 세 번째 줄 -->
<div class="logos-row logos-row-3">
<div class="logos-slide">
<div class="logo-item">
<img src="assets/images/pg/lightpay.png" alt="LightPay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/kiwoom.png" alt="Kiwoom" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/mobilians.png" alt="Mobilians" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/payapp.png" alt="PayApp" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/payletter.png" alt="PayLetter" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/welcome.png" alt="Welcome" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/toss.png" alt="Toss" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/kakao.png" alt="KakaoPay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/nicepay.png" alt="NicePay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/kcp.png" alt="KCP" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/inicis.png" alt="INIpay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/smartro.png" alt="Smartro" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/settlebank.png" alt="SettleBank" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/payco.png" alt="Payco" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/paypal.png" alt="PayPal" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/npay.png" alt="Naver Pay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/easypay.png" alt="EasyPay" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
<div class="logo-item">
<img src="assets/images/pg/danal.png" alt="Danal" style="height: 48px; width: auto; filter: grayscale(100%); opacity: 0.7;">
</div>
</div>
</div>
</div>
<!-- Customer Testimonials -->
<div class="row mb-5">
<div data-aos="fade-up" data-aos-delay="100" class="col-lg-4 col-md-6 mb-4">
<div class="p-4" style="background-color: #fafafa; border-radius: 16px;">
<div class="d-flex align-items-center mb-4">
<img src="https://api.dicebear.com/7.x/notionists/svg?scale=200&seed=1234" alt="Customer" class="rounded-circle mr-3" style="width: 64px; height: 64px;"/>
<div>
<h4 class="mb-1" style="color: #171717;">김대표</h4>
<p class="mb-0" style="color: #525252;">스타트업 CEO</p>
</div>
</div>
<p class="mb-3" style="color: #404040;">
"개발팀 없이 3일만에 쇼핑몰을 오픈할 수 있었어요.
구독 결제까지 자동으로 처리되니 정말 편리합니다."
</p>
<div class="d-flex" style="color: #a3a3a3;">
<i class="eva eva-star"></i>
<i class="eva eva-star"></i>
<i class="eva eva-star"></i>
<i class="eva eva-star"></i>
<i class="eva eva-star"></i>
</div>
</div>
</div>
<div data-aos="fade-up" data-aos-delay="200" class="col-lg-4 col-md-6 mb-4">
<div class="p-4" style="background-color: #fafafa; border-radius: 16px;">
<div class="d-flex align-items-center mb-4">
<img src="https://api.dicebear.com/7.x/notionists/svg?scale=200&seed=5678" alt="Customer" class="rounded-circle mr-3" style="width: 64px; height: 64px;"/>
<div>
<h4 class="mb-1" style="color: #171717;">박개발자</h4>
<p class="mb-0" style="color: #525252;">프론트엔드 개발자</p>
</div>
</div>
<p class="mb-3" style="color: #404040;">
"API 문서가 정말 잘 되어 있고,
커스터마이징 자유도가 높아서 원하는 UX를 구현할 수 있었습니다."
</p>
<div class="d-flex" style="color: #a3a3a3;">
<i class="eva eva-star"></i>
<i class="eva eva-star"></i>
<i class="eva eva-star"></i>
<i class="eva eva-star"></i>
<i class="eva eva-star"></i>
</div>
</div>
</div>
<div data-aos="fade-up" data-aos-delay="300" class="col-lg-4 col-md-6 mb-4">
<div class="p-4" style="background-color: #fafafa; border-radius: 16px;">
<div class="d-flex align-items-center mb-4">
<img src="https://api.dicebear.com/7.x/notionists/svg?scale=200&seed=9012" alt="Customer" class="rounded-circle mr-3" style="width: 64px; height: 64px;"/>
<div>
<h4 class="mb-1" style="color: #171717;">이브랜드</h4>
<p class="mb-0" style="color: #525252;">브랜드 운영팀</p>
</div>
</div>
<p class="mb-3" style="color: #404040;">
"데이터 분석 기능 덕분에 고객 행동을 더 잘 이해할 수 있게 되었고,
매출도 30% 증가했습니다."
</p>
<div class="d-flex" style="color: #a3a3a3;">
<i class="eva eva-star"></i>
<i class="eva eva-star"></i>
<i class="eva eva-star"></i>
<i class="eva eva-star"></i>
<i class="eva eva-star"></i>
</div>
</div>
</div>
</div>
<!-- Trust Stats -->
<div class="row">
<div data-aos="fade-up" class="col-12">
<div class="text-center p-4 p-md-5" style="background: linear-gradient(135deg, #fafafa 0%, #fafafa 100%); border-radius: 24px;">
<div class="row">