-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1105 lines (1017 loc) · 71.3 KB
/
index.html
File metadata and controls
1105 lines (1017 loc) · 71.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="ko" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>이지세이프(EASY SAFE) | 스마트 안전보건관리 시스템 - 중대재해처벌법/EHS 플랫폼</title>
<meta name="description"
content="사업주는 EASY하게, 근로자는 SAFE하게. 스마트 안전관리 및 EHS 플랫폼 이지세이프. 중대재해처벌법·산업안전보건법·건설기술진흥법 법적 의무를 디지털 전환(DX)으로 100% 충족하세요.">
<meta name="keywords"
content="안전보건관리 시스템, 중대재해처벌법 대응, 스마트 안전관리, EHS 플랫폼, 위험성 평가 프로그램, TBM 작업 전 안전점검, 디지털 안전보건, 산업안전보건법 솔루션, 건설현장 안전관리 앱, 이지세이프, EASY SAFE, 보이스 입력 안전관리, 시니어 친화 안전시스템, 세이프티웍스, safetyworks">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:title" content="이지세이프(EASY SAFE) | 안전보건관리 시스템">
<meta property="og:description" content="사업주는 EASY하게, 근로자는 SAFE하게. 모바일 하나로 법적 의무 100% 충족.">
<meta property="og:url" content="https://www.easysafe.co.kr">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="이지세이프(EASY SAFE) | 안전보건관리 시스템">
<meta name="twitter:description" content="사업주는 EASY하게, 근로자는 SAFE하게. 모바일 하나로 법적 의무 100% 충족.">
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Pretendard Font -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css">
<!-- Iconify Solar & MDI -->
<script src="https://code.iconify.design/iconify-icon/2.1.0/iconify-icon.min.js"></script>
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="https://www.easysafe.co.kr/resources/main/images/favicon.png">
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "이지세이프 (EASY SAFE)",
"applicationCategory": "BusinessApplication",
"description": "안전보건관리 시스템 - 중대재해처벌법·산업안전보건법·건설기술진흥법 완벽 대응. 모바일 점검, 보이스 입력, 전자서명, 보고서 자동 생성.",
"operatingSystem": "Web, iOS, Android",
"offers": {
"@type": "Offer",
"description": "무료 상담 및 맞춤 견적 제공"
},
"provider": {
"@type": "Organization",
"name": "ZEONS",
"telephone": "070-8811-8880",
"email": "sales@zeons.co.kr"
}
}
</script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Pretendard', 'sans-serif'],
},
colors: {
brand: {
50: '#f0fdf4',
100: '#dcfce7',
400: '#4ade80',
500: '#22c55e',
600: '#16a34a',
700: '#15803d',
900: '#14532d',
},
dark: {
bg: '#0B0F19',
card: '#151C2C',
border: '#2A364F'
}
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
}
}
}
}
</script>
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body class="bg-dark-bg text-slate-200 font-sans selection:bg-brand-500/30 overflow-x-hidden w-full relative">
<div class="ambient-glow"></div>
<div class="ambient-glow right"></div>
<!-- Navigation -->
<nav class="floating-nav w-[90%] max-w-5xl glass border border-white/10 transition-all duration-300" id="navbar">
<div class="flex items-center gap-3">
<img src="assets/images/easysafe_bi_logo.png" alt="EASY SAFE Logo" class="h-8 drop-shadow-sm">
</div>
<div class="hidden md:flex gap-8 text-sm font-medium text-slate-300">
<a href="#features" class="hover:text-white transition-colors">스마트 도구</a>
<a href="#compliance" class="hover:text-white transition-colors">법적 의무</a>
<a href="#functions" class="hover:text-white transition-colors">핵심 기능</a>
<a href="#cases" class="hover:text-white transition-colors">도입 사례</a>
<a href="#target" class="hover:text-white transition-colors">도입 대상</a>
<a href="#onboarding" class="hover:text-white transition-colors">도입 절차</a>
</div>
<div class="flex items-center gap-3 ml-auto">
<a href="#contact"
class="px-5 py-2.5 rounded-full bg-white/10 hover:bg-white/20 text-white text-sm font-medium transition-colors border border-white/5 backdrop-blur-md">
도입 문의
</a>
<a href="https://works.easysafe.co.kr" target="_blank"
class="px-5 py-2.5 rounded-full bg-brand-500 hover:bg-brand-400 text-white text-sm font-bold shadow-[0_0_15px_rgba(34,197,94,0.4)] transition-all duration-300 transform hover:scale-105">
로그인
</a>
</div>
</nav>
<!-- Hero Section -->
<main class="relative w-full min-h-screen flex items-center pt-32 pb-20">
<div class="max-w-7xl mx-auto px-6 w-full flex flex-col lg:flex-row items-center justify-between gap-12">
<div class="lg:w-1/2 z-10 space-y-8 fade-up mt-10 lg:mt-0">
<div
class="inline-flex items-center gap-2 px-4 py-2 rounded-full glass border border-brand-500/30 text-brand-400 text-sm font-semibold">
<span class="relative flex h-3 w-3">
<span
class="animate-ping absolute inline-flex h-full w-full rounded-full bg-brand-400 opacity-75"></span>
<span class="relative inline-flex rounded-full h-3 w-3 bg-brand-500"></span>
</span>
스마트 안전관리 솔루션
</div>
<h1 class="text-5xl lg:text-7xl font-extrabold leading-tight tracking-tight">
사업주는 <span class="text-gradient">EASY</span>하게,<br>
근로자는 <span class="text-gradient">SAFE</span>하게
</h1>
<p class="text-lg lg:text-xl text-slate-400 leading-relaxed max-w-xl">
현장 안전, 말로 하세요. 나머지는 이지세이프가.<br>
<span class="text-white font-medium">중대재해처벌법 · 산업안전보건법 · 건설기술진흥법</span> —<br>모바일 하나로 법적 의무 100% 충족
</p>
<div class="flex flex-col sm:flex-row gap-4 pt-4">
<div class="flex flex-col gap-2">
<div class="flex flex-col sm:flex-row gap-4 w-full">
<a href="https://apps.apple.com/kr/app/easy-safe/id6751828220" target="_blank"
class="flex items-center justify-center gap-3 px-8 py-4 rounded-xl bg-white text-[#0B0F19] font-bold text-lg hover:bg-brand-50 transition-all duration-300 transform hover:-translate-y-1 shadow-xl hover:shadow-brand-500/20 active:scale-95 w-full sm:w-auto min-w-[200px]">
<iconify-icon icon="mdi:apple" class="text-2xl"></iconify-icon>
App Store
</a>
<a href="https://play.google.com/store/apps/details?id=co.kr.safetyworks.m&pli=1"
target="_blank"
class="flex items-center justify-center gap-3 px-8 py-4 rounded-xl bg-white/10 text-white font-bold text-lg hover:bg-white/20 transition-all duration-300 transform hover:-translate-y-1 backdrop-blur-md border border-white/10 shadow-xl active:scale-95 w-full sm:w-auto min-w-[200px]">
<iconify-icon icon="mdi:google-play" class="text-2xl"></iconify-icon>
Google Play
</a>
</div>
<p
class="text-sm text-slate-400 text-center sm:text-left mt-2 flex items-center justify-center sm:justify-start gap-1.5 break-keep">
<iconify-icon icon="solar:magnifer-linear"
class="text-brand-400 text-base shrink-0 mt-0.5"></iconify-icon>
앱스토어, 구글플레이에서 <strong class="text-brand-400 font-bold">"이지세이프"</strong>로 검색하세요
</p>
</div>
</div>
</div>
<div class="lg:w-1/2 relative z-10 mt-16 lg:mt-0 fade-up delay-200 perspective-1000">
<div
class="relative w-full max-w-lg mx-auto transform transition-transform duration-700 hover:rotate-y-12 hover:rotate-x-12">
<div
class="absolute inset-0 bg-gradient-to-tr from-brand-500/20 to-blue-500/20 rounded-3xl blur-2xl transform scale-105">
</div>
<img src="assets/images/hero_inclusive_real.png" alt="이지세이프 모바일 앱 시연"
class="relative w-full h-auto rounded-3xl shadow-2xl shadow-brand-500/10 border border-white/10 object-cover">
</div>
</div>
</div>
</main>
<!-- Features Section (Smart Tools) -->
<section id="features" class="w-full py-32 relative border-y border-white/5 bg-cover bg-center bg-fixed"
style="background-image: url('assets/images/mobile_app8.png');">
<!-- Dark overlay to ensure text readability -->
<div class="absolute inset-0 bg-[#0E1524]/85 backdrop-blur-sm z-0"></div>
<div class="max-w-7xl mx-auto px-6 relative z-10">
<div class="text-center mb-20 space-y-4 fade-up">
<div
class="inline-flex items-center gap-2 px-4 py-2 rounded-full glass border border-brand-500/30 text-brand-400 text-sm font-semibold mb-4">
🛠️ Smart Tools
</div>
<!--
<h2 class="text-brand-400 font-bold tracking-widest text-sm uppercase">Smart Tools</h2>
-->
<h3 class="text-4xl md:text-5xl font-bold">오직 현장을 위해,</h3>
<h3 class="text-4xl md:text-5xl font-bold">모바일 앱으로 스마트하게</h3>
<p class="text-slate-400 max-w-2xl mx-auto text-lg">시니어, 외국인근로자 누구나 쉽게 사용할 수 있는 스마트 도구를 제공합니다.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- Tool 1 -->
<div class="glass-card p-8 flex flex-col gap-6 fade-up delay-100 group">
<div
class="w-20 h-20 rounded-2xl bg-white/5 flex items-center justify-center shadow-inner border border-white/10 mx-auto group-hover:bg-brand-500/10 transition-colors duration-300">
<iconify-icon icon="solar:microphone-3-bold-duotone"
class="text-5xl text-brand-400 group-hover:scale-110 transition-transform duration-300"></iconify-icon>
</div>
<div class="text-center">
<h4 class="text-xl font-bold text-white mb-2">보이스 입력</h4>
<p class="text-slate-400 text-sm">작은 키보드를 칠 필요 없이, 말로 간편하게 위험 요인과 조치 사항을 입력합니다.</p>
</div>
</div>
<!-- Tool 2 -->
<div class="glass-card p-8 flex flex-col gap-6 fade-up delay-200 group">
<div
class="w-20 h-20 rounded-2xl bg-white/5 flex items-center justify-center shadow-inner border border-white/10 mx-auto group-hover:bg-blue-500/10 transition-colors duration-300">
<iconify-icon icon="solar:glasses-bold-duotone"
class="text-5xl text-blue-400 group-hover:scale-110 transition-transform duration-300"></iconify-icon>
</div>
<div class="text-center">
<h4 class="text-xl font-bold text-white mb-2">시니어 맞춤 UI</h4>
<p class="text-slate-400 text-sm">돋보기가 필요 없도록 크고 직관적인 화면 디자인을 제공하여 누구나 쉽게 사용합니다.</p>
</div>
</div>
<!-- Tool 3 -->
<div class="glass-card p-8 flex flex-col gap-6 fade-up delay-300 group">
<div
class="w-20 h-20 rounded-2xl bg-white/5 flex items-center justify-center shadow-inner border border-white/10 mx-auto group-hover:bg-orange-500/10 transition-colors duration-300">
<iconify-icon icon="solar:pen-new-square-bold-duotone"
class="text-5xl text-orange-400 group-hover:scale-110 transition-transform duration-300"></iconify-icon>
</div>
<div class="text-center">
<h4 class="text-xl font-bold text-white mb-2">전자서명</h4>
<p class="text-slate-400 text-sm">모바일 앱으로 전자서명을 간편하게 처리하여 업무 효율을 높입니다.</p>
</div>
</div>
<!-- Tool 4 -->
<div class="glass-card p-8 flex flex-col gap-6 fade-up delay-400 group">
<div
class="w-20 h-20 rounded-2xl bg-white/5 flex items-center justify-center shadow-inner border border-white/10 mx-auto group-hover:bg-yellow-500/10 transition-colors duration-300">
<iconify-icon icon="solar:chat-round-dots-bold-duotone"
class="text-5xl text-yellow-400 group-hover:scale-110 transition-transform duration-300"></iconify-icon>
</div>
<div class="text-center">
<h4 class="text-xl font-bold text-white mb-2">카카오 알림톡</h4>
<p class="text-slate-400 text-sm">처리해야 할 안전 업무와 조치 사항을 카카오톡, SMS, LMS 으로 알려주어 누락을 방지합니다.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Compliance Section -->
<section id="compliance" class="w-full py-32 relative">
<div class="max-w-5xl mx-auto px-6">
<div class="text-center mb-20 space-y-4 fade-up">
<div
class="inline-flex items-center gap-2 px-4 py-2 rounded-full glass border border-brand-500/30 text-brand-400 text-sm font-semibold mb-4">
👨🏽⚖️ Auto Compliance
</div>
<!--
<h2 class="text-brand-400 font-bold tracking-widest text-sm uppercase">Auto Compliance</h2>
-->
<h3 class="text-4xl md:text-5xl font-bold">쓰다 보면 지켜지는 법적 의무</h3>
<p class="text-slate-400 max-w-2xl mx-auto text-lg">이지세이프의 메뉴를 단계별로 사용하기만 해도, 사업장과 근로자를 지키는 법령이 자연스럽게
작성됩니다.</p>
</div>
<div class="space-y-0 p-8 glass-card border border-white/5">
<!-- Step 1 -->
<div class="relative pl-24 py-8 step-item step-line fade-up">
<div
class="absolute left-0 top-8 w-14 h-14 rounded-full bg-brand-500/20 flex items-center justify-center border border-brand-500/50 z-50 backdrop-blur-md shadow-[0_0_15px_rgba(34,197,94,0.3)]">
<span class="text-brand-400 font-bold text-xl relative z-10">1</span>
</div>
<h4 class="text-2xl font-bold mb-3 flex items-center gap-3">
현장 관찰 및 소통
<span class="text-xs font-semibold px-3 py-1 bg-white/10 rounded-full text-slate-300">전체
근로자</span>
</h4>
<p class="text-slate-300 mb-4 font-light">모바일로 현장 위험 요인을 찾고 등록하며, TBM 회의록에 전자서명합니다.</p>
<div class="bg-brand-900/30 border border-brand-500/20 rounded-lg p-4 flex items-start gap-4">
<iconify-icon icon="solar:check-circle-bold"
class="text-brand-400 text-2xl shrink-0 mt-0.5"></iconify-icon>
<div>
<p class="text-brand-100 font-medium text-sm lg:text-base">산업안전보건법 제5, 29, 36, 64조 작성</p>
<p class="text-brand-400/80 text-sm mt-1">유해·위험 요인 정기 점검, TBM 안전교육 및 위험성 평가 실시 인정</p>
</div>
</div>
</div>
<!-- Step 2 -->
<div class="relative pl-24 py-8 step-item step-line fade-up">
<div
class="absolute left-0 top-8 w-14 h-14 rounded-full bg-blue-500/20 flex items-center justify-center border border-blue-500/50 z-50 backdrop-blur-md shadow-[0_0_15px_rgba(59,130,246,0.3)]">
<span class="text-blue-400 font-bold text-xl relative z-10">2</span>
</div>
<h4 class="text-2xl font-bold mb-3 flex items-center gap-3">
정보 공유 및 공사 현장 관리
<span class="text-xs font-semibold px-3 py-1 bg-white/10 rounded-full text-slate-300">관리감독자,
현장소장</span>
</h4>
<p class="text-slate-300 mb-4 font-light">원청과 하청이 모여 협의체 회의록을 자동 생성하고 공사 작업전 사전 안전 교육을 실시합니다.</p>
<div class="bg-blue-900/20 border border-blue-500/20 rounded-lg p-4 flex items-start gap-4">
<iconify-icon icon="solar:check-circle-bold"
class="text-blue-400 text-2xl shrink-0 mt-0.5"></iconify-icon>
<div>
<p class="text-blue-100 font-medium text-sm lg:text-base">산업안전보건법, 중대재해처벌법, 건설기술진흥법 작성</p>
<p class="text-blue-400/80 text-sm mt-1">협의체 운영 기록 관리, 도급·용역·위탁 시 안전보건 정보 의무 준수</p>
</div>
</div>
</div>
<!-- Step 3 -->
<div class="relative pl-24 py-8 step-item step-line fade-up">
<div
class="absolute left-0 top-8 w-14 h-14 rounded-full bg-orange-500/20 flex items-center justify-center border border-orange-500/50 z-50 backdrop-blur-md shadow-[0_0_15px_rgba(249,115,22,0.3)]">
<span class="text-orange-400 font-bold text-xl relative z-10">3</span>
</div>
<h4 class="text-2xl font-bold mb-3 flex items-center gap-3">
체계 구축 및 서류 자동화
<span class="text-xs font-semibold px-3 py-1 bg-white/10 rounded-full text-slate-300">안전보건 관리자,
경영책임자</span>
</h4>
<p class="text-slate-300 mb-4 font-light">현장 점검 데이터로 위험성 평가 보고서가 자동 완성되며, 매년 법령 의무 이행 평가 점검을 수행합니다.
</p>
<div class="bg-orange-900/20 border border-orange-500/20 rounded-lg p-4 flex items-start gap-4">
<iconify-icon icon="solar:check-circle-bold"
class="text-orange-400 text-2xl shrink-0 mt-0.5"></iconify-icon>
<div>
<p class="text-orange-100 font-medium text-sm lg:text-base">중대재해처벌법 및 산안법 주요 항목 작성</p>
<p class="text-orange-400/80 text-sm mt-1">경영책임자의 안전보건 확보 의무 이행 증명, 적격 수급업체 평가 준수</p>
</div>
</div>
</div>
<!-- Step 4 -->
<div class="relative pl-24 py-8 step-item fade-up">
<div
class="absolute left-0 top-8 w-14 h-14 rounded-full bg-purple-500/20 flex items-center justify-center border border-purple-500/50 z-50 backdrop-blur-md shadow-[0_0_15px_rgba(168,85,247,0.3)]">
<span class="text-purple-400 font-bold text-xl relative z-10">4</span>
</div>
<h4 class="text-2xl font-bold mb-3 flex items-center gap-3">
공통 필수 요소
<span class="text-xs font-semibold px-3 py-1 bg-white/10 rounded-full text-slate-300">전원</span>
</h4>
<p class="text-slate-300 mb-4 font-light">모바일 전자 서명으로 신뢰성을 확보하고, 작업자의 스트레스 및 근골격계 질환을 관리합니다.</p>
<div class="bg-purple-900/20 border border-purple-500/20 rounded-lg p-4 flex items-start gap-4">
<iconify-icon icon="solar:check-circle-bold"
class="text-purple-400 text-2xl shrink-0 mt-0.5"></iconify-icon>
<div>
<p class="text-purple-100 font-medium text-sm lg:text-base">문서 책임 소재 입증 / 보건유지 의무 작성</p>
<p class="text-purple-400/80 text-sm mt-1">전자서명(중대재해처벌법 시행령 제4조), 작업 환경 개선 및 근로자 보건 관리(산안법
제5, 24조)</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ════════ Functions Section ════════ -->
<section id="functions" class="w-full relative py-32 border-t border-white/5 bg-[#0B0F19] overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-tr from-blue-900/10 to-transparent pointer-events-none z-0"></div>
<div class="max-w-7xl mx-auto px-6 relative z-10">
<div class="text-center mb-20 fade-up">
<div
class="inline-flex items-center gap-2 px-4 py-2 rounded-full glass border border-brand-500/30 text-brand-400 text-sm font-semibold mb-4">
✨ 핵심 기능
</div>
<h3 class="text-4xl md:text-5xl font-bold mb-4">누구나 쉽게, 현장에서 바로</h3>
<p class="text-slate-400 text-lg max-w-2xl mx-auto break-keep">Simple, Smart and Solve — 복잡한 안전관리를 8가지
핵심 기능으로 간단하게 해결합니다.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<!-- 1. 모바일 점검 -->
<div
class="glass-card p-8 flex flex-col gap-6 fade-up delay-100 group border border-white/5 hover:border-brand-500/50 transition-colors">
<div
class="w-16 h-16 rounded-2xl bg-white/5 flex items-center justify-center text-brand-400 text-4xl shadow-inner border border-white/10 group-hover:bg-brand-500/10 group-hover:scale-110 transition-all duration-300">
<!--
<iconify-icon icon="solar:smartphone-bold-duotone"></iconify-icon>
-->
<span class="my-emoji">📱</span>
</div>
<div>
<h4 class="text-xl font-bold text-white mb-3">모바일 점검</h4>
<p class="text-slate-400 text-sm leading-relaxed break-keep">현장에서 바로 찍고, 보고, 등록과 검수까지 스마트폰 하나로
끝내세요.</p>
</div>
</div>
<!-- 2. 시니어 맞춤 UI -->
<div
class="glass-card p-8 flex flex-col gap-6 fade-up delay-200 group border border-white/5 hover:border-blue-500/50 transition-colors">
<div
class="w-16 h-16 rounded-2xl bg-white/5 flex items-center justify-center text-blue-400 text-4xl shadow-inner border border-white/10 group-hover:bg-blue-500/10 group-hover:scale-110 transition-all duration-300">
<!--
<iconify-icon icon="solar:smartphone-update-bold-duotone"></iconify-icon>
-->
<span class="my-emoji">👓</span>
</div>
<div>
<h4 class="text-xl font-bold text-white mb-3">시니어 맞춤 UI</h4>
<p class="text-slate-400 text-sm leading-relaxed break-keep">큰 버튼으로 돋보기 없이 누구나 편하게 사용할 수 있는 직관적
화면.</p>
</div>
</div>
<!-- 3. 보이스 입력 -->
<div
class="glass-card p-8 flex flex-col gap-6 fade-up delay-300 group border border-white/5 hover:border-purple-500/50 transition-colors">
<div
class="w-16 h-16 rounded-2xl bg-white/5 flex items-center justify-center text-purple-400 text-4xl shadow-inner border border-white/10 group-hover:bg-purple-500/10 group-hover:scale-110 transition-all duration-300">
<!--
<iconify-icon icon="solar:microphone-3-bold-duotone"></iconify-icon>
-->
<span class="my-emoji">🎙️</span>
</div>
<div>
<h4 class="text-xl font-bold text-white mb-3">보이스 입력</h4>
<p class="text-slate-400 text-sm leading-relaxed break-keep">타자가 어려운 현장직을 위해 음성으로 현장 상황을 바로
기록합니다.</p>
</div>
</div>
<!-- 4. 미니게임 컨디션 체크 -->
<div
class="glass-card p-8 flex flex-col gap-6 fade-up delay-400 group border border-white/5 hover:border-orange-500/50 transition-colors">
<div
class="w-16 h-16 rounded-2xl bg-white/5 flex items-center justify-center text-orange-400 text-4xl shadow-inner border border-white/10 group-hover:bg-orange-500/10 group-hover:scale-110 transition-all duration-300">
<!--
<iconify-icon icon="solar:gamepad-bold-duotone"></iconify-icon>
-->
<span class="my-emoji">🕹️</span>
</div>
<div>
<h4 class="text-xl font-bold text-white mb-3">컨디션 체크</h4>
<p class="text-slate-400 text-sm leading-relaxed break-keep">게임으로 건강 확인! 작업자 컨디션을 매일 쉽게 체크합니다.
</p>
</div>
</div>
<!-- 5. 보고서 자동 생성 -->
<div
class="glass-card p-8 flex flex-col gap-6 fade-up delay-100 group border border-white/5 hover:border-teal-500/50 transition-colors">
<div
class="w-16 h-16 rounded-2xl bg-white/5 flex items-center justify-center text-teal-400 text-4xl shadow-inner border border-white/10 group-hover:bg-teal-500/10 group-hover:scale-110 transition-all duration-300">
<!--
<iconify-icon icon="solar:document-text-bold-duotone"></iconify-icon>
-->
<span class="my-emoji">📜️</span>
</div>
<div>
<h4 class="text-xl font-bold text-white mb-3">보고서 자동 생성</h4>
<p class="text-slate-400 text-sm leading-relaxed break-keep">현장 데이터만 입력하세요! 위험성 평가, TBM 결과까지
이지세이프가 자동 문서화합니다.</p>
</div>
</div>
<!-- 6. 모바일 전자서명 -->
<div
class="glass-card p-8 flex flex-col gap-6 fade-up delay-200 group border border-white/5 hover:border-yellow-500/50 transition-colors">
<div
class="w-16 h-16 rounded-2xl bg-white/5 flex items-center justify-center text-yellow-400 text-4xl shadow-inner border border-white/10 group-hover:bg-yellow-500/10 group-hover:scale-110 transition-all duration-300">
<!--
<iconify-icon icon="solar:pen-new-square-bold-duotone"></iconify-icon>
-->
<span class="my-emoji">✍️</span>
</div>
<div>
<h4 class="text-xl font-bold text-white mb-3">모바일 전자서명</h4>
<p class="text-slate-400 text-sm leading-relaxed break-keep">스마트폰에 쓱, 법적 효력 완성! 언제 어디서나 법정 보존문서에
서명하세요.</p>
</div>
</div>
<!-- 7. 카카오 알림톡 -->
<div
class="glass-card p-8 flex flex-col gap-6 fade-up delay-300 group border border-white/5 hover:border-pink-500/50 transition-colors">
<div
class="w-16 h-16 rounded-2xl bg-white/5 flex items-center justify-center text-pink-400 text-4xl shadow-inner border border-white/10 group-hover:bg-pink-500/10 group-hover:scale-110 transition-all duration-300">
<!--
<iconify-icon icon="solar:chat-round-dots-bold-duotone"></iconify-icon>
-->
<span class="my-emoji">💬</span>
</div>
<div>
<h4 class="text-xl font-bold text-white mb-3">카카오 알림톡</h4>
<p class="text-slate-400 text-sm leading-relaxed break-keep">단 하나의 업무 누락도 차단! 알림톡, SMS, LMS 으로
현장에 공유되는 실시간
안전업무.</p>
</div>
</div>
<!-- 8. TAG 공유 -->
<div
class="glass-card p-8 flex flex-col gap-6 fade-up delay-400 group border border-white/5 hover:border-red-500/50 transition-colors">
<div
class="w-16 h-16 rounded-2xl bg-white/5 flex items-center justify-center text-red-400 text-4xl shadow-inner border border-white/10 group-hover:bg-red-500/10 group-hover:scale-110 transition-all duration-300">
<!--
<iconify-icon icon="solar:tag-bold-duotone"></iconify-icon>
-->
<span class="my-emoji">🏷️</span>
</div>
<div>
<h4 class="text-xl font-bold text-white mb-3">TAG 공유</h4>
<p class="text-slate-400 text-sm leading-relaxed break-keep">일상 점검 내용을 태그(`#`) 기능을 사용해서 부서간 즉시
공유! 작업관리에 공유됩니다.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Case Study Section -->
<section id="cases" class="w-full bg-[#0E1524] py-32 relative border-t border-white/5 overflow-hidden">
<div
class="absolute inset-0 bg-[url('assets/images/sf_img.png')] bg-cover bg-center bg-no-repeat opacity-30 mix-blend-luminosity pointer-events-none z-0">
</div>
<div class="max-w-7xl mx-auto px-6 grid grid-cols-1 lg:grid-cols-2 gap-16 items-center relative z-10">
<div class="space-y-8 fade-up">
<div
class="inline-flex items-center gap-2 px-4 py-2 rounded-full glass border border-blue-500/30 text-blue-400 text-sm font-semibold">
<iconify-icon icon="solar:buildings-broken"></iconify-icon>대규모 통합 운영 사례
</div>
<h3 class="text-4xl md:text-5xl font-bold leading-tight">
전국 <span class="counter text-blue-400" data-count="8">8</span>개소 <span
class="text-blue-400">스타필드</span> 통합 도입
</h3>
<p class="text-lg text-slate-400 font-light leading-relaxed">
📍하남, 📍고양, 📍안성, 📍코엑스몰 등 <strong class="text-white font-semibold">전국 8개소 점포</strong> 운영, 시설(FM),
미화 등 <strong class="text-white font-semibold">총
<span class="counter" data-count="481">481</span>명의 작업자</strong>가 매일 이지세이프를 사용 중입니다.
</p>
<ul class="space-y-4">
<li class="flex gap-4">
<div
class="w-8 h-8 rounded-full bg-brand-500/20 flex items-center justify-center shrink-0 mt-1">
<iconify-icon icon="solar:check-circle-bold" class="text-brand-400"></iconify-icon>
</div>
<div>
<h5 class="text-white font-bold text-lg mb-1">안전 문화 조기 정착</h5>
<p class="text-slate-400 text-sm leading-relaxed">도입 초기부터 협력업체의 높은 참여를 이끌어내어 사업장 전반의 안전 문화
확산에 기여했습니다.</p>
</div>
</li>
</ul>
<ul class="space-y-4">
<li class="flex gap-4">
<div
class="w-8 h-8 rounded-full bg-brand-500/20 flex items-center justify-center shrink-0 mt-1">
<iconify-icon icon="solar:check-circle-bold" class="text-brand-400"></iconify-icon>
</div>
<div>
<h5 class="text-white font-bold text-lg mb-1">중대재해처벌법 대응</h5>
<p class="text-slate-400 text-sm leading-relaxed">원청-하청 통합 관리로 중대재해처벌법 도급사 책임 완벽 방어합니다.</p>
</div>
</li>
</ul>
<ul class="space-y-4">
<li class="flex gap-4">
<div
class="w-8 h-8 rounded-full bg-brand-500/20 flex items-center justify-center shrink-0 mt-1">
<iconify-icon icon="solar:check-circle-bold" class="text-brand-400"></iconify-icon>
</div>
<div>
<h5 class="text-white font-bold text-lg mb-1">행정 시간 대폭 절감</h5>
<p class="text-slate-400 text-sm leading-relaxed">위험성 평가·안전 평가를 점포별 또는 일괄 시행으로 행정 시간 대폭
절감했습니다.</p>
</div>
</li>
</ul>
</div>
<div class="grid grid-cols-2 gap-4 md:gap-6 relative fade-up delay-200">
<!-- Card 1 -->
<div
class="glass-card p-6 flex flex-col justify-center items-center relative overflow-hidden transform hover:scale-105 transition-transform duration-500 group border border-blue-500/30 text-center">
<div
class="absolute inset-0 bg-gradient-to-br from-blue-500/10 to-transparent pointer-events-none opacity-0 group-hover:opacity-100 transition-opacity duration-500">
</div>
<div class="relative z-10">
<div
class="text-4xl lg:text-5xl font-extrabold text-white mb-2 tracking-tighter drop-shadow-xl flex items-center justify-center gap-1">
<span class="counter text-gradient" data-count="8">8</span><span
class="text-2xl lg:text-3xl text-blue-400"></span>
</div>
<p class="text-blue-200/80 font-medium tracking-wide text-xs lg:text-sm">도입 현장</p>
</div>
</div>
<!-- Card 2 -->
<div
class="glass-card p-6 flex flex-col justify-center items-center relative overflow-hidden transform hover:scale-105 transition-transform duration-500 group border border-brand-500/30 text-center">
<div
class="absolute inset-0 bg-gradient-to-br from-brand-500/10 to-transparent pointer-events-none opacity-0 group-hover:opacity-100 transition-opacity duration-500">
</div>
<div class="relative z-10">
<div
class="text-4xl lg:text-5xl font-extrabold text-white mb-2 tracking-tighter drop-shadow-xl flex items-center justify-center gap-1">
<span class="counter text-gradient" data-count="481">481</span>
<span class="text-2xl lg:text-3xl text-brand-400">+</span>
</div>
<p class="text-brand-200/80 font-medium tracking-wide text-xs lg:text-sm">작업자</p>
</div>
</div>
<!-- Card 3 -->
<div
class="glass-card p-6 flex flex-col justify-center items-center relative overflow-hidden transform hover:scale-105 transition-transform duration-500 group border border-purple-500/30 text-center">
<div
class="absolute inset-0 bg-gradient-to-br from-purple-500/10 to-transparent pointer-events-none opacity-0 group-hover:opacity-100 transition-opacity duration-500">
</div>
<div class="relative z-10">
<div
class="text-4xl lg:text-5xl font-extrabold text-white mb-2 tracking-tighter drop-shadow-xl flex items-center justify-center gap-1">
<span class="counter text-gradient" data-count="6">6</span>
<span class="text-2xl lg:text-3xl text-purple-400"></span>
</div>
<p class="text-purple-200/80 font-medium tracking-wide text-xs lg:text-sm">참여 직무 분야</p>
</div>
</div>
<!-- Card 4 -->
<div
class="glass-card p-6 flex flex-col justify-center items-center relative overflow-hidden transform hover:scale-105 transition-transform duration-500 group border border-orange-500/30 text-center">
<div
class="absolute inset-0 bg-gradient-to-br from-orange-500/10 to-transparent pointer-events-none opacity-0 group-hover:opacity-100 transition-opacity duration-500">
</div>
<div class="relative z-10">
<div
class="text-4xl lg:text-5xl font-extrabold text-white mb-2 tracking-tighter drop-shadow-xl flex items-center justify-center gap-1">
<span class="counter text-gradient" data-count="85">85</span>
<span class="text-2xl lg:text-3xl text-orange-400">%</span>
</div>
<p class="text-orange-200/80 font-medium tracking-wide text-xs lg:text-sm">행정서류 업무절감</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ════════ Target Audience Section ════════ -->
<section id="target" class="w-full relative py-20 border-t border-white/5 bg-[#0B0F19] overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-t from-brand-900/10 to-transparent pointer-events-none z-0"></div>
<div class="max-w-7xl mx-auto px-6 relative z-10">
<div class="text-center mb-16 fade-up">
<div
class="inline-flex items-center gap-2 px-4 py-2 rounded-full glass border border-brand-500/30 text-brand-400 text-sm font-semibold mb-4">
🎯 도입 대상
</div>
<h3 class="text-4xl md:text-5xl font-bold mb-4">우리 회사도 해당될까?</h3>
<p class="text-slate-400 text-lg">이런 현장이라면 이지세이프가 딱 맞습니다.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Card 1 -->
<div
class="glass-card p-8 flex flex-col gap-3 fade-up delay-100 group border border-white/5 hover:border-brand-500/50 transition-all duration-300 hover:-translate-y-1">
<div
class="w-14 h-14 rounded-2xl bg-white/5 flex items-center justify-center text-brand-400 text-3xl shadow-inner border border-white/10 group-hover:bg-brand-500/10 group-hover:scale-110 transition-all duration-300">
<!-- <iconify-icon icon="solar:buildings-2-bold-duotone"></iconify-icon>-->
<span class="my-emoji">🏢</span>
</div>
<h3 class="text-xl font-bold text-white mt-3">빌딩·아파트 관리</h3>
<p class="text-slate-400 text-sm leading-relaxed break-keep">중소형 빌딩과 아파트 관리소의<br>안전점검을 모바일로 간편하게</p>
</div>
<!-- Card 2 -->
<div
class="glass-card p-8 flex flex-col gap-3 fade-up delay-200 group border border-white/5 hover:border-blue-500/50 transition-all duration-300 hover:-translate-y-1">
<div
class="w-14 h-14 rounded-2xl bg-white/5 flex items-center justify-center text-blue-400 text-3xl shadow-inner border border-white/10 group-hover:bg-blue-500/10 group-hover:scale-110 transition-all duration-300">
<!--<iconify-icon icon="solar:danger-triangle-bold-duotone"></iconify-icon>-->
<span class="my-emoji">🚧</span>
</div>
<h3 class="text-xl font-bold text-white mt-3">건설 현장</h3>
<p class="text-slate-400 text-sm leading-relaxed break-keep">공사금액 50억 미만 현장도 포함<br>건설기술진흥법 완벽 대응</p>
</div>
<!-- Card 3 -->
<div
class="glass-card p-8 flex flex-col gap-3 fade-up delay-300 group border border-white/5 hover:border-purple-500/50 transition-all duration-300 hover:-translate-y-1">
<div
class="w-14 h-14 rounded-2xl bg-white/5 flex items-center justify-center text-purple-400 text-3xl shadow-inner border border-white/10 group-hover:bg-purple-500/10 group-hover:scale-110 transition-all duration-300">
<!--<iconify-icon icon="solar:settings-bold-duotone"></iconify-icon>-->
<span class="my-emoji">🏭</span>
</div>
<h3 class="text-xl font-bold text-white mt-3">제조·시설 관리</h3>
<p class="text-slate-400 text-sm leading-relaxed break-keep">공장, 물류센터 등 현장 중심<br>근로자가 많은 사업장에 최적</p>
</div>
<!-- Card 4 -->
<div
class="glass-card p-8 flex flex-col gap-3 fade-up delay-100 group border border-white/5 hover:border-orange-500/50 transition-all duration-300 hover:-translate-y-1">
<div
class="w-14 h-14 rounded-2xl bg-white/5 flex items-center justify-center text-orange-400 text-3xl shadow-inner border border-white/10 group-hover:bg-orange-500/10 group-hover:scale-110 transition-all duration-300">
<!--<iconify-icon icon="solar:users-group-two-rounded-bold-duotone"></iconify-icon>-->
<span class="my-emoji">👷</span>
</div>
<h3 class="text-xl font-bold text-white mt-3">5인 이상 사업장</h3>
<p class="text-slate-400 text-sm leading-relaxed break-keep">2024년 1월 중대재해처벌법<br>확대 적용 사업장 필수 대응</p>
</div>
<!-- Card 5 -->
<div
class="glass-card p-8 flex flex-col gap-3 fade-up delay-200 group border border-white/5 hover:border-yellow-500/50 transition-all duration-300 hover:-translate-y-1">
<div
class="w-14 h-14 rounded-2xl bg-white/5 flex items-center justify-center text-yellow-400 text-3xl shadow-inner border border-white/10 group-hover:bg-yellow-500/10 group-hover:scale-110 transition-all duration-300">
<!--<iconify-icon icon="solar:hand-shake-bold-duotone"></iconify-icon>-->
<span class="my-emoji">🤝</span>
</div>
<h3 class="text-xl font-bold text-white mt-3">원청-하청 통합 관리</h3>
<p class="text-slate-400 text-sm leading-relaxed break-keep">협력업체까지 하나의 시스템으로<br>묶어 도급사 책임 철저 방어</p>
</div>
<!-- Card 6 -->
<div
class="glass-card p-8 flex flex-col gap-3 fade-up delay-300 group border border-white/5 hover:border-teal-500/50 transition-all duration-300 hover:-translate-y-1">
<div
class="w-14 h-14 rounded-2xl bg-white/5 flex items-center justify-center text-teal-400 text-3xl shadow-inner border border-white/10 group-hover:bg-teal-500/10 group-hover:scale-110 transition-all duration-300">
<!--<iconify-icon icon="solar:global-bold-duotone"></iconify-icon>-->
<span class="my-emoji">👴</span>
</div>
<h3 class="text-xl font-bold text-white mt-3">시니어·외국인 근로자</h3>
<p class="text-slate-400 text-sm leading-relaxed break-keep">보이스 텍스트 변환, 큰 글자 UI로<br>누구나 쉽게 참여
가능합니다.</p>
</div>
</div>
</div>
</section>
<!-- Onboarding Section -->
<section id="onboarding"
class="w-full relative py-24 md:py-32 bg-gradient-to-b from-[#0E1524] to-brand-900/20 border-t border-white/5 overflow-hidden">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="text-center mb-14 md:mb-20 fade-up">
<div
class="inline-flex items-center gap-2 px-4 py-2 rounded-full glass border border-brand-500/30 text-brand-400 text-sm font-semibold mb-4">
🚀 도입 절차
</div>
<h2 class="text-3xl md:text-4xl lg:text-5xl font-light tracking-tight leading-tight text-white mb-4">
<span class="font-bold">5단계로</span> 간편하게 시작
</h2>
<p class="text-slate-400 text-sm md:text-base leading-relaxed">복잡한 설치 없이, 빠르게 세팅하고 바로 시작하세요.</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-5 gap-6 fade-up">
<!-- Step 1 -->
<div>
<div
class="glass-card ring-1 ring-white/10 p-1.5 rounded-[1.5rem] hover:-translate-y-1 transition-transform duration-300 h-full">
<div
class="bg-white/5 rounded-[calc(1.5rem-0.375rem)] shadow-[inset_0_1px_1px_rgba(255,255,255,0.1)] p-6 md:p-8 h-full flex flex-col items-start text-left">
<div
class="w-12 h-12 rounded-full bg-brand-500/20 flex items-center justify-center mb-5 border border-brand-500/30">
<iconify-icon icon="solar:buildings-2-bold-duotone" width="22"
class="text-brand-400"></iconify-icon>
</div>
<p class="text-[11px] uppercase tracking-[0.15em] text-brand-400 font-semibold mb-2">Step 01
</p>
<h3 class="text-lg font-bold text-white mb-2 tracking-tight">고객사 등록</h3>
<p class="text-sm text-slate-400 leading-relaxed break-keep">사업지(현장) 세팅</p>
</div>
</div>
</div>
<!-- Step 2 -->
<div class="delay-100">
<div
class="glass-card ring-1 ring-white/10 p-1.5 rounded-[1.5rem] hover:-translate-y-1 transition-transform duration-300 h-full">
<div
class="bg-white/5 rounded-[calc(1.5rem-0.375rem)] shadow-[inset_0_1px_1px_rgba(255,255,255,0.1)] p-6 md:p-8 h-full flex flex-col items-start text-left">
<div
class="w-12 h-12 rounded-full bg-brand-500/20 flex items-center justify-center mb-5 border border-brand-500/30">
<iconify-icon icon="solar:user-plus-broken" width="22"
class="text-brand-400"></iconify-icon>
</div>
<p class="text-[11px] uppercase tracking-[0.15em] text-brand-400 font-semibold mb-2">Step 02
</p>
<h3 class="text-lg font-bold text-white mb-2 tracking-tight">직원·직무 등록</h3>
<p class="text-sm text-slate-400 leading-relaxed break-keep">역할별 직무 설정</p>
<p class="text-sm text-slate-400 leading-relaxed break-keep">모바일앱,엑셀양식 등록</p>
<!--
<iconify-icon icon="solar:iphone-outline" width="16" class="text-brand-400"></iconify-icon>
<iconify-icon icon="solar:file-send-outline" width="16"
class="text-brand-400"></iconify-icon></iconify-icon>
-->
</div>
</div>
</div>
<!-- Step 3 -->
<div class="delay-200">
<div
class="glass-card ring-1 ring-white/10 p-1.5 rounded-[1.5rem] hover:-translate-y-1 transition-transform duration-300 h-full">
<div
class="bg-white/5 rounded-[calc(1.5rem-0.375rem)] shadow-[inset_0_1px_1px_rgba(255,255,255,0.1)] p-6 md:p-8 h-full flex flex-col items-start text-left">
<div
class="w-12 h-12 rounded-full bg-brand-500/20 flex items-center justify-center mb-5 border border-brand-500/30">
<iconify-icon icon="solar:hand-shake-bold-duotone" width="22"
class="text-brand-400"></iconify-icon>
</div>
<p class="text-[11px] uppercase tracking-[0.15em] text-brand-400 font-semibold mb-2">Step 03
</p>
<h3 class="text-lg font-bold text-white mb-2 tracking-tight">협력업체 등록</h3>
<p class="text-sm text-slate-400 leading-relaxed break-keep">수급사 정보 입력</p>
</div>
</div>
</div>
<!-- Step 4 -->
<div class="delay-300">
<div
class="glass-card ring-1 ring-white/10 p-1.5 rounded-[1.5rem] hover:-translate-y-1 transition-transform duration-300 h-full">
<div
class="bg-white/5 rounded-[calc(1.5rem-0.375rem)] shadow-[inset_0_1px_1px_rgba(255,255,255,0.1)] p-6 md:p-8 h-full flex flex-col items-start text-left">
<div
class="w-12 h-12 rounded-full bg-brand-500/20 flex items-center justify-center mb-5 border border-brand-500/30">
<iconify-icon icon="solar:link-bold-duotone" width="22"
class="text-brand-400"></iconify-icon>
</div>
<p class="text-[11px] uppercase tracking-[0.15em] text-brand-400 font-semibold mb-2">Step 04
</p>
<h3 class="text-lg font-bold text-white mb-2 tracking-tight">직무 연결</h3>
<p class="text-sm text-slate-400 leading-relaxed break-keep">수급사-직무 매핑</p>
</div>
</div>
</div>
<!-- Step 5 -->
<div class="delay-400">
<div
class="glass-card ring-1 ring-white/10 p-1.5 rounded-[1.5rem] hover:-translate-y-1 transition-transform duration-300 h-full">
<div
class="bg-white/5 rounded-[calc(1.5rem-0.375rem)] shadow-[inset_0_1px_1px_rgba(255,255,255,0.1)] p-6 md:p-8 h-full flex flex-col items-start text-left">
<div
class="w-12 h-12 rounded-full bg-brand-500/20 flex items-center justify-center mb-5 border border-brand-500/30">
<iconify-icon icon="solar:user-check-broken" width="22"
class="text-brand-400"></iconify-icon>
</div>
<p class="text-[11px] uppercase tracking-[0.15em] text-brand-400 font-semibold mb-2">Step 05
</p>
<h3 class="text-lg font-bold text-white mb-2 tracking-tight">사용자 등록</h3>
<p class="text-sm text-slate-400 leading-relaxed break-keep">권한 설정 후 시작!</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact / Inquiry Section -->
<section id="contact" class="w-full relative py-32 bg-[#0B0F19] border-t border-white/5 overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-tl from-brand-900/20 to-transparent pointer-events-none z-0"></div>
<div class="max-w-6xl mx-auto px-6 relative z-10 flex flex-col lg:flex-row gap-16 items-center">
<!-- Left Info -->
<div class="w-full lg:w-5/12 space-y-8 fade-up text-center lg:text-left">
<div
class="inline-flex items-center gap-2 px-4 py-2 rounded-full glass border border-brand-500/30 text-brand-400 text-sm font-semibold">
<iconify-icon icon="solar:letter-bold"></iconify-icon> 도입 문의
</div>
<h3 class="text-4xl lg:text-5xl font-bold leading-tight">
지금 바로<br>시작 하세요
</h3>
<p class="text-slate-400 leading-relaxed text-lg max-w-md mx-auto lg:mx-0">
간단한 정보만 남겨주시면, 최고 전문가가 사업장 특성에 맞는 가장 효율적이고 완벽한 도입 방안을 안내해 드립니다.
</p>
<div class="pt-4 flex flex-col items-center lg:items-start gap-8">
<!-- Phone -->
<div class="flex items-center gap-5 group">
<div
class="w-14 h-14 rounded-2xl bg-brand-500/10 flex items-center justify-center text-brand-400 text-3xl shrink-0 group-hover:scale-110 transition-transform shadow-inner border border-brand-500/20">
<iconify-icon icon="solar:phone-calling-bold-duotone"></iconify-icon>
</div>
<div class="text-left">
<h5 class="text-slate-300 font-medium mb-1 text-sm tracking-widest uppercase">고객센터</h5>
<p class="text-white font-bold text-2xl flex items-baseline gap-2">
070-8811-8881 <span class="text-xs font-normal text-slate-500">(09:00 - 18:00 평일)</span>
</p>
</div>
</div>
<!-- Email -->
<div class="flex items-center gap-5 group">
<div
class="w-14 h-14 rounded-2xl bg-blue-500/10 flex items-center justify-center text-blue-400 text-3xl shrink-0 group-hover:scale-110 transition-transform shadow-inner border border-blue-500/20">
<iconify-icon icon="solar:letter-opened-bold-duotone"></iconify-icon>
</div>
<div class="text-left">
<h5 class="text-slate-300 font-medium mb-1 text-sm tracking-widest uppercase">이메일 문의</h5>
<p class="text-white font-bold text-lg">
sales@zeons.co.kr
</p>
</div>
</div>
</div>
</div>
<!-- Right Form -->
<div class="w-full lg:w-7/12 fade-up delay-200">
<div class="glass-card p-8 sm:p-10 border border-brand-500/30 relative overflow-hidden group">
<div
class="absolute inset-0 bg-gradient-to-br from-brand-500/10 to-transparent pointer-events-none opacity-0 group-hover:opacity-100 transition-opacity duration-1000">
</div>
<div class="relative z-10 flex flex-col items-center justify-center pt-8 pb-4">
<a href="https://docs.google.com/forms/d/e/1FAIpQLScyg_PqzG8CQ5bpr_Sz0QwFOefEsS98ldDRkfJcO0eBuEU55Q/viewform"
target="_blank" rel="noopener noreferrer"
class="w-full py-5 rounded-2xl bg-gradient-to-r from-brand-600 to-brand-500 text-white font-bold text-xl shadow-[0_0_30px_rgba(34,197,94,0.3)] hover:shadow-[0_0_40px_rgba(34,197,94,0.5)] transition-all duration-300 transform hover:-translate-y-2 active:scale-95 flex justify-center items-center gap-3">
<iconify-icon icon="solar:clipboard-text-bold-duotone" class="text-3xl"></iconify-icon> 도입
문의 시작하기</a>
<p class="text-slate-400 text-sm mt-6 text-center leading-relaxed">
작성해주신 소중한 정보를 바탕으로<br>최고 전문가가 신속하고 완벽한 도입 방안을 안내해 드립니다.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- ════════ FAQ Section ════════ -->
<section id="faq" class="w-full relative py-32 border-t border-white/5 bg-[#0B0F19] overflow-hidden">
<div class="absolute inset-0 bg-gradient-to-b from-blue-900/10 to-transparent pointer-events-none z-0"></div>
<div class="max-w-4xl mx-auto px-6 relative z-10">
<div class="text-center mb-16 fade-up">
<div
class="inline-flex items-center gap-2 px-4 py-2 rounded-full glass border border-brand-500/30 text-brand-400 text-sm font-semibold mb-4">
❓ 자주 묻는 질문
</div>
<h3 class="text-4xl md:text-5xl font-bold mb-4">궁금한 점이 있으신가요?</h3>
</div>
<div class="space-y-4">
<!-- FAQ 1 -->
<details
class="group glass-card rounded-2xl border border-white/5 hover:border-brand-500/30 transition-colors overflow-hidden fade-up delay-100">
<summary
class="flex items-center justify-between p-6 cursor-pointer text-white font-bold text-lg list-none [&::-webkit-details-marker]:hidden">
<span class="pr-6">스마트폰이 낯설어도 괜찮을까요?</span>
<div
class="w-8 h-8 shrink-0 rounded-full bg-white/5 flex items-center justify-center text-brand-400 group-open:rotate-180 group-open:bg-brand-500 group-open:text-dark-bg transition-all duration-300">
<iconify-icon icon="solar:alt-arrow-down-bold"></iconify-icon>
</div>
</summary>
<div class="px-6 pb-6 text-slate-400 leading-relaxed break-keep bg-white/[0.02]">
물론입니다! 이지세이프는 시니어 근로자분들을 위해 <strong class="text-white font-semibold">큼직한 글씨와 버튼의 맞춤 UI</strong>를
제공합니다.<br>
타자를 치지 않아도 <strong class="text-white font-semibold">말로 점검 내용을 입력</strong>하는 보이스 입력 기능이 있어, 스마트폰이
익숙하지 않은 분도 편하게 사용하실 수 있습니다.
</div>
</details>
<!-- FAQ 2 -->
<details
class="group glass-card rounded-2xl border border-white/5 hover:border-brand-500/30 transition-colors overflow-hidden fade-up delay-200">
<summary
class="flex items-center justify-between p-6 cursor-pointer text-white font-bold text-lg list-none [&::-webkit-details-marker]:hidden">
<span class="pr-6">하청업체(협력업체)도 함께 쓸 수 있나요?</span>
<div
class="w-8 h-8 shrink-0 rounded-full bg-white/5 flex items-center justify-center text-brand-400 group-open:rotate-180 group-open:bg-brand-500 group-open:text-dark-bg transition-all duration-300">
<iconify-icon icon="solar:alt-arrow-down-bold"></iconify-icon>
</div>
</summary>
<div class="px-6 pb-6 text-slate-400 leading-relaxed break-keep bg-white/[0.02]">
네! 이지세이프의 가장 큰 강점 중 하나입니다.<br>
<strong class="text-white font-semibold">원청(도급사)과 하청(수급사)을 하나의 시스템으로 통합</strong>하여 관리할 수
있습니다.<br>
스타필드의 경우 본사뿐 아니라 점포 운영, 시설, 보안 등 다양한 협력업체 직원 481명이 함께 사용하고 있습니다.
</div>