-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
952 lines (887 loc) · 64.7 KB
/
index.html
File metadata and controls
952 lines (887 loc) · 64.7 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
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CRF - Coding Reshape Future | Hệ Sinh Thái Cộng Hưởng Công Nghệ</title>
<!-- Meta tags for SEO -->
<meta name="description"
content="Coding Reshape Future (CRF) - Bệ phóng vững chắc cho các chuyên gia và lập trình viên IT. Xây dựng thương hiệu cá nhân thông qua sức mạnh truyền thông cộng hưởng.">
<meta name="keywords"
content="CRF, Coding Reshape Future, CNTT, IT, Lập trình, Cộng đồng IT, MCN, Truyền thông cộng hưởng">
<link rel="icon" href="./icon.png" type="image/png" />
<meta name="google-adsense-account" content="ca-pub-2759895185543227">
<!-- CSS styles & Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="./style.css?v=1.1">
</head>
<body>
<!-- Floating Glass Navigation Bar -->
<nav class="navbar" id="navbar">
<div class="container">
<a href="#home" class="logo-group"
style="display: flex; align-items: center; gap: 0.75rem; text-decoration: none;">
<img src="./icon.png" alt="CRF Logo" class="logo-img">
<div style="display: flex; flex-direction: column;">
<span class="logo-text" style="font-size: 1.3rem; line-height: 1.1; letter-spacing: 0.5px;">CRF
<span class="text-gradient">NETWORK</span></span>
<span class="logo-sub"
style="font-size: 0.65rem; color: var(--text-muted); font-weight: 500; border-left: none; padding-left: 0; text-transform: none; letter-spacing: normal;">Coding
Reshape Future</span>
</div>
</a>
<div class="nav-links" id="nav-links">
<a href="#home" class="nav-link active">Trang Chủ</a>
<a href="#about" class="nav-link">Giới Thiệu</a>
<a href="#ecosystem" class="nav-link">Hệ Sinh Thái</a>
<a href="#manifesto" class="nav-link">Lời Ngỏ</a>
<a href="#courses" class="nav-link">Khóa Học</a>
<a href="#contact" class="nav-link">Đồng Hành</a>
</div>
<button class="nav-toggle" id="nav-toggle" aria-label="Toggle menu">
<i class="fa-solid fa-bars"></i>
</button>
</div>
</nav>
<!-- Hero Section -->
<header id="home" class="hero">
<div class="container">
<div class="hero-grid">
<div class="hero-content reveal">
<span class="badge"
style="background: rgba(98, 196, 49, 0.1); color: var(--primary); border: 1px solid rgba(98, 196, 49, 0.2);">HỆ
SINH THÁI CRF</span>
<h1 class="hero-title">Kiến Tạo Tương Lai <span class="text-gradient">Công Nghệ</span> Số
</h1>
<p class="hero-description">Chúng tôi cung cấp hệ sinh thái, nền tảng cộng đồng và giải
pháp hỗ trợ toàn diện giúp lập trình viên và chuyên gia IT khẳng định vị thế độc bản.</p>
<div class="hero-slogan"
style="border-left: 2px solid var(--primary); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: var(--text-secondary); font-size: 0.95rem;">
"Chỉ cần bạn có nhiệt huyết và sẵn lòng cháy hết mình với đam mê, lập trình có thể thay đổi cả
thế giới."
</div>
<div class="hero-actions">
<a href="#contact" class="btn btn-primary">Tham Gia Ngay <i
class="fa-solid fa-arrow-right"></i></a>
<a href="#manifesto" class="btn btn-secondary">Đọc Lời Ngỏ</a>
</div>
</div>
<div class="hero-visual reveal">
<div class="hero-svg-wrapper">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" class="floating-icon">
<defs>
<linearGradient id="glow-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#62c431" stop-opacity="0.8" />
<stop offset="100%" stop-color="#20c997" stop-opacity="0.3" />
</linearGradient>
</defs>
<circle cx="100" cy="100" r="80" fill="none" stroke="url(#glow-grad)" stroke-width="1.5"
stroke-dasharray="4,4"></circle>
<circle cx="100" cy="100" r="60" fill="none" stroke="#62c431" stroke-opacity="0.2"
stroke-width="1"></circle>
<g fill="none" stroke="#62c431" stroke-opacity="0.6" stroke-width="1">
<path d="M40,70 Q100,20 160,70" stroke="#20c997"></path>
<path d="M40,130 Q100,180 160,130" stroke="#62c431"></path>
<path d="M70,40 Q20,100 70,160" stroke="#62c431"></path>
<path d="M130,40 Q180,100 130,160" stroke="#20c997"></path>
</g>
<image href="./icon.png" x="65" y="65" width="70" height="70"></image>
<circle cx="100" cy="100" r="35" fill="rgba(98, 196, 49, 0.05)" stroke="#62c431"
stroke-width="0.5"></circle>
</svg>
</div>
</div>
</div>
</div>
</header>
<!-- About Section -->
<section id="about" class="section bg-darker">
<div class="container">
<div class="section-title-wrapper reveal">
<h2 class="section-title">Về Chúng Tôi</h2>
<p class="section-subtitle">Coding Reshape Future (CRF) nỗ lực tạo dựng một môi trường phát triển toàn
diện, chia sẻ tri thức công nghệ vững vàng cho cộng đồng.</p>
<div class="accent-line"></div>
</div>
<div class="about-grid">
<div class="reveal">
<h3 style="font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--text-primary);">Chúng Tôi Là Ai?
</h3>
<p
style="color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 1.02rem; line-height: 1.6;">
Tổ chức CRF - Coding Reshape Future (CRF) là một tổ chức phi lợi nhuận, đa lĩnh vực, hướng tới
cộng đồng. Chúng tôi cung cấp các giải pháp công nghệ, giáo dục và hỗ trợ miễn phí cho những
người mới bắt đầu, những người trái ngành hoặc đang gặp khó khăn trong lĩnh vực Công nghệ thông
tin.
</p>
<div class="about-links" style="margin-top: 1.5rem;">
<a href="https://education.crfnetwork.com/" target="_blank" class="service-link"><i
class="fa-solid fa-graduation-cap" style="color: var(--primary);"></i> CRF Education</a>
<a href="https://blog.crfnetwork.com/" target="_blank" class="service-link"><i
class="fa-solid fa-book-open" style="color: var(--primary);"></i> CRF Blogger</a>
</div>
</div>
<div class="about-features reveal" style="display: flex; flex-direction: column; gap: 1.5rem;">
<div class="feature-box" style="margin-bottom: 0;">
<div class="feature-icon" style="background: rgba(98, 196, 49, 0.1); color: var(--primary);"><i
class="fa-solid fa-eye"></i></div>
<h4>Tầm Nhìn</h4>
<p style="font-size: 0.88rem; line-height: 1.5;">Khao khát tổng hợp và chia sẻ kiến thức công
nghệ, lập trình, bảo mật và pre-IT hữu ích, giúp thế hệ trẻ vững bước theo đuổi đam mê.</p>
</div>
<div class="feature-box" style="margin-bottom: 0;">
<div class="feature-icon" style="background: rgba(32, 201, 151, 0.1); color: var(--secondary);">
<i class="fa-solid fa-bullseye"></i>
</div>
<h4>Sứ Mệnh</h4>
<p style="font-size: 0.88rem; line-height: 1.5;">Xây dựng nền tảng lập trình tốt nhất cho giới
trẻ qua mô hình học tập kết hợp (blended learning) và hệ thống kiến thức chính xác, hiệu
quả.</p>
</div>
</div>
<!-- Column 3: Ý Nghĩa Logo -->
<div class="logo-explanation-card reveal glass-card"
style="border: 1px solid var(--border-color); border-radius: 16px; padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; transition: var(--transition-smooth); background: rgba(13, 16, 26, 0.4); justify-content: center;">
<div
style="display: flex; align-items: center; gap: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 1rem;">
<div class="logo-icon-wrapper"
style="width: 50px; height: 50px; background: rgba(98, 196, 49, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(98, 196, 49, 0.2);">
<img src="./icon.png" alt="CRF Logo"
style="width: 32px; height: 32px; object-fit: contain;">
</div>
<div>
<h4 style="font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin: 0;">Ý
Nghĩa Logo CRF</h4>
<span
style="font-size: 0.7rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;">Brand
Identity</span>
</div>
</div>
<div
style="font-size: 0.85rem; line-height: 1.55; color: var(--text-secondary); display: flex; flex-direction: column; gap: 0.75rem;">
<p style="margin: 0;">
<strong style="color: var(--primary);"><i class="fa-solid fa-seedling"></i> Xanh Lá Chủ
Đạo:</strong> Tượng trưng cho tính năng, sự tươi mới, đổi mới và sáng tạo không ngừng.
</p>
<p style="margin: 0;">
<strong style="color: var(--text-primary);"><i class="fa-solid fa-font"></i> Chữ CRF
Network:</strong> Sử dụng tone đen nổi bật thể hiện tính chuyên nghiệp, vững chắc và tầm
quan trọng của thương hiệu.
</p>
<p style="margin: 0;">
<strong style="color: var(--secondary);"><i class="fa-solid fa-code"></i> Biểu Tượng Phần
Mềm:</strong> Đặt phía bên trái biểu thị mối liên hệ mật thiết với công nghệ và tư duy
lập trình sáng tạo.
</p>
<p style="margin: 0;">
<strong style="color: var(--primary);"><i class="fa-solid fa-network-wired"></i> Mạch Điện &
Mạng Lưới:</strong> Hai hình mạch đối xứng và mạng lưới ở trung tâm tượng trưng cho tính
kỹ thuật, kết nối cộng đồng bền chặt của CRF.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Ecosystem Section -->
<section id="ecosystem" class="section">
<div class="container">
<div class="section-title-wrapper reveal">
<span class="badge"
style="background: rgba(var(--primary-rgb), 0.1); color: var(--primary); border: 1px solid rgba(var(--primary-rgb), 0.2);">CRF
ECOSYSTEM MAP</span>
<h2 class="section-title">Hệ Sinh Thái Đa Nền Tảng</h2>
<p class="section-subtitle">Chúng tôi vận hành trên nhiều kênh số để xây dựng môi trường học tập, kết
nối và hỗ trợ cộng đồng CNTT toàn diện nhất.</p>
<div class="accent-line"></div>
</div>
<div class="ecosystem-grid reveal">
<!-- Node 1: Youtube -->
<div class="ecosystem-node highlight-node">
<span class="ecosystem-badge">23k+ Subs</span>
<div class="ecosystem-icon"><i class="fa-brands fa-youtube"></i></div>
<h4>CRF YouTube</h4>
<p>Lộ trình học lập trình (Python, C++, Web), kiến thức mạng, bảo mật và thủ thuật công nghệ thực
chiến.</p>
<a href="https://www.youtube.com/@CodingReshapeFuture/" target="_blank" class="ecosystem-link">Truy
cập kênh <i class="fa-solid fa-arrow-right"></i></a>
</div>
<!-- Node 2: Facebook Group -->
<div class="ecosystem-node highlight-node">
<span class="ecosystem-badge">260k+ Members</span>
<div class="ecosystem-icon"><i class="fa-solid fa-users"></i></div>
<h4>Facebook Group</h4>
<p>Giải đáp thắc mắc kỹ thuật, định hướng nghề nghiệp và chia sẻ tài liệu học tập CNTT miễn phí.</p>
<a href="https://www.facebook.com/groups/itforbeginners" target="_blank" class="ecosystem-link">Tham
gia nhóm <i class="fa-solid fa-arrow-right"></i></a>
</div>
<!-- Node 3: Technical Blog -->
<div class="ecosystem-node highlight-node">
<span class="ecosystem-badge">2k+ Members</span>
<div class="ecosystem-icon"><i class="fa-solid fa-blog"></i></div>
<h4>Technical Blog</h4>
<p>Bài viết học thuật chuyên sâu về bảo mật (CEH), Linux, Windows, Cloud và AI từ các chuyên gia.
</p>
<a href="https://blog.crfnetwork.com/" target="_blank" class="ecosystem-link">Đọc bài viết <i
class="fa-solid fa-arrow-right"></i></a>
</div>
<!-- Node 4: CRF Education -->
<div class="ecosystem-node">
<span class="ecosystem-badge">Project-Based</span>
<div class="ecosystem-icon"><i class="fa-solid fa-graduation-cap"></i></div>
<h4>CRF Education</h4>
<p>Đào tạo trực tuyến ngắn hạn thực chiến, xây dựng Portfolio và hệ thống cấp chứng chỉ uy tín.</p>
<a href="https://education.crfnetwork.com/" target="_blank" class="ecosystem-link">Khám phá học viện
<i class="fa-solid fa-arrow-right"></i></a>
</div>
<!-- Node 5: Github -->
<div class="ecosystem-node">
<span class="ecosystem-badge">Open Source</span>
<div class="ecosystem-icon"><i class="fa-brands fa-github"></i></div>
<h4>GitHub Org</h4>
<p>Kho mã nguồn mở chứa các dự án mẫu, lab thực hành bảo mật và công cụ hữu ích cho nhà phát triển.
</p>
<a href="https://github.com/codingreshapefuture" target="_blank" class="ecosystem-link">Xem mã nguồn
<i class="fa-solid fa-arrow-right"></i></a>
</div>
<!-- Node 6: Fanpage -->
<div class="ecosystem-node highlight-node">
<span class="ecosystem-badge">Official News</span>
<div class="ecosystem-icon"><i class="fa-brands fa-square-facebook"></i></div>
<h4>CRF Fanpage</h4>
<p>Cập nhật tin tức sự kiện mới nhất, các chương trình hỗ trợ cộng đồng sinh viên công nghệ.</p>
<a href="https://www.facebook.com/codingreshapefuture/" target="_blank" class="ecosystem-link">Theo
dõi ngay <i class="fa-solid fa-arrow-right"></i></a>
</div>
<!-- Node 7: TikTok -->
<div class="ecosystem-node">
<span class="ecosystem-badge">Gen Z Media</span>
<div class="ecosystem-icon"><i class="fa-brands fa-tiktok"></i></div>
<h4>CRF TikTok</h4>
<p>Chia sẻ mẹo vặt máy tính, kiến thức lập trình ngắn gọn dưới dạng video dễ tiếp cận cho giới trẻ.
</p>
<a href="https://www.tiktok.com/@codingreshapefuture" target="_blank" class="ecosystem-link">Xem
video <i class="fa-solid fa-arrow-right"></i></a>
</div>
<!-- Node 8: LinkedIn -->
<div class="ecosystem-node">
<span class="ecosystem-badge">B2B Network</span>
<div class="ecosystem-icon"><i class="fa-brands fa-linkedin"></i></div>
<h4>CRF LinkedIn</h4>
<p>Cổng thông tin doanh nghiệp, kết nối đối tác, chuyên gia và mở ra cơ hội việc làm IT chất lượng.
</p>
<a href="https://www.linkedin.com/company/codingreshapefuture/" target="_blank"
class="ecosystem-link">Kết nối <i class="fa-solid fa-arrow-right"></i></a>
</div>
</div>
</div>
</section>
<!-- Manifesto / Lời Ngỏ Section -->
<section id="manifesto" class="section">
<div class="container">
<div class="section-title-wrapper reveal">
<span class="badge">Founder's Message</span>
<h2 class="section-title">Tại Sao Người Giỏi Vẫn Cần Một "Mái Nhà"?</h2>
<p class="section-subtitle">Góc nhìn chiến lược về tầm nhìn dài hạn và sức mạnh của Truyền Thông Cộng
Hưởng (Synergistic Branding) tạo dựng những Thương hiệu cá nhân (Personal Branding).</p>
<div class="accent-line"></div>
</div>
<div class="manifesto-layout">
<div class="manifesto-editor glass-card reveal">
<div class="manifesto-header-block">
<h3 class="manifesto-title">BÀI TOÁN TẦM NHÌN VỀ XÂY DỰNG THƯƠNG HIỆU CÁ NHÂN</h3>
<div class="manifesto-meta">
<span><i class="fa-solid fa-user"></i> Thiên Phong</span>
<span><i class="fa-solid fa-calendar"></i> Năm 2026</span>
<span><i class="fa-solid fa-bookmark"></i> Tâm thư sáng lập</span>
</div>
</div>
<div class="manifesto-body">
<p>Có một câu hỏi mà tôi thấy rất nhiều người thắc mắc: <strong>Tại sao nhiều KOL, KOC nổi
tiếng, sở hữu mức thu nhập khủng, sức ảnh hưởng đôi khi lấn át cả công ty mẹ, nhưng họ
vẫn chấp nhận đi làm và gắn bó với một tổ chức truyền thông (như Schannel chẳng hạn)
thay vì tự lập đế chế riêng?</strong></p>
<p>Với những người đi đường dài, câu trả lời nằm ở hai chữ: <strong>Tầm nhìn</strong>.</p>
<p>Khi bạn có một tầm nhìn đủ rộng, bạn sẽ hiểu được sức mạnh khổng lồ của <strong>Truyền thông
cộng hưởng (Synergistic Branding)</strong>.</p>
<div class="manifesto-section">
<h4 class="manifesto-section-title"><span class="text-gradient">1.</span> Sự thật về con
đường đi một mình</h4>
<p>Gần một thập kỷ quan sát, cọ xát với ngành truyền thông và làm việc cùng nhiều chuyên gia
đầu ngành, tôi nhận ra một sự thật phũ phàng: Việc tự xây dựng Thương hiệu cá nhân
(Personal Brand) từ con số 0 là một con đường cực kỳ dốc. Ngay cả khi bạn may mắn có một
nội dung "viral", nếu thiếu đi một bệ phóng cộng đồng vững chắc (Community Brand), sự
nổi tiếng đó rất dễ bay hơi và hiếm khi tạo ra sức nặng chuyển đổi thực sự.</p>
<p>Theo báo cáo của Ping Network về nền kinh tế sáng tạo, <em>"Sáng tạo nội dung chỉ là một
phần của hành trình"</em>. Đi một mình đồng nghĩa với việc bạn phải gồng gánh tất
cả: từ ý tưởng, sản xuất, tối ưu hóa đa nền tảng, đến việc đàm phán hợp đồng thương mại
và quản trị rủi ro. Đó là lý do những nhà phát triển thông minh chọn đứng trong một hệ
sinh thái (Media Partner/MCN) để có người "đỡ đần" cơ sở hạ tầng.</p>
<p>Hãy nhìn cách nền tảng Schannel hợp tác cùng Cục Thông tin đối ngoại quảng bá Bảo tàng
Lịch sử Quân sự Việt Nam đạt hơn 10 triệu lượt xem chỉ với 15 nội dung. Đó là ngưỡng lan
tỏa mà một cá nhân đơn độc cực kỳ khó để tự chạm tới nếu không có sức mạnh cộng hưởng.
Đi một mình có thể nhanh, nhưng để tạo ra tiếng vang sâu rộng và bền vững, bạn cần "cộng
hưởng xã hội".</p>
</div>
<div class="manifesto-section">
<h4 class="manifesto-section-title"><span class="text-gradient">2.</span> Bệ phóng từ sự
thấu hiểu cộng đồng</h4>
<p>Đó cũng chính là triết lý cốt lõi mà tôi và những người cộng sự đang theo đuổi tại
<strong>Coding Reshape Future (CRF)</strong>.
</p>
<p>Dù CRF khởi điểm là một tổ chức phi lợi nhuận (Non-profit Organization), nhưng qua hành
trình nỗ lực cống hiến bền bỉ cho cộng đồng CNTT tính đến năm 2026 này, chúng tôi đã
tích lũy được khối lượng <em>"Community Insight"</em> vô cùng sâu sắc cùng mạng lưới
networking đối tác lớn. Chúng tôi hiểu thị trường cần gì, và dùng chính sức mạnh đó làm
bệ phóng cho từng cá nhân tỏa sáng.</p>
<p>Tại CRF, tôi luôn tin rằng mỗi người là một mảnh ghép độc bản với thế mạnh riêng biệt.
Chúng tôi không đúc mọi người vào chung một khuôn. Thay vào đó, các bạn được trao quyền
làm chủ và hoàn toàn chủ động định hướng sự phát triển dựa trên chính điểm mạnh của
mình.</p>
</div>
<div class="manifesto-section">
<h4 class="manifesto-section-title"><span class="text-gradient">3.</span> Vòng lặp cùng
thắng và những con số biết nói</h4>
<p>Nếu bạn đọc bài chia sẻ tâm huyết trên feed của Mạnh Hiếu kể về hành trình và sự
nỗ lực của cậu ấy tại cộng đồng, hay nhìn vào con đường của Quang Vinh, Việt Trung và cả
chính tôi – bạn sẽ thấy mỗi người dấn thân vào một mảng chuyên môn, một ngách nội dung
riêng và là một mảnh ghép thành công.</p>
<p>Nhưng điểm chung của chúng tôi là gì?</p>
<p
style="padding-left: 1rem; border-left: 2px solid var(--primary); margin: 0.5rem 0; font-style: italic;">
• Chúng tôi học hỏi lẫn nhau.<br>
• Chúng tôi khai thác tối đa tài nguyên và tiềm năng từ môi trường của CRF.<br>
• Và đơn giản nhất: Chúng tôi có thể tự hào vì là "Người của
CRF".
</p>
<p>Chính cái "title" ấy, cộng hưởng cùng danh tiếng của tổ chức, là một chứng chỉ bảo chứng
năng lực, giúp từng thành viên tự tin khẳng định vị thế, mở rộng tệp khán giả và xây
dựng một Personal Brand cực kỳ sắc bén. Bạn dùng uy tín của tổ chức để bẩy bản thân lên,
và ngược lại, thành tựu của bạn tiếp tục làm giàu thêm cho danh tiếng chung. Đó là một
vòng lặp win win.</p>
<p>Các số liệu toàn cầu gần đây đã chứng minh sức mạnh của mô hình này:</p>
<ul
style="list-style-type: none; padding-left: 0; display: flex; flex-direction: column; gap: 0.75rem; margin: 1rem 0;">
<li style="display: flex; gap: 0.5rem; align-items: flex-start;">
<i class="fa-solid fa-square-poll-vertical"
style="color: var(--primary); margin-top: 0.25rem;"></i>
<span>Thống kê từ chuyên trang <strong>Forbes / DSMN8</strong> chỉ ra:
<strong>84%</strong> người tiêu dùng tin rằng danh tiếng của một tổ chức được
củng cố và định hình nhờ chính thương hiệu cá nhân của đội ngũ nhân sự.</span>
</li>
<li style="display: flex; gap: 0.5rem; align-items: flex-start;">
<i class="fa-solid fa-chart-line"
style="color: var(--primary); margin-top: 0.25rem;"></i>
<span>Nghiên cứu từ <strong>Hinge Marketing</strong> khẳng định: Những chuyên gia
đạt ngưỡng "Global Superstar" (có thương hiệu cá nhân kết hợp cùng bệ phóng tổ
chức có độ phủ sóng lớn) sở hữu mức thù lao và khả năng tạo ra giá trị chuyển
đổi cao gấp <strong>13 lần</strong> so với những người có năng lực tương đương
nhưng chỉ đi một mình trong im lặng.</span>
</li>
</ul>
</div>
<div class="manifesto-section">
<h4 class="manifesto-section-title"><span class="text-gradient">4.</span> Lời mời gọi đến
những người cùng chung tầm nhìn</h4>
<p>Thị trường công nghệ luôn biến động, nhưng giá trị của một <em>"Thương hiệu cộng đồng"
(Community Brand)</em> thì luôn sinh lời. Nếu bạn là một cá nhân trong ngành IT có
khát vọng, có năng lực, đừng chọn cách tốn 5 năm để tự xây một cái tên trong cô độc, khi
bạn có thể đi cùng một tập thể để làm điều đó hiệu quả hơn gấp bội.</p>
<p>Hãy bước vào sân chơi này cùng chúng tôi. Trở thành một phần của CRF, chung tay xây dựng
cộng đồng CNTT vững mạnh, và quan trọng nhất: Được hưởng lợi trực tiếp từ sức mạnh
branding, mạng lưới networking của các đối tác lớn và toàn bộ hệ sinh thái mà CRF đang
sở hữu.</p>
<div class="manifesto-highlight-quote">
"Tầm nhìn của bạn đến đâu, sân khấu của bạn sẽ lớn đến đó."
</div>
</div>
<div class="manifesto-signature">
<span class="signature-name">Thiên Phong</span>
<span class="signature-title">CEO & Founder, Coding Reshape Future</span>
</div>
<div class="manifesto-footnotes"
style="font-size: 0.75rem; color: var(--text-muted); border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 1rem;">
<em>(Nguồn tham khảo số liệu được sử dụng trong lập luận: Hinge Marketing "Visible Expertise
Report" về sức mạnh thu nhập của Personal Brand; DSMN8/Forbes Report về mức độ ảnh hưởng
của nhân sự đến danh tiếng công ty; Báo cáo từ hệ sinh thái Ping Network về mô hình
MCN).</em>
</div>
</div>
</div>
<div class="manifesto-side">
<!-- Community Metrics Card -->
<div class="info-card glass-card reveal" style="border-left: 3px solid var(--primary);">
<span
style="font-size: 0.7rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; display: inline-block; margin-bottom: 0.5rem;">SỨC
MẠNH CỘNG ĐỒNG</span>
<h4 class="info-card-title" style="font-size: 1.1rem; margin-bottom: 0.75rem;"><i
class="fa-solid fa-users"></i> Hiệu Quả Truyền Thông</h4>
<p
style="font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.4;">
Các chỉ số lan tỏa và kết nối thực tế trong mạng lưới hệ sinh thái CRF:
</p>
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1rem;">
<div
style="background: rgba(255, 255, 255, 0.02); padding: 0.75rem; border-radius: 8px; border: 1px solid var(--border-color); text-align: center;">
<div style="font-size: 1.5rem; font-weight: 800; color: var(--primary);"
class="stat-counter" data-target="10" data-suffix="M+">10M+</div>
<div style="font-size: 0.65rem; color: var(--text-muted); font-weight: 600;">LƯỢT TIẾP
CẬN</div>
</div>
<div
style="background: rgba(255, 255, 255, 0.02); padding: 0.75rem; border-radius: 8px; border: 1px solid var(--border-color); text-align: center;">
<div style="font-size: 1.5rem; font-weight: 800; color: var(--secondary);"
class="stat-counter" data-target="280" data-suffix="k+">280k+</div>
<div style="font-size: 0.65rem; color: var(--text-muted); font-weight: 600;">MEMBERS &
FOLLOWERS</div>
</div>
<div
style="background: rgba(255, 255, 255, 0.02); padding: 0.75rem; border-radius: 8px; border: 1px solid var(--border-color); text-align: center;">
<div style="font-size: 1.5rem; font-weight: 800; color: var(--secondary);"
class="stat-counter" data-target="50" data-suffix="k+">50k+</div>
<div style="font-size: 0.65rem; color: var(--text-muted); font-weight: 600;">HỌC VIÊN
HOẠT ĐỘNG</div>
</div>
<div
style="background: rgba(255, 255, 255, 0.02); padding: 0.75rem; border-radius: 8px; border: 1px solid var(--border-color); text-align: center;">
<div style="font-size: 1.5rem; font-weight: 800; color: var(--primary);"
class="stat-counter" data-target="30" data-suffix="+">30+</div>
<div style="font-size: 0.65rem; color: var(--text-muted); font-weight: 600;">DỰ ÁN MIỄN
PHÍ</div>
</div>
</div>
</div>
<!-- Stats Highlights Card -->
<div class="info-card glass-card reveal" style="border-left: 3px solid var(--secondary);">
<span
style="font-size: 0.7rem; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.05em; display: inline-block; margin-bottom: 0.5rem;">SỐ
LIỆU BẢO CHỨNG</span>
<h4 class="info-card-title" style="font-size: 1.1rem; margin-bottom: 0.75rem;"><i
class="fa-solid fa-chart-line"></i> Đòn Bẩy Uy Tín</h4>
<p
style="font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.4;">
Tác động kép giữa thương hiệu cá nhân và bệ phóng của tổ chức:
</p>
<div style="display: flex; flex-direction: column; gap: 0.75rem;">
<div
style="display: flex; align-items: center; gap: 0.75rem; background: rgba(255, 255, 255, 0.02); padding: 0.5rem 0.75rem; border-radius: 8px; border: 1px solid var(--border-color);">
<span
style="font-size: 1.3rem; font-weight: 800; color: var(--primary); min-width: 60px; display: inline-block;"
class="stat-counter" data-target="84" data-suffix="%">84%</span>
<span style="font-size: 0.7rem; color: var(--text-secondary); line-height: 1.2;">Tin
tưởng danh tiếng tổ chức qua nhân sự (Forbes)</span>
</div>
<div
style="display: flex; align-items: center; gap: 0.75rem; background: rgba(255, 255, 255, 0.02); padding: 0.5rem 0.75rem; border-radius: 8px; border: 1px solid var(--border-color);">
<span
style="font-size: 1.3rem; font-weight: 800; color: var(--secondary); min-width: 60px; display: inline-block;"
class="stat-counter" data-target="13" data-suffix="x">13x</span>
<span style="font-size: 0.7rem; color: var(--text-secondary); line-height: 1.2;">Thu
nhập & giá trị chuyên gia bệ phóng (Hinge)</span>
</div>
</div>
</div>
<!-- Comparison Quick Card -->
<div class="info-card glass-card reveal" style="border-left: 3px solid rgba(255, 255, 255, 0.2);">
<h4 class="info-card-title" style="font-size: 1.1rem; margin-bottom: 0.75rem;"><i
class="fa-solid fa-shield-halved"></i> Lựa Chọn Hành Trình</h4>
<div style="display: flex; flex-direction: column; gap: 0.75rem;">
<div
style="font-size: 0.8rem; border-bottom: 1px solid var(--border-color); padding-bottom: 0.5rem;">
<strong style="color: #ef4444;"><i class="fa-solid fa-circle-xmark"></i> TỰ ĐI MỘT
MÌNH</strong>
<p style="font-size: 0.75rem; color: var(--text-muted); margin: 0.2rem 0 0;">Quá tải vận
hành hạ tầng, nổi tiếng ngắn hạn dễ bay hơi.</p>
</div>
<div style="font-size: 0.8rem;">
<strong style="color: var(--primary);"><i class="fa-solid fa-circle-check"></i> ĐI CÙNG
CRF</strong>
<p style="font-size: 0.75rem; color: var(--text-muted); margin: 0.2rem 0 0;">Thừa hưởng
bệ phóng danh tiếng kép, tập trung 100% chuyên môn.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CRF Course Explorer Section -->
<section id="courses" class="section bg-darker">
<div class="container">
<div class="section-title-wrapper reveal">
<span class="badge"
style="background: rgba(var(--primary-rgb), 0.1); color: var(--primary); border: 1px solid rgba(var(--primary-rgb), 0.2);">CRF
EDUCATION</span>
<h2 class="section-title">Khóa Học Thực Chiến</h2>
<p class="section-subtitle">Chương trình đào tạo ngắn hạn, thực hành hướng dự án (Project-Based) giúp
bạn chuẩn bị tốt nhất hành trang sự nghiệp.</p>
<div class="accent-line"></div>
</div>
<!-- Tab Filters -->
<div class="course-explorer reveal">
<div class="course-tabs">
<button class="course-tab active" data-filter="all">Tất Cả</button>
<button class="course-tab" data-filter="coding">Lập Trình</button>
<button class="course-tab" data-filter="system">Hệ Thống & Cloud</button>
<button class="course-tab" data-filter="network">Mạng & Bảo Mật</button>
</div>
<!-- Courses Grid -->
<div class="courses-grid">
<!-- CMS -->
<div class="course-card" data-category="coding">
<div class="course-header">
<span class="course-code">CMS</span>
<span class="course-type-badge"><i class="fa-solid fa-laptop-code"></i> Thực hành</span>
</div>
<h3>Web CMS & WordPress</h3>
<p>Lộ trình xây dựng, quản trị và tối ưu website, blog chuyên nghiệp với mã nguồn mở WordPress.
</p>
<div class="course-footer">
<a href="https://education.crfnetwork.com/CMS" target="_blank"
class="course-action-link">Tài liệu học <i
class="fa-solid fa-arrow-up-right-from-square"></i></a>
<a href="https://www.youtube.com/playlist?list=PLRz-2ltlXLUIr1oKxZrPoFzctXAUZOwD_"
target="_blank"
style="font-size: 0.85rem; color: #ff0000; font-weight: 600; text-decoration: none;"><i
class="fa-brands fa-youtube"></i> Video</a>
</div>
</div>
<!-- PYT -->
<div class="course-card" data-category="coding">
<div class="course-header">
<span class="course-code">PYT</span>
<span class="course-type-badge"><i class="fa-solid fa-laptop-code"></i> Thực hành</span>
</div>
<h3>Lập Trình Python</h3>
<p>Nền tảng ngôn ngữ Python, ứng dụng tự động hóa tác vụ, scripting và phân tích dữ liệu cơ bản.
</p>
<div class="course-footer">
<a href="https://education.crfnetwork.com/PYT" target="_blank"
class="course-action-link">Tài liệu học <i
class="fa-solid fa-arrow-up-right-from-square"></i></a>
<span style="font-size: 0.8rem; color: var(--text-muted);">Sắp khai giảng</span>
</div>
</div>
<!-- CPP -->
<div class="course-card" data-category="coding">
<div class="course-header">
<span class="course-code">CPP</span>
<span class="course-type-badge"><i class="fa-solid fa-brain"></i> Tư duy</span>
</div>
<h3>Ngôn Ngữ C/C++</h3>
<p>Rèn luyện tư duy lập trình cấu trúc, giải thuật, hướng đối tượng (OOP) và tối ưu quản lý bộ
nhớ.</p>
<div class="course-footer">
<a href="https://education.crfnetwork.com/CPP" target="_blank"
class="course-action-link">Tài liệu học <i
class="fa-solid fa-arrow-up-right-from-square"></i></a>
<span style="font-size: 0.8rem; color: var(--text-muted);">Sắp khai giảng</span>
</div>
</div>
<!-- GDD -->
<div class="course-card" data-category="coding">
<div class="course-header">
<span class="course-code">GDD</span>
<span class="course-type-badge"><i class="fa-solid fa-gamepad"></i> Game Dev</span>
</div>
<h3>Game Design & Dev</h3>
<p>Tư duy và quy trình thiết kế trò chơi, phát triển dự án game thực tế đa nền tảng.</p>
<div class="course-footer">
<a href="https://education.crfnetwork.com/GDD" target="_blank"
class="course-action-link">Tài liệu học <i
class="fa-solid fa-arrow-up-right-from-square"></i></a>
<a href="https://www.youtube.com/playlist?list=PLRz-2ltlXLUKYiFcSG1ME0G5-ukGCHtc_"
target="_blank"
style="font-size: 0.85rem; color: #ff0000; font-weight: 600; text-decoration: none;"><i
class="fa-brands fa-youtube"></i> Video</a>
</div>
</div>
<!-- LPI -->
<div class="course-card" data-category="system">
<div class="course-header">
<span class="course-code">LPI</span>
<span class="course-type-badge"><i class="fa-brands fa-linux"></i> Linux OS</span>
</div>
<h3>Quản Trị Linux (LPI)</h3>
<p>Quản trị hệ điều hành Linux từ cơ bản đến nâng cao theo khung chương trình chuẩn LPI quốc tế.
</p>
<div class="course-footer">
<a href="https://education.crfnetwork.com/LPI" target="_blank"
class="course-action-link">Tài liệu học <i
class="fa-solid fa-arrow-up-right-from-square"></i></a>
<a href="https://www.youtube.com/playlist?list=PLRz-2ltlXLUIkA8i8TC6pGYzzIWi5b7eP"
target="_blank"
style="font-size: 0.85rem; color: #ff0000; font-weight: 600; text-decoration: none;"><i
class="fa-brands fa-youtube"></i> Video</a>
</div>
</div>
<!-- STG -->
<div class="course-card" data-category="system">
<div class="course-header">
<span class="course-code">STG</span>
<span class="course-type-badge"><i class="fa-solid fa-database"></i> Storage</span>
</div>
<h3>Quản Trị Lưu Trữ & SAN</h3>
<p>Thiết lập, tối ưu hạ tầng lưu trữ quy mô doanh nghiệp, công nghệ RAID, SAN, NAS và Backup.
</p>
<div class="course-footer">
<a href="https://education.crfnetwork.com/STG" target="_blank"
class="course-action-link">Tài liệu học <i
class="fa-solid fa-arrow-up-right-from-square"></i></a>
<span style="font-size: 0.8rem; color: var(--text-muted);">Sắp khai giảng</span>
</div>
</div>
<!-- K8S -->
<div class="course-card" data-category="system">
<div class="course-header">
<span class="course-code">K8S</span>
<span class="course-type-badge"><i class="fa-solid fa-cloud"></i> DevOps</span>
</div>
<h3>Docker & Kubernetes</h3>
<p>Đóng gói ứng dụng (Containerization) và vận hành hệ thống microservices tự động hóa với K8s.
</p>
<div class="course-footer">
<a href="https://education.crfnetwork.com/K8S" target="_blank"
class="course-action-link">Tài liệu học <i
class="fa-solid fa-arrow-up-right-from-square"></i></a>
<a href="https://www.youtube.com/playlist?list=PLRz-2ltlXLUJTE2tNvIWAzRAG-aqLpzZx"
target="_blank"
style="font-size: 0.85rem; color: #ff0000; font-weight: 600; text-decoration: none;"><i
class="fa-brands fa-youtube"></i> Video</a>
</div>
</div>
<!-- MON -->
<div class="course-card" data-category="system">
<div class="course-header">
<span class="course-code">MON</span>
<span class="course-type-badge"><i class="fa-solid fa-heart-pulse"></i> Monitoring</span>
</div>
<h3>Hệ Thống Giám Sát</h3>
<p>Xây dựng hệ thống giám sát toàn diện với Prometheus, Grafana, SigNoz và OpenTelemetry.</p>
<div class="course-footer">
<a href="https://education.crfnetwork.com/MON" target="_blank"
class="course-action-link">Tài liệu học <i
class="fa-solid fa-arrow-up-right-from-square"></i></a>
<a href="https://devopsedu.vn/xay-dung-he-thong-giam-sat-toan-dien-thuc-te/" target="_blank"
style="font-size: 0.85rem; color: var(--primary); font-weight: 600; text-decoration: none;"><i
class="fa-solid fa-globe"></i> Blog</a>
</div>
</div>
<!-- SEC -->
<div class="course-card" data-category="network">
<div class="course-header">
<span class="course-code">SEC</span>
<span class="course-type-badge"><i class="fa-solid fa-shield-halved"></i> Security</span>
</div>
<h3>An Ninh Mạng & CEH</h3>
<p>Kiến thức an toàn thông tin, thực hành tấn công thử nghiệm và phòng thủ hệ thống thực tế.</p>
<div class="course-footer">
<a href="https://education.crfnetwork.com/SEC" target="_blank"
class="course-action-link">Tài liệu học <i
class="fa-solid fa-arrow-up-right-from-square"></i></a>
<a href="https://www.youtube.com/playlist?list=PLRz-2ltlXLUIWR3Nmzu5lH-NrAsfScUo0"
target="_blank"
style="font-size: 0.85rem; color: #ff0000; font-weight: 600; text-decoration: none;"><i
class="fa-brands fa-youtube"></i> Video</a>
</div>
</div>
<!-- NET -->
<div class="course-card" data-category="network">
<div class="course-header">
<span class="course-code">NET</span>
<span class="course-type-badge"><i class="fa-solid fa-network-wired"></i> Network</span>
</div>
<h3>Quản Trị Mạng (CCNA)</h3>
<p>Thiết lập, cấu hình định tuyến và vận hành mạng máy tính doanh nghiệp thực tế.</p>
<div class="course-footer">
<a href="https://education.crfnetwork.com/NET" target="_blank"
class="course-action-link">Tài liệu học <i
class="fa-solid fa-arrow-up-right-from-square"></i></a>
<span style="font-size: 0.8rem; color: var(--text-muted);">Sắp khai giảng</span>
</div>
</div>
<!-- DBS -->
<div class="course-card" data-category="network">
<div class="course-header">
<span class="course-code">DBS</span>
<span class="course-type-badge"><i class="fa-solid fa-database"></i> Database</span>
</div>
<h3>Hệ Quản Trị CSDL</h3>
<p>Cấu trúc dữ liệu, thiết kế chuẩn hóa quan hệ và truy vấn cơ sở dữ liệu nâng cao.</p>
<div class="course-footer">
<a href="https://education.crfnetwork.com/DBS" target="_blank"
class="course-action-link">Tài liệu học <i
class="fa-solid fa-arrow-up-right-from-square"></i></a>
<a href="https://www.youtube.com/playlist?list=PLRz-2ltlXLUJwWQW07KiU1UlwTblhzovU"
target="_blank"
style="font-size: 0.85rem; color: #ff0000; font-weight: 600; text-decoration: none;"><i
class="fa-brands fa-youtube"></i> Video</a>
</div>
</div>
<!-- CTZ -->
<div class="course-card" data-category="network">
<div class="course-header">
<span class="course-code">CTZ</span>
<span class="course-type-badge"><i class="fa-solid fa-microchip"></i> Hardware</span>
</div>
<h3>Kiến Trúc Máy Tính</h3>
<p>Nền tảng khoa học máy tính, cấu trúc bên trong CPU, bộ nhớ và các lệnh assembly.</p>
<div class="course-footer">
<a href="https://education.crfnetwork.com/CTZ" target="_blank"
class="course-action-link">Tài liệu học <i
class="fa-solid fa-arrow-up-right-from-square"></i></a>
<a href="https://www.youtube.com/playlist?list=PLRz-2ltlXLULvtN6MQtzk1qrwJUvrxaHn"
target="_blank"
style="font-size: 0.85rem; color: #ff0000; font-weight: 600; text-decoration: none;"><i
class="fa-brands fa-youtube"></i> Video</a>
</div>
</div>
</div>
<!-- Credentials / Verification Card -->
<div class="verification-highlight-card glass-card reveal"
style="margin-top: 3rem; padding: 2.5rem; border-radius: 18px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;">
<div style="flex: 1; min-width: 300px;">
<span class="badge"
style="background: rgba(var(--secondary-rgb), 0.1); color: #a7f3d0; border: 1px solid rgba(var(--secondary-rgb), 0.2); margin-bottom: 1rem; display: inline-block;">VERIFY
CREDENTIALS</span>
<h3
style="font-size: 1.6rem; margin-bottom: 0.75rem; font-weight: 700; color: var(--text-primary);">
Chứng Chỉ Học Viên</h3>
<p
style="color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; margin-bottom: 0;">
Học viên hoàn thành khóa học thực chiến của CRF được cấp chứng chỉ số định danh độc bản. Nhà
tuyển dụng và đối tác có thể dễ dàng xác thực năng lực trực tuyến qua cổng dữ liệu chính
thức.
</p>
</div>
<a href="https://verify.crfnetwork.com/" target="_blank" class="btn btn-primary"
style="padding: 1rem 2rem; display: flex; align-items: center; gap: 0.5rem; text-decoration: none;">
Xem Ngay <i class="fa-solid fa-shield-check"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Call to action & Join Form Section -->
<section id="contact" class="section bg-darker">
<div class="container">
<div class="cta-layout">
<div class="cta-text reveal">
<span class="badge">Join the Playground</span>
<h2 style="font-size: 2.5rem; line-height: 1.2; margin-bottom: 1.5rem;">Tham gia cộng đồng CRF</h2>
<p style="color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 1.05rem;">
Nếu bạn muốn phát triển sự nghiệp CNTT mà không muốn đi một mình, hãy tham gia cùng chúng tôi!
</p>
<p
style="color: var(--text-secondary); font-size: 1.05rem; font-weight: 600; color: var(--primary);">
Tầm nhìn của bạn đến đâu, sân khấu của bạn sẽ lớn đến đó.
</p>
<ul class="cta-list">
<li class="cta-list-item"><i class="fa-solid fa-check-double"></i> Trải nghiệm hệ sinh thái
thương hiệu cộng hưởng lợi nhuận cao.</li>
<li class="cta-list-item"><i class="fa-solid fa-check-double"></i> Tiếp cận tệp khán giả rộng
lớn từ đối tác lớn.</li>
<li class="cta-list-item"><i class="fa-solid fa-check-double"></i> Trao đổi, kết nối chuyên môn
trực tiếp cùng Founder và chuyên gia.</li>
</ul>
</div>
<div class="contact-form-card glass-card reveal">
<h3 class="form-title">Đăng Ký Đồng Hành</h3>
<form id="collaboration-form">
<div class="form-group">
<label for="name" class="form-label">Họ và Tên</label>
<input type="text" id="name" required class="form-input" placeholder="Nguyễn Văn A">
</div>
<div class="form-group">
<label for="email" class="form-label">Địa chỉ Email</label>
<input type="email" id="email" required class="form-input"
placeholder="your-email@example.com">
</div>
<div class="form-group">
<label for="field" class="form-label">Lĩnh vực chuyên môn</label>
<input type="text" id="field" required class="form-input"
placeholder="Frontend Developer / Content Creator / ...">
</div>
<div class="form-group">
<label for="message" class="form-label">Chia sẻ tầm nhìn hoặc khát vọng của bạn</label>
<textarea id="message" rows="4" required class="form-textarea"
placeholder="Hãy kể về mục tiêu phát triển của bạn..."></textarea>
</div>
<button type="submit" class="btn btn-primary" style="width: 100%;">Gửi Đề Xuất Hợp Tác</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-grid">
<div class="footer-col">
<div class="footer-logo-text"
style="display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem;">
<img src="./icon.png" alt="CRF Logo" style="height: 30px; width: auto;">
<span class="text-gradient"
style="font-weight: 800; font-size: 1.4rem; letter-spacing: 0.5px;">CRF NETWORK</span>
</div>
<p style="margin-bottom: 1.5rem; font-size: 0.85rem; color: var(--text-muted);">Coding Reshape
Future Co. LTD</p>
<p style="font-size: 0.88rem; line-height: 1.6;">Bệ phóng vững chắc nâng tầm thương hiệu cá nhân của
các lập trình viên tài năng thông qua sức mạnh truyền thông cộng hưởng.</p>
</div>
<div class="footer-col">
<h3>Liên Kết Nhanh</h3>
<ul class="footer-links">
<li><a href="#home">Trang Chủ</a></li>
<li><a href="#about">Giới Thiệu</a></li>
<li><a href="#ecosystem">Hệ Sinh Thái</a></li>
<li><a href="#manifesto">Lời Ngỏ</a></li>
<li><a href="#courses">Khóa Học</a></li>
<li><a href="#team">Mảnh Ghép</a></li>
<li><a href="#contact">Đồng Hành</a></li>
</ul>
</div>
<div class="footer-col">
<h3>Tài Nguyên</h3>
<ul class="footer-links">
<li><a href="https://blog.crfnetwork.com/" target="_blank">Technical Blog</a></li>
<li><a href="https://education.crfnetwork.com/" target="_blank">E-Learning Platform</a></li>
<li><a href="https://github.com/codingreshapefuture/" target="_blank">GitHub</a></li>
<li><a href="https://verify.crfnetwork.com/" target="_blank">Xác Thực Chứng Chỉ</a></li>
</ul>
</div>
<div class="footer-col">
<h3>Kết Nối Hợp Tác</h3>
<p style="font-size: 0.9rem; margin-bottom: 1rem;"><i class="fa-solid fa-envelope"
style="color: var(--primary); margin-right: 0.5rem;"></i> admin@crfnetwork.com</p>
<p style="font-size: 0.9rem; margin-bottom: 1rem;"><i class="fa-solid fa-phone"
style="color: var(--primary); margin-right: 0.5rem;"></i> (+84) 967 56 3080</p>
<p style="font-size: 0.9rem; margin-bottom: 1.5rem;"><i class="fa-solid fa-location-dot"
style="color: var(--primary); margin-right: 0.5rem;"></i> 52 P. Hai Bà Trưng, Hoàn Kiếm, Hà
Nội</p>
<div class="footer-socials">
<a href="https://www.facebook.com/codingreshapefuture/" target="_blank"
class="team-social-icon"><i class="fa-brands fa-facebook-f"></i></a>
<a href="https://www.youtube.com/@CodingReshapeFuture/" target="_blank"
class="team-social-icon"><i class="fa-brands fa-youtube"></i></a>
<a href="https://www.tiktok.com/@codingreshapefuture/" target="_blank"
class="team-social-icon"><i class="fa-brands fa-tiktok"></i></a>
<a href="https://www.linkedin.com/company/codingreshapefuture/" target="_blank"
class="team-social-icon"><i class="fa-brands fa-linkedin-in"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 Copyright by CRF. All rights reserved.</p>
<div style="display: flex; gap: 1.5rem;">
<a href="https://www.crfnetwork.com/" target="_blank"
style="color: var(--text-muted); text-decoration: none;">Coding Reshape Future Co. LTD</a>
</div>
</div>
</div>
</footer>
<!-- JavaScript logic -->
<script src="./app.js"></script>
</body>
</html>