-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1329 lines (1247 loc) · 111 KB
/
Copy pathindex.html
File metadata and controls
1329 lines (1247 loc) · 111 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="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Freelabz - Audit, pentest & cybersécurité offensive</title>
<meta name="description" content="Freelabz : audit de sécurité, pentest, accompagnement Cloud & DevOps et outils de cybersécurité offensive comme Secator. Protégez votre entreprise.">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="./assets/apple-touch-icon.png">
<!-- Canonical & language alternates -->
<link rel="canonical" href="https://freelabz.com/">
<link rel="alternate" hreflang="fr" href="https://freelabz.com/">
<link rel="alternate" hreflang="en" href="https://freelabz.com/en/">
<link rel="alternate" hreflang="x-default" href="https://freelabz.com/">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:site_name" content="Freelabz">
<meta property="og:title" content="Freelabz - Audit, pentest & cybersécurité offensive">
<meta property="og:description" content="Audit de sécurité, pentest, accompagnement Cloud & DevOps et outils de cybersécurité offensive comme Secator. Protégez votre entreprise.">
<meta property="og:url" content="https://freelabz.com/">
<meta property="og:image" content="https://freelabz.com/assets/logo_freelabz.png">
<meta property="og:locale" content="fr_FR">
<meta property="og:locale:alternate" content="en_US">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@freelabz">
<meta name="twitter:title" content="Freelabz - Audit, pentest & cybersécurité offensive">
<meta name="twitter:description" content="Audit de sécurité, pentest, accompagnement Cloud & DevOps et outils de cybersécurité offensive comme Secator.">
<meta name="twitter:image" content="https://freelabz.com/assets/logo_freelabz.png">
<!-- Structured data: Organization (identity / GEO) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://freelabz.com/#organization",
"name": "Freelabz",
"legalName": "Freelabz SAS",
"url": "https://freelabz.com/",
"logo": "https://freelabz.com/assets/logo_freelabz.png",
"description": "Freelabz : audit de sécurité, tests d'intrusion (pentest), accompagnement Cloud & DevOps et création d'outils de cybersécurité offensive comme Secator.",
"email": "sales@freelabz.com",
"foundingDate": "2025-08-29",
"vatID": "FR59990919359",
"taxID": "990919359",
"address": {
"@type": "PostalAddress",
"streetAddress": "29 Avenue Denfert-Rochereau",
"postalCode": "42000",
"addressLocality": "Saint-Étienne",
"addressCountry": "FR"
},
"founder": [
{ "@type": "Person", "name": "Olivier Cervello", "jobTitle": "Président" },
{ "@type": "Person", "name": "Wally Chaibi", "jobTitle": "Directeur Général" }
],
"knowsAbout": ["Cybersécurité offensive", "Pentest", "Audit de sécurité", "Cloud", "DevOps", "DevSecOps"],
"sameAs": [
"https://github.com/freelabz",
"https://www.linkedin.com/company/freelabz",
"https://www.youtube.com/@FreeLabz",
"https://x.com/freelabz"
]
},
{
"@type": "WebSite",
"@id": "https://freelabz.com/#website",
"url": "https://freelabz.com/",
"name": "Freelabz",
"inLanguage": "fr-FR",
"publisher": { "@id": "https://freelabz.com/#organization" }
},
{
"@type": "SoftwareApplication",
"name": "Secator",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Linux, macOS, Windows",
"url": "https://github.com/freelabz/secator",
"description": "Secator : outil CLI open-source d'orchestration de tâches pour les tests d'intrusion et la reconnaissance offensive.",
"license": "https://github.com/freelabz/secator/blob/main/LICENSE.md",
"author": { "@id": "https://freelabz.com/#organization" },
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "EUR" }
}
]
}
</script>
<!-- Space Grotesk font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Caveat:wght@700&family=Syne:wght@200;400;700;800&family=Work+Sans:wght@300;400;600;700&display=swap" rel="stylesheet">
<!-- Lien vers votre fichier CSS compilé par Tailwind -->
<link href="./dist/style.css" rel="stylesheet">
<!-- CSS for Modal -->
<style>
/* Modal styles */
.modal {
display: none;
position: fixed;
z-index: 100;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.8);
backdrop-filter: blur(5px);
transition: opacity 0.3s ease;
}
.modal-content {
position: relative;
background-color: #232323;
margin: 10% auto;
padding: 30px;
border-radius: 10px;
width: 90%;
max-width: 600px;
box-shadow: 0 10px 25px rgba(0,0,0,0.5);
animation: modalOpen 0.3s ease-out;
}
.close-modal {
position: absolute;
right: 20px;
top: 15px;
color: #aaa;
font-size: 28px;
font-weight: bold;
cursor: pointer;
transition: color 0.2s;
}
.close-modal:hover {
color: #FFC831;
}
@keyframes modalOpen {
from {opacity: 0; transform: translateY(-20px);}
to {opacity: 1; transform: translateY(0);}
}
.modal.show {
display: block;
}
@keyframes lightboxPop {
from { transform: scale(0.4); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}
.lightbox-pop {
animation: lightboxPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.client-logo {
transition: transform 0.3s ease, opacity 0.3s ease;
}
.client-logo:hover {
transform: scale(1.08);
opacity: 1;
}
.mobile-nav-controls { display: none; }
@media (max-width: 767px) {
.hero-h1 { font-size: 2.8rem !important; }
.hero-h1sub { font-size: 1.6rem !important; }
.hero-content-wrapper { max-width: 100% !important; }
.mobile-nav-controls { display: flex !important; align-items: center; gap: 8px; }
body { overflow-x: hidden; -ms-overflow-style: none; scrollbar-width: none; }
body::-webkit-scrollbar { display: none; }
#site-logo { height: 5.5rem !important; }
}
@media (max-width: 420px) {
.hero-h1 { font-size: 1.7rem !important; white-space: nowrap !important; }
.hero-h1sub { font-size: 1.2rem !important; }
.hero-container { padding-top: 0 !important; }
.hero-subtitle { font-size: 0.95rem !important; margin-top: 1.5rem !important; }
.hero-cta { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; padding-left: 1rem !important; padding-right: 1rem !important; font-size: 0.85rem !important; }
.hero-social svg { width: 1.5rem !important; height: 1.5rem !important; }
.hero-social { margin-top: -3rem !important; }
}
html {
scroll-padding-top: 4rem;
}
/* Scroll reveal */
.reveal {
opacity: 0;
transform: translateY(32px);
transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
/* Muted color overrides */
.text-freelabz-yellow, .text-freelabz-yellow * { color: #DFB040 !important; }
.bg-freelabz-yellow { background-color: #DFB040 !important; }
.border-freelabz-yellow { border-color: #DFB040 !important; }
.hover\:text-freelabz-yellow:hover { color: #DFB040 !important; }
.hover\:bg-freelabz-yellow:hover { background-color: #DFB040 !important; }
.hover\:border-freelabz-yellow:hover { border-color: #DFB040 !important; }
.text-white { color: #EAEAE4 !important; }
/* Scroll indicator */
#scroll-indicator {
position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
opacity: 0.5; transition: opacity 0.6s ease;
animation: scrollBounce 1.8s ease-in-out infinite;
cursor: pointer;
}
#scroll-indicator.hidden-arrow { opacity: 0; pointer-events: none; }
@keyframes scrollBounce {
0%, 100% { transform: translateX(-50%) translateY(0); }
50% { transform: translateX(-50%) translateY(8px); }
}
/* Lang dropdown */
.lang-dropdown { position: relative; }
.lang-btn {
display: flex; align-items: center; gap: 4px;
background: none; border: 1px solid rgba(255,255,255,0.18); border-radius: 6px;
color: inherit; cursor: pointer; font-size: 0.78rem; font-weight: 600;
letter-spacing: 0.08em; padding: 4px 8px;
transition: border-color 0.2s, color 0.2s;
}
.lang-btn:hover { border-color: #DFB040; color: #DFB040; }
.lang-btn svg { width: 10px; height: 10px; transition: transform 0.2s; }
.lang-btn.open svg { transform: rotate(180deg); }
.lang-menu {
display: none; position: absolute; top: calc(100% + 6px); right: 0;
background: #1a2233; border: 1px solid rgba(255,255,255,0.12);
border-radius: 6px; overflow: hidden; min-width: 52px;
box-shadow: 0 4px 12px rgba(0,0,0,0.4);
z-index: 200;
}
.lang-menu.open { display: block; }
.lang-option {
display: block; width: 100%; text-align: center;
padding: 6px 12px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer;
transition: background 0.15s, color 0.15s;
}
.lang-option:hover { background: rgba(255,255,255,0.06); color: #DFB040; }
.lang-option.active { color: #DFB040; }
.handwritten {
font-family: 'Caveat', cursive;
font-weight: 700;
}
/* Logo overflow effect */
#site-logo {
height: 6.5rem;
margin-top: 0.75rem;
margin-bottom: 0.75rem;
padding-top: 0.80rem;
padding-bottom: 0.80rem;
transition: height 0.3s ease, margin 0.3s ease;
}
#site-logo.logo-scrolled {
height: 5.5rem;
margin-top: 0.25rem;
margin-bottom: 0.25rem;
padding-top: 0.80rem;
padding-bottom: 0.80rem;
}
</style>
<script src="https://www.google.com/recaptcha/api.js?render=6LdSfpcqAAAAAIIo-NTDIddlG9qU0ZsOernAwqhv"></script>
<script>
grecaptcha.ready(function () {
grecaptcha.execute('6LdSfpcqAAAAAIIo-NTDIddlG9qU0ZsOernAwqhv', {action: 'submit'}).then(function (token) {
document.getElementById('g-recaptcha-response').value = token;
});
});
</script>
</head>
<body class="bg-freelabz-bg text-freelabz-text font-[Open Sans]">
<!-- Sticky Navbar -->
<header class="sticky top-0 bg-freelabz-bg bg-opacity-90 backdrop-blur-sm" style="z-index:300;" style="box-shadow: 0 1px 0 rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);">
<nav class="container mx-auto px-6 flex justify-between items-center" style="height: 5.5rem; overflow: visible;">
<!-- Logo -->
<div class="flex items-center">
<a href="#" aria-label="Page d'accueil Freelabz" title="Page d'accueil Freelabz">
<picture>
<source srcset="./assets/logo_freelabz_256.webp" type="image/webp">
<img id="site-logo" src="./assets/logo_freelabz_256.png" alt="Logo Freelabz" class="w-auto" width="256" height="256" fetchpriority="high">
</picture>
</a>
</div>
<!-- Menu -->
<div class="hidden md:flex space-x-6 items-center">
<a href="#prestations" class="hover:text-freelabz-yellow transition duration-300" data-i18n="nav.prestations" title="Services">Services</a>
<a href="#produits" class="hover:text-freelabz-yellow transition duration-300" data-i18n="nav.produits" title="Produits">Produits</a>
<a href="#equipe" class="hover:text-freelabz-yellow transition duration-300" data-i18n="nav.equipe" title="Équipe">Équipe</a>
<a href="#confiance" class="hover:text-freelabz-yellow transition duration-300" data-i18n="nav.clients" title="Clients">Clients</a>
<a href="https://discord.gg/nyHjC2aTrq" target="_blank" rel="noopener noreferrer" aria-label="Freelabz sur Discord" title="Join us on Discord !">
<svg class="w-6 h-6 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path d="M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057.061 18.076.083 18.094.108 18.11a19.9 19.9 0 0 0 5.993 3.03.077.077 0 0 0 .084-.028 14.09 14.09 0 0 0 1.226-1.994.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z"/></svg>
</a>
<a href="https://github.com/freelabz" target="_blank" rel="noopener noreferrer" aria-label="Freelabz sur GitHub" title="Freelabz sur GitHub">
<svg class="w-6 h-6 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"/></svg>
</a>
<div class="lang-dropdown" id="lang-dropdown-desktop">
<button class="lang-btn" id="lang-btn-desktop" onclick="toggleLangMenu('desktop')">
<span id="lang-label-desktop">FR</span>
<svg viewBox="0 0 10 6" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"><path d="M1 1l4 4 4-4"/></svg>
</button>
<div class="lang-menu" id="lang-menu-desktop">
<button class="lang-option active" data-lang="fr" onclick="selectLang('fr')">FR</button>
<button class="lang-option" data-lang="en" onclick="selectLang('en')">EN</button>
</div>
</div>
<a href="#contact" class="bg-freelabz-yellow text-freelabz-text-dark font-semibold py-2 px-4 rounded hover:bg-opacity-80 transition duration-300" data-i18n="nav.contact" title="Nous contacter">Nous contacter</a>
</div>
<!-- Mobile: Discord + lang toggle + hamburger -->
<div class="mobile-nav-controls">
<a href="https://discord.gg/nyHjC2aTrq" target="_blank" rel="noopener noreferrer" aria-label="Freelabz sur Discord" title="Freelabz sur Discord">
<svg style="width:24px;height:24px;" fill="currentColor" viewBox="0 0 24 24"><path d="M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057.061 18.076.083 18.094.108 18.11a19.9 19.9 0 0 0 5.993 3.03.077.077 0 0 0 .084-.028 14.09 14.09 0 0 0 1.226-1.994.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z"/></svg>
</a>
<a href="https://github.com/freelabz" target="_blank" rel="noopener noreferrer" aria-label="Freelabz sur GitHub" title="Freelabz sur GitHub">
<svg style="width:24px;height:24px;" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"/></svg>
</a>
<div class="lang-dropdown" id="lang-dropdown-mobile">
<button class="lang-btn" id="lang-btn-mobile" onclick="toggleLangMenu('mobile')">
<span id="lang-label-mobile">FR</span>
<svg viewBox="0 0 10 6" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"><path d="M1 1l4 4 4-4"/></svg>
</button>
<div class="lang-menu" id="lang-menu-mobile">
<button class="lang-option active" data-lang="fr" onclick="selectLang('fr')">FR</button>
<button class="lang-option" data-lang="en" onclick="selectLang('en')">EN</button>
</div>
</div>
<button id="menu-btn" style="background:none; border:none; cursor:pointer; color:white; padding:0;">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" style="width:28px;height:28px;">
<path stroke-linecap="round" stroke-linejoin="round" d="M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" />
</svg>
</button>
</div>
</nav>
<!-- Mobile menu -->
<div id="mobile-menu" class="md:hidden hidden bg-freelabz-card absolute top-full left-0 w-full z-50">
<a href="#prestations" class="block px-6 py-3 text-white hover:bg-freelabz-bg hover:text-freelabz-yellow border-b border-gray-700" data-i18n="nav.prestations" title="Services">Services</a>
<a href="#produits" class="block px-6 py-3 text-white hover:bg-freelabz-bg hover:text-freelabz-yellow border-b border-gray-700" data-i18n="nav.produits" title="Produits">Produits</a>
<a href="#equipe" class="block px-6 py-3 text-white hover:bg-freelabz-bg hover:text-freelabz-yellow border-b border-gray-700" data-i18n="nav.equipe" title="Notre Équipe">Notre Équipe</a>
<a href="#confiance" class="block px-6 py-3 text-white hover:bg-freelabz-bg hover:text-freelabz-yellow border-b border-gray-700" data-i18n="nav.clients" title="Nos Clients">Nos Clients</a>
<a href="#contact" class="block px-6 py-3 bg-freelabz-yellow text-freelabz-text-dark font-semibold hover:bg-opacity-80" data-i18n="nav.contact" title="Nous contacter">Nous contacter</a>
</div>
</header>
<main>
<!-- Hero Section -->
<section class="relative" style="min-height: calc(100vh - 5.5rem); display: flex; align-items: center;">
<div class="dot-grid-bg absolute inset-0 opacity-20 pointer-events-none"></div>
<div class="hero-container container mx-auto px-6 text-center relative z-10" style="padding-top: 3rem; padding-bottom: 3rem;">
<div class="hero-content-wrapper" style="max-width:80%; margin:0 auto;">
<h1 class="hero-h1 text-4xl md:text-6xl text-white mb-4 leading-tight" style="font-family:'Work Sans',sans-serif; font-weight:400; letter-spacing:-0.01em; font-size:4rem;" data-i18n-html="hero.h1">
Cybersécurité <span class="text-freelabz-yellow" style="font-weight:700;">offensive</span>
</h1>
<p class="hero-h1sub text-3xl md:text-5xl text-white mb-2 leading-tight" style="font-family:'Work Sans',sans-serif; font-weight:400; font-size:3.2rem; letter-spacing:-0.01em; line-height:1.4;" data-i18n-html="hero.h1sub">
<span style="position:relative; display:inline-block;">pour tous<svg style="position:absolute; left:0; bottom:-6px; width:100%; height:10px; opacity:0.5;" viewBox="0 0 100 10" preserveAspectRatio="none" fill="none"><path d="M2,8 C25,2 75,2 98,8" stroke="currentColor" stroke-width="2.5" stroke-linecap="round"/></svg></span>, car la meilleure défense, c'est l'attaque !
</p>
<p class="hero-subtitle text-lg md:text-xl" style="color: rgba(229,231,235,0.65); margin-top: 3rem; font-family:'Work Sans',sans-serif; font-weight:400; font-size:1.15rem;" data-i18n-html="hero.subtitle">
Freelabz sécurise vos actifs numériques via des <strong>audits</strong> experts et des <strong>tests d'intrusion</strong> pointus, et vous accompagne dans votre <strong>transition Cloud</strong> et dans vos <strong>processus DevOps</strong>. Nous développons aussi des <strong>outils</strong> et <strong>produits</strong> pour tous pour contribuer au développement de la cybersécurité offensive.
</p>
</div>
</br>
</br>
</br>
<!-- Reseaux sociaux -->
<div class="hero-social flex justify-center space-x-6 md:space-x-8">
<div class="relative">
<!-- Cursive annotation: left of the Discord icon, arrow points right toward it -->
<div class="absolute text-freelabz-yellow pointer-events-none" style="top: -50%; right: -300%; margin-right: 6px; transform: translateY(-50%) rotate(-15deg); white-space: nowrap;">
<svg width="200" height="48" viewBox="0 0 200 48" fill="none" overflow="visible">
<defs>
<path id="discord-arch" d="M5,42 Q100,6 195,42"/>
</defs>
<text fill="currentColor" font-family="Caveat, cursive" font-weight="700" font-size="18">
<textPath href="#discord-arch">Join us on Discord !</textPath>
</text>
</svg>
</div>
<a href="https://discord.gg/nyHjC2aTrq" target="_blank" rel="noopener noreferrer" aria-label="Freelabz sur Discord" title="Freelabz sur Discord">
<svg class="w-8 h-8 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path d="M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057.061 18.076.083 18.094.108 18.11a19.9 19.9 0 0 0 5.993 3.03.077.077 0 0 0 .084-.028 14.09 14.09 0 0 0 1.226-1.994.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z"/></svg>
</a>
</div>
<a href="https://github.com/freelabz" target="_blank" rel="noopener noreferrer" aria-label="Freelabz sur GitHub" title="Freelabz sur GitHub">
<!-- SVG Icône GitHub -->
<svg class="w-8 h-8 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"/></svg>
</a>
<a href="https://www.linkedin.com/company/freelabz" target="_blank" rel="noopener noreferrer" aria-label="Freelabz sur LinkedIn" title="Freelabz sur LinkedIn">
<!-- SVG Icône LinkedIn -->
<svg class="w-8 h-8 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z" clip-rule="evenodd"/></svg>
</a>
<a href="https://www.youtube.com/@FreeLabz" target="_blank" rel="noopener noreferrer" aria-label="Freelabz sur Youtube" title="Freelabz sur Youtube">
<!-- SVG Icône Youtube -->
<svg class="w-8 h-8 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0C.488 3.45.029 5.757 0 12c.029 6.243.488 8.55 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.573 4.385-8.816-.029-6.243-.488-8.55-4.385-8.816zm-10.615 12.737V8.079l6.268 3.64-6.268 3.844z" clip-rule="evenodd"/></svg>
</a>
<a href="https://x.com/freelabz" target="_blank" rel="noopener noreferrer" aria-label="Freelabz sur Twitter" title="Freelabz sur Twitter">
<!-- SVG Icône Twitter (X) -->
<svg class="w-8 h-8 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
</a>
</div>
<div class="py-8 space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#prestations" class="hero-cta inline-block w-full sm:w-auto bg-freelabz-yellow text-freelabz-text-dark font-semibold py-3 px-6 rounded hover:bg-opacity-80 transition duration-300" data-i18n="hero.cta_services" title="Découvrir nos services">Découvrir nos services</a>
<a href="#produits" class="hero-cta inline-block w-full sm:w-auto border border-freelabz-yellow text-freelabz-yellow font-semibold py-3 px-6 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300" data-i18n="hero.cta_tools" title="Explorer nos produits">Explorer nos produits</a>
</div>
<!-- Scroll indicator -->
<div id="scroll-indicator" onclick="document.getElementById('prestations').scrollIntoView({behavior:'smooth'})">
<svg width="40" height="40" viewBox="0 0 28 28" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<path d="M6 10l8 8 8-8"/>
</svg>
</div>
</div>
</section>
<!-- Prestations Section -->
<section id="prestations" class="py-20 bg-freelabz-card">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold text-center text-white mb-12" data-i18n-html="prestations.h2">
Nos <span class="text-freelabz-yellow">services</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Carte Audit Surface d'Attaque -->
<div class="bg-freelabz-bg p-6 rounded-lg border border-gray-700 transition-all duration-200 flex flex-col justify-between hover:-translate-y-1 hover:border-freelabz-yellow">
<div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-8 h-8 text-freelabz-yellow mb-3">
<path stroke-linecap="round" stroke-linejoin="round" d="M12 21a9.004 9.004 0 008.716-6.747M12 21a9.004 9.004 0 01-8.716-6.747M12 21c2.485 0 4.5-4.03 4.5-9S14.485 3 12 3m0 18c-2.485 0-4.5-4.03-4.5-9S9.515 3 12 3m0 0a8.997 8.997 0 017.843 4.582M12 3a8.997 8.997 0 00-7.843 4.582m15.686 0A11.953 11.953 0 0112 10.5c-2.998 0-5.74-1.1-7.843-2.918m15.686 0A8.959 8.959 0 0121 12c0 .778-.099 1.533-.284 2.253m0 0A17.919 17.919 0 0112 16.5c-3.162 0-6.133-.815-8.716-2.247m0 0A9.015 9.015 0 013 12c0-1.605.42-3.113 1.157-4.418" />
</svg>
<h3 class="text-xl font-semibold text-white mb-3" data-i18n="prestations.card1.title">Audit de surface d'attaque externe</h3>
<p class="text-freelabz-text mb-4 text-md" data-i18n="prestations.card1.desc">
Identification exhaustive de vos actifs exposés (sous-domaines, services, sites web), OSINT et analyse de vulnérabilités initiales pour une vue complète de votre exposition.
</p>
</div>
<div class="flex space-x-3">
<!-- <a href="./audit-surface-attaque.html" class="flex-1 text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300">En savoir plus</a> -->
<a href="#contact" class="flex-1 text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300" data-i18n="prestations.quote" title="Demander un devis">Demander un devis</a>
</div>
</div>
<!-- Carte Audit de Code -->
<div class="bg-freelabz-bg p-6 rounded-lg border border-gray-700 transition-all duration-200 flex flex-col justify-between hover:-translate-y-1 hover:border-freelabz-yellow">
<div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-8 h-8 text-freelabz-yellow mb-3">
<path stroke-linecap="round" stroke-linejoin="round" d="M6.75 7.5l3 2.25-3 2.25m4.5 0h3m-9 8.25h13.5A2.25 2.25 0 0021 18V6a2.25 2.25 0 00-2.25-2.25H5.25A2.25 2.25 0 003 6v12a2.25 2.25 0 002.25 2.25z" />
</svg>
<h3 class="text-xl font-semibold text-white mb-3" data-i18n="prestations.card2.title">Audit de code (SAST/DAST)</h3>
<p class="text-freelabz-text mb-4 text-md" data-i18n="prestations.card2.desc">
Analyse statique, dynamique et assistée par IA de votre code source pour détecter les failles de sécurité au plus tôt. Option d'intégration CI/CD disponible.
</p>
</div>
<div class="flex space-x-3">
<!-- <a href="./audit-code.html" class="flex-1 text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300">En savoir plus</a> -->
<a href="#contact" class="flex-1 text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300" data-i18n="prestations.quote" title="Demander un devis">Demander un devis</a>
</div>
</div>
<!-- Carte Audit d'Application -->
<div class="bg-freelabz-bg p-6 rounded-lg border border-gray-700 transition-all duration-200 flex flex-col justify-between hover:-translate-y-1 hover:border-freelabz-yellow">
<div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-8 h-8 text-freelabz-yellow mb-3">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 17.25v1.007a3 3 0 01-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0115 18.257V17.25m6-12V15a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 15V5.25m18 0A2.25 2.25 0 0018.75 3H5.25A2.25 2.25 0 003 5.25m18 0V12a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 12V5.25" />
</svg>
<h3 class="text-xl font-semibold text-white mb-3" data-i18n="prestations.card3.title">Audit d'application (web/mobile)</h3>
<p class="text-freelabz-text mb-4 text-md" data-i18n="prestations.card3.desc">
Évaluation approfondie de la sécurité de vos applications web (API, routes, fuzzing) et mobiles (interception de trafic) en modes blackbox ou whitebox.
</p>
</div>
<div class="flex space-x-3">
<!-- <a href="./audit-application.html" class="flex-1 text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300">En savoir plus</a> -->
<a href="#contact" class="flex-1 text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300" data-i18n="prestations.quote" title="Demander un devis">Demander un devis</a>
</div>
</div>
<!-- Carte Test d'Intrusion -->
<div class="bg-freelabz-bg p-6 rounded-lg border border-gray-700 transition-all duration-200 flex flex-col justify-between hover:-translate-y-1 hover:border-freelabz-yellow">
<div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-8 h-8 text-freelabz-yellow mb-3">
<path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15 15 9.75m-3-7.036A11.959 11.959 0 013.598 6 11.99 11.99 0 003 9.749c0 5.592 3.824 10.29 9 11.623 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285z" />
</svg>
<h3 class="text-xl font-semibold text-white mb-3" data-i18n="prestations.card4.title">Test d'intrusion (pentest)</h3>
<p class="text-freelabz-text mb-4 text-md" data-i18n="prestations.card4.desc">
Simulation d'attaques réelles pour évaluer la résistance de vos systèmes, identifier les chemins d'intrusion et tester l'efficacité de vos contrôles de sécurité.
</p>
</div>
<div class="flex space-x-3">
<!-- <a href="./pentest.html" class="flex-1 text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300">En savoir plus</a> -->
<a href="#contact" class="flex-1 text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300" data-i18n="prestations.quote" title="Demander un devis">Demander un devis</a>
</div>
</div>
<!-- Carte phishing -->
<div class="bg-freelabz-bg p-6 rounded-lg border border-gray-700 transition-all duration-200 flex flex-col justify-between hover:-translate-y-1 hover:border-freelabz-yellow">
<div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-8 h-8 text-freelabz-yellow mb-3">
<path stroke-linecap="round" stroke-linejoin="round" d="M21.75 6.75v10.5a2.25 2.25 0 01-2.25 2.25h-15a2.25 2.25 0 01-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0019.5 4.5h-15a2.25 2.25 0 00-2.25 2.25m19.5 0v.243a2.25 2.25 0 01-1.07 1.916l-7.5 4.615a2.25 2.25 0 01-2.36 0L3.32 8.91a2.25 2.25 0 01-1.07-1.916V6.75" />
</svg>
<h3 class="text-xl font-semibold text-white mb-3" data-i18n="prestations.card5.title">Phishing</h3>
<p class="text-freelabz-text mb-4 text-md" data-i18n="prestations.card5.desc">
Simulation de phishing pour évaluer la résistance de vos employés à la manipulation sociale.
</p>
</div>
<div class="flex space-x-3">
<!-- <a href="./phishing.html" class="flex-1 text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300">En savoir plus</a> -->
<a href="#contact" class="flex-1 text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300" data-i18n="prestations.quote" title="Demander un devis">Demander un devis</a>
</div>
</div>
<!-- Carte Abonnement Annuel -->
<div class="bg-freelabz-bg p-6 rounded-lg border border-gray-700 transition-all duration-200 flex flex-col justify-between hover:-translate-y-1 hover:border-freelabz-yellow">
<div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-8 h-8 text-freelabz-yellow mb-3">
<path stroke-linecap="round" stroke-linejoin="round" d="M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0l3.181 3.183a8.25 8.25 0 0013.803-3.7M4.031 9.865a8.25 8.25 0 0113.803-3.7l3.181 3.182m0-4.991v4.99" />
</svg>
<h3 class="text-xl font-semibold text-white mb-3" data-i18n="prestations.card6.title">Abonnement annuel proactif</h3>
<p class="text-freelabz-text mb-4 text-md" data-i18n="prestations.card6.desc">
Pentest initial (quelques jours), suivi de scans mensuels personnalisés et configurables, monitoring et pilotage de la remédiation. En option: accès à Secator Cloud.
</p>
</div>
<div class="flex space-x-3">
<!-- <a href="./abonnement-annuel.html" class="flex-1 text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300">En savoir plus</a> -->
<a href="#contact" class="flex-1 text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300" data-i18n="prestations.quote" title="Demander un devis">Demander un devis</a>
</div>
</div>
</div>
<!-- Voir plus button -->
<div style="text-align:center; margin-top:3rem;">
<button id="voir-plus-btn" onclick="toggleMoreCards()" class="border border-gray-600 text-freelabz-text font-semibold py-2 px-8 rounded hover:border-freelabz-yellow hover:text-freelabz-yellow transition duration-300" data-i18n="prestations.voir_plus">Voir plus</button>
</div>
<!-- Hidden extra cards -->
<div id="extra-cards" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mt-8" style="display:none;">
<!-- Carte Accompagnement DevOps -->
<div class="bg-freelabz-bg p-6 rounded-lg border border-gray-700 transition-all duration-200 flex flex-col justify-between hover:-translate-y-1 hover:border-freelabz-yellow">
<div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-8 h-8 text-freelabz-yellow mb-3">
<path stroke-linecap="round" stroke-linejoin="round" d="M15.59 14.37a6 6 0 01-5.84 7.38v-4.8m5.84-2.58a14.98 14.98 0 006.16-12.12A14.98 14.98 0 009.631 8.41m5.96 5.96a14.926 14.926 0 01-5.841 2.58m-.119-8.54a6 6 0 00-7.381 5.84h4.8m2.581-5.84a14.927 14.927 0 00-2.58 5.84m2.699 2.7c-.103.021-.207.041-.311.06a15.09 15.09 0 01-2.448-2.448 14.9 14.9 0 01.06-.312m-2.24 2.39a4.493 4.493 0 00-1.757 4.306 4.493 4.493 0 004.306-1.758M16.5 9a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0z" />
</svg>
<h3 class="text-xl font-semibold text-white mb-3" data-i18n="prestations.devops.title">Accompagnement DevOps</h3>
<p class="text-freelabz-text mb-4 text-md" data-i18n="prestations.devops.desc">
Mise en place et optimisation de pipelines CI/CD, intégration de la sécurité aux processus de déploiement (DevSecOps), automatisation et bonnes pratiques pour des livraisons rapides et sécurisées.
</p>
</div>
<div class="flex space-x-3">
<a href="#contact" class="flex-1 text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300" data-i18n="prestations.quote" title="Demander un devis">Demander un devis</a>
</div>
</div>
<!-- Carte Accompagnement Cloud -->
<div class="bg-freelabz-bg p-6 rounded-lg border border-gray-700 transition-all duration-200 flex flex-col justify-between hover:-translate-y-1 hover:border-freelabz-yellow">
<div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-8 h-8 text-freelabz-yellow mb-3">
<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 15a4.5 4.5 0 004.5 4.5H18a3.75 3.75 0 001.332-7.257 3 3 0 00-2.43-2.43 3.75 3.75 0 00-4.952-4.33 3 3 0 00-5.196 1.33A4.5 4.5 0 002.25 15z" />
</svg>
<h3 class="text-xl font-semibold text-white mb-3" data-i18n="prestations.cloud.title">Accompagnement Cloud</h3>
<p class="text-freelabz-text mb-4 text-md" data-i18n="prestations.cloud.desc">
Préparation, choix du cloud, architecture, mise en place et infrastructure-as-code (Terraform, Ansible). Un accompagnement de A à Z avec un focus sur la sécurité à chaque étape.
</p>
</div>
<div class="flex space-x-3">
<a href="#contact" class="flex-1 text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300" data-i18n="prestations.quote" title="Demander un devis">Demander un devis</a>
</div>
</div>
<!-- Carte Formations -->
<div class="bg-freelabz-bg p-6 rounded-lg border border-gray-700 transition-all duration-200 flex flex-col justify-between hover:-translate-y-1 hover:border-freelabz-yellow">
<div>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-8 h-8 text-freelabz-yellow mb-3">
<path stroke-linecap="round" stroke-linejoin="round" d="M4.26 10.147a60.438 60.438 0 00-.491 6.347A48.627 48.627 0 0112 20.904a48.627 48.627 0 018.232-4.41 60.46 60.46 0 00-.491-6.347m-15.482 0a50.57 50.57 0 00-2.658-.813A59.906 59.906 0 0112 3.493a59.903 59.903 0 0110.399 5.84c-.896.248-1.783.52-2.658.814m-15.482 0A50.697 50.697 0 0112 13.489a50.702 50.702 0 017.74-3.342M6.75 15a.75.75 0 100-1.5.75.75 0 000 1.5zm0 0v-3.675A55.378 55.378 0 0112 8.443m-7.007 11.55A5.981 5.981 0 006.75 15.75v-1.5" />
</svg>
<h3 class="text-xl font-semibold text-white mb-3" data-i18n="formations.title">Formations</h3>
<p class="text-freelabz-text mb-4 text-md" data-i18n="formations.desc">
Formations pratiques en cybersécurité, DevOps, programmation (Python, Go) et administration Linux & réseau. Adaptées à tous les niveaux, du débutant à l'expert.
</p>
</div>
<div class="flex space-x-3">
<a href="#contact" class="flex-1 text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300" data-i18n="prestations.quote" title="Demander un devis">Demander un devis</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Produits Section -->
<section id="produits" class="py-20 bg-freelabz-bg">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold text-center text-white mb-4" data-i18n-html="produits.h2">
Nos <span class="text-freelabz-yellow">outils</span> et <span class="text-freelabz-yellow">produits</span>
</h2>
<p class="text-lg text-center text-freelabz-text mb-12 max-w-3xl mx-auto" data-i18n="produits.intro">
Au-delà des services, Freelabz innove en créant des outils pour la communauté et les entreprises, rendant la sécurité offensive plus efficace et accessible.
</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Carte Secator -->
<div class="bg-freelabz-card p-6 rounded-lg border border-gray-700 transition-all duration-200 flex flex-col justify-between hover:-translate-y-1 hover:border-freelabz-yellow">
<div>
<h3 class="text-xl font-semibold text-white mb-3 flex items-center">
<!-- Remplacer par le vrai SVG de l'icône CLI/Code -->
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6 mr-2 text-freelabz-yellow">
<path stroke-linecap="round" stroke-linejoin="round" d="M6.75 7.5l3 2.25-3 2.25m4.5 0h3m-9 8.25h13.5A2.25 2.25 0 0021 18V6a2.25 2.25 0 00-2.25-2.25H5.25A2.25 2.25 0 003 6v12a2.25 2.25 0 002.25 2.25z" />
</svg>
<span data-i18n="produits.secator.title">Secator (CLI open-source)</span>
</h3>
<p class="text-freelabz-text mb-4 text-md" data-i18n="produits.secator.desc">
Outil de pentest automatisé conçu pour les pentesters. Simplifie le lancement d'outils et l'automatisation de workflows répétitifs (reconnaissance, scan) via des fichiers YAML configurables.
</p>
<video id="secator-gif" src="./assets/secator_demo.mp4" poster="./assets/secator_demo_poster.jpg" muted loop playsinline preload="none" aria-label="Secator demo" class="w-full rounded-md cursor-pointer"></video>
</div>
<a href="https://github.com/freelabz/secator" target="_blank" rel="noopener noreferrer" class="mt-4 inline-block text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300" title="Voir sur GitHub">
<span data-i18n="produits.secator.link">Voir sur GitHub</span>
<!-- Remplacer par le vrai SVG de l'icône External Link -->
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4 inline-block ml-1 align-baseline">
<path stroke-linecap="round" stroke-linejoin="round" d="M13.5 6H5.25A2.25 2.25 0 003 8.25v10.5A2.25 2.25 0 005.25 21h10.5A2.25 2.25 0 0018 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25" />
</svg>
</a>
</div>
<!-- Carte Secator Cloud -->
<div class="bg-freelabz-card p-6 rounded-lg border border-gray-700 transition-all duration-200 flex flex-col justify-between hover:-translate-y-1 hover:border-freelabz-yellow">
<div>
<h3 class="text-xl font-semibold text-white mb-3 flex items-center">
<!-- Remplacer par le vrai SVG de l'icône Cloud -->
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6 mr-2 text-freelabz-yellow">
<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 15a4.5 4.5 0 004.5 4.5H18a3.75 3.75 0 001.332-7.257 3 3 0 00-2.43-2.43A3.75 3.75 0 0013.5 4.5h-1.5m-4.5 6.75v.75a3 3 0 003 3h3a3 3 0 003-3v-.75m-12 0V10.5a2.25 2.25 0 012.25-2.25h5.379a2.25 2.25 0 011.59.659l2.122 2.121a2.25 2.25 0 01.659 1.59V15" />
</svg>
<span data-i18n="produits.cloud.title">Secator Cloud (plateforme SaaS)</span>
</h3>
<p class="text-freelabz-text mb-4 text-md" data-i18n="produits.cloud.desc">
Plateforme de sécurité offensive configurable. Permet aux entreprises de lancer des scans sur mesure et aux pentesters de gérer leurs missions, d'analyser les données (via IA) et de générer des rapports. Option self-hosted disponible.
</p>
<img loading="lazy" decoding="async" id="secator-cloud-screenshot" src="./assets/secator_cloud_screenshot.png" alt="Secator Cloud screenshot" class="w-full rounded-md cursor-pointer">
</div>
<a href="#contact" class="mt-4 inline-block text-center bg-gray-700 text-white font-semibold py-2 px-4 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300" data-i18n="produits.cloud.link" title="Découvrir la plateforme">Découvrir la plateforme</a>
</div>
</div>
</div>
</section>
<!-- Notre Équipe Section -->
<section id="equipe" class="py-20 bg-freelabz-card">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold text-center text-white mb-12" data-i18n-html="equipe.h2">
Notre <span class="text-freelabz-yellow">équipe</span> d'experts
</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-2 lg:grid-cols-2 gap-8 text-center">
<!-- Membre 1 -->
<div class="bg-freelabz-bg p-6 rounded-lg transition-all duration-200 border border-gray-700 hover:-translate-y-1 hover:border-freelabz-yellow hover:shadow-lg">
<div class="mx-auto mb-4 border-2 border-freelabz-yellow" style="width:8rem; height:8rem; border-radius:9999px; overflow:hidden;">
<img loading="lazy" decoding="async" src="./assets/employee_ocervello.jpeg" alt="Photo de Olivier Cervello" class="w-full h-full object-cover" style="transform:scale(1.4);">
</div>
<h3 class="text-xl font-semibold text-white mb-1">Olivier Cervello</h3>
<p class="text-freelabz-yellow text-sm mb-3" data-i18n="equipe.olivier.role">Pentesteur & développeur</p>
<p class="text-freelabz-text text-md mb-3 text-justify" data-i18n="equipe.olivier.bio">Mon parcours professionnel et académique est marqué par un engagement solide dans le domaine des technologies et de l'informatique, avec un Master of
Science en Computer Engineering de l'Illinois Institute of Technology et 4 ans passés chez Google en tant qu'ingénieur Cloud.
J'ai développé des compétences techniques pointues en cybersécurité, DevOps et infrastructure Cloud, et je souhaite contribuer à la sécurisation des infrastructures critiques et à la promotion d'une utilisation
responsable des technologies.</p>
<div class="flex justify-center space-x-3 mt-4">
<a href="https://www.linkedin.com/in/olivier-cervello-6b4a4570/" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn de Olivier Cervello" title="LinkedIn de Olivier Cervello">
<!-- SVG Icône LinkedIn -->
<svg class="w-6 h-6 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z" clip-rule="evenodd"/></svg>
</a>
<a href="https://x.com/freelabz" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn de Wally Chaibi" title="LinkedIn de Wally Chaibi">
<!-- SVG Icône Twitter (X) -->
<svg class="w-6 h-6 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
</a>
</div>
</div>
<!-- Membre 2 -->
<div class="bg-freelabz-bg p-6 rounded-lg transition-all duration-200 border border-gray-700 hover:-translate-y-1 hover:border-freelabz-yellow hover:shadow-lg">
<img loading="lazy" decoding="async" src="./assets/employee_wchaibi.jpg" alt="Photo de Wally Chaibi" class="rounded-full mx-auto mb-4 object-cover object-top border-2 border-freelabz-yellow" style="width:8rem; height:8rem; border-radius:9999px;">
<h3 class="text-xl font-semibold text-white mb-1">Wally Chaibi</h3>
<p class="text-freelabz-yellow text-sm mb-3" data-i18n="equipe.wally.role">Pentesteur & administrateur système</p>
<p class="text-freelabz-text text-md mb-3 text-justify" data-i18n="equipe.wally.bio">Mon parcours a débuté dans la cuisine et l'animation avant de s'orienter vers l'informatique et la sécurité numérique grâce à une formation autodidacte
et des diplômes complémentaires (DAEU, DUT Réseaux et Télécommunications, certification professionnelle). J'ai ensuite exercé en tant qu'administrateur systèmes et réseaux pour protéger
les données sensibles et garantir l'intégrité des systèmes informatiques.
</p>
<div class="flex justify-center space-x-3 mt-4">
<a href="https://www.linkedin.com/in/wally-chaibi-999141273/" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn de Wally Chaibi" title="LinkedIn de Wally Chaibi">
<!-- SVG Icône LinkedIn -->
<svg class="w-6 h-6 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z" clip-rule="evenodd"/></svg>
</a>
<a href="https://x.com/freelabz" target="_blank" rel="noopener noreferrer" aria-label="Twitter de Wally Chaibi" title="Twitter de Wally Chaibi">
<!-- SVG Icône Twitter (X) -->
<svg class="w-6 h-6 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- "Ils nous font confiance" Section -->
<section id="confiance" class="py-20 bg-freelabz-bg">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold text-center text-white mb-12" data-i18n-html="confiance.h2">
Ils nous font <span class="text-freelabz-yellow">confiance</span>
</h2>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-12 lg:gap-16">
<a href="https://arxone.com/" target="_blank" rel="noopener noreferrer" aria-label="ARX ONE" title="ARX ONE">
<img loading="lazy" decoding="async" src="./assets/client_arxone.svg" alt="ARX ONE" class="client-logo h-12 w-auto opacity-90">
</a>
<a href="https://www.ochinfo.fr/" target="_blank" rel="noopener noreferrer" aria-label="OCH" title="OCH">
<img loading="lazy" decoding="async" src="./assets/client_och.jpg" alt="OCH" class="client-logo h-12 w-auto opacity-90">
</a>
<a href="https://www.t2s.fr/" target="_blank" rel="noopener noreferrer" aria-label="T2S" title="T2S">
<img loading="lazy" decoding="async" src="./assets/client_t2s.png" alt="T2S" class="client-logo h-12 w-auto opacity-90">
</a>
<a href="https://www.nexa.fr/" target="_blank" rel="noopener noreferrer" aria-label="Nexa" title="Nexa">
<img loading="lazy" decoding="async" src="./assets/client_nexa.svg" alt="Nexa" class="client-logo h-12 w-auto opacity-90">
</a>
<a href="https://invictis.fr" target="_blank" rel="noopener noreferrer" aria-label="Invictis" title="Invictis">
<img loading="lazy" decoding="async" src="./assets/client_invictis.svg" alt="Invictis" class="client-logo h-12 w-auto opacity-90">
</a>
</div>
</div>
</section>
<!-- "Ils parlent de nous" Section -->
<section id="presse" class="py-20 bg-freelabz-card">
<div class="container mx-auto px-6">
<h2 class="text-3xl md:text-4xl font-bold text-center text-white mb-12">
Ils parlent de <span class="text-freelabz-yellow">nous</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-4xl mx-auto">
<!-- Interview Ophélie Meunier -->
<div class="bg-freelabz-bg rounded-lg border border-gray-700 transition-all duration-200 flex flex-col overflow-hidden hover:border-freelabz-yellow">
<iframe src="https://www.youtube.com/embed/AE7oMicPLJo" title="Notre interview pour Who's Who Leaders avec Ophélie Meunier" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen class="w-full" style="aspect-ratio:16/9;"></iframe>
<div class="p-6">
<span class="text-xs font-semibold uppercase tracking-wider text-freelabz-yellow">Interview vidéo</span>
<h3 class="text-xl font-semibold text-white mt-2">Notre interview pour Who's Who Leaders avec Ophélie Meunier</h3>
</div>
</div>
<!-- Article Le Figaro -->
<a href="https://www.lefigaro.fr/economie/freelabz-la-cybersecurite-offensive-a-la-portee-des-tpe-et-pme-20251216" target="_blank" rel="noopener noreferrer" title="Article du Figaro sur Freelabz" class="group bg-freelabz-bg rounded-lg border border-gray-700 transition-all duration-200 flex flex-col overflow-hidden hover:-translate-y-1 hover:border-freelabz-yellow">
<img loading="lazy" decoding="async" src="./assets/presse_figaro.png" alt="Article du Figaro : Freelabz, la cybersécurité offensive à la portée des TPE et PME" class="w-full object-cover object-top" style="aspect-ratio:16/9;">
<div class="p-6">
<span class="text-xs font-semibold uppercase tracking-wider text-freelabz-yellow">Presse — Le Figaro</span>
<h3 class="text-xl font-semibold text-white mt-2">« Freelabz : la cybersécurité offensive à la portée des TPE et PME »</h3>
</div>
</a>
</div>
<!-- Contenu additionnel (masqué par défaut) -->
<div id="presse-plus" style="display:none;" class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-4xl mx-auto mt-8">
<!-- Présentation HackTheBox 0x33 -->
<a href="https://www.youtube.com/watch?v=u-XQ7hUuraA" target="_blank" rel="noopener noreferrer" title="Notre première présentation à HackTheBox 0x33" class="group bg-freelabz-bg rounded-lg border border-gray-700 transition-all duration-200 flex flex-col overflow-hidden hover:-translate-y-1 hover:border-freelabz-yellow">
<div class="relative">
<img loading="lazy" decoding="async" src="https://img.youtube.com/vi/u-XQ7hUuraA/hqdefault.jpg" alt="Présentation de Freelabz à HackTheBox 0x33" class="w-full object-cover" style="aspect-ratio:16/9;">
<span class="absolute inset-0 flex items-center justify-center">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" style="width:64px;height:64px;" class="text-white/90 group-hover:text-freelabz-yellow transition duration-300 drop-shadow-lg">
<path fill-rule="evenodd" d="M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25zM9.75 8.25l6 3.75-6 3.75v-7.5z" clip-rule="evenodd" />
</svg>
</span>
</div>
<div class="p-6">
<span class="text-xs font-semibold uppercase tracking-wider text-freelabz-yellow">Conférence — HackTheBox 0x33</span>
<h3 class="text-xl font-semibold text-white mt-2">Notre première présentation à HackTheBox</h3>
</div>
</a>
<!-- Podcast Hack'n'Speak -->
<div class="bg-freelabz-bg rounded-lg border border-gray-700 transition-all duration-200 flex flex-col overflow-hidden hover:border-freelabz-yellow">
<div class="p-6">
<span class="text-xs font-semibold uppercase tracking-wider text-freelabz-yellow">Podcast — Hack'n'Speak</span>
<h3 class="text-xl font-semibold text-white mt-2 mb-4">0x27 — Retour sur la création de Secator</h3>
<iframe src="https://creators.spotify.com/pod/profile/hacknspeak/embed/episodes/0x27-Nabot--JahMyst--Retour-sur-la-cration-de-Secator--des-tudes-longues-ou-pas-e2lgrdn/a-abdbqm5" height="102" width="100%" frameborder="0" scrolling="no" title="Podcast Hack'n'Speak 0x27"></iframe>
</div>
</div>
<!-- Stream Laluka — Partie 1 -->
<div class="bg-freelabz-bg rounded-lg border border-gray-700 transition-all duration-200 flex flex-col overflow-hidden hover:border-freelabz-yellow">
<iframe src="https://www.youtube.com/embed/42L7t2zMq2g" title="Notre passage sur le stream de Laluka (partie 1)" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen class="w-full" style="aspect-ratio:16/9;"></iframe>
<div class="p-6">
<span class="text-xs font-semibold uppercase tracking-wider text-freelabz-yellow">Stream — Laluka</span>
<h3 class="text-xl font-semibold text-white mt-2">Notre passage sur le stream de Laluka (partie 1)</h3>
</div>
</div>
<!-- Stream Laluka — Partie 2 -->
<div class="bg-freelabz-bg rounded-lg border border-gray-700 transition-all duration-200 flex flex-col overflow-hidden hover:border-freelabz-yellow">
<iframe src="https://www.youtube.com/embed/IUV4ZQHBp90" title="Notre passage sur le stream de Laluka (partie 2)" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen class="w-full" style="aspect-ratio:16/9;"></iframe>
<div class="p-6">
<span class="text-xs font-semibold uppercase tracking-wider text-freelabz-yellow">Stream — Laluka</span>
<h3 class="text-xl font-semibold text-white mt-2">Notre passage sur le stream de Laluka (partie 2)</h3>
</div>
</div>
<!-- Présentation HackTheBox 0x62 (lien à venir)
<div class="bg-freelabz-bg rounded-lg border border-gray-700 transition-all duration-200 flex flex-col overflow-hidden hover:border-freelabz-yellow">
<iframe src="https://www.youtube.com/embed/REMPLACER_ID" title="Notre seconde présentation à HackTheBox 0x62" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen class="w-full" style="aspect-ratio:16/9;"></iframe>
<div class="p-6">
<span class="text-xs font-semibold uppercase tracking-wider text-freelabz-yellow">Conférence — HackTheBox 0x62</span>
<h3 class="text-xl font-semibold text-white mt-2">Notre seconde présentation à HackTheBox</h3>
</div>
</div>
-->
</div>
<div style="text-align:center; margin-top:3rem;">
<button id="presse-voir-plus" type="button" class="border border-freelabz-yellow text-freelabz-yellow font-semibold py-2 px-6 rounded hover:bg-freelabz-yellow hover:text-freelabz-text-dark transition duration-300">Voir plus</button>
</div>
</div>
</section>
<script>
(function(){
var btn = document.getElementById('presse-voir-plus');
var box = document.getElementById('presse-plus');
if (btn && box) {
btn.addEventListener('click', function(){
var hidden = box.style.display === 'none';
box.style.display = hidden ? 'grid' : 'none';
btn.textContent = hidden ? 'Voir moins' : 'Voir plus';
});
}
})();
</script>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-freelabz-bg">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl md:text-4xl font-bold text-center text-white mb-8" data-i18n-html="contact.h2">
Prêt à renforcer votre <span class="text-freelabz-yellow">sécurité</span> ?
</h2>
<p class="text-lg text-freelabz-text mb-8 max-w-2xl mx-auto" data-i18n="contact.desc">
Contactez nos experts pour discuter de vos besoins en audit, pentest ou pour en savoir plus sur nos outils Secator et Secator Cloud.
</p>
<a href="mailto:sales@freelabz.com" class="bg-freelabz-yellow text-freelabz-text-dark font-semibold py-3 px-8 rounded hover:bg-opacity-80 transition duration-300 text-lg" data-i18n="contact.btn" title="Contactez-nous">
Contactez-nous
</a>
</div>
</section>
<!-- Nous Suivre Section -->
<section id="suivre" class="py-16 bg-freelabz-card">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl font-bold text-center text-white mb-8" data-i18n-html="suivre.h2">
Suivez <span class="text-freelabz-yellow">Freelabz</span>
</h2>
<div class="flex justify-center space-x-6 md:space-x-8">
<a href="https://discord.gg/nyHjC2aTrq" target="_blank" rel="noopener noreferrer" aria-label="Freelabz sur Discord" title="Freelabz sur Discord">
<svg class="w-8 h-8 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path d="M20.317 4.37a19.791 19.791 0 0 0-4.885-1.515.074.074 0 0 0-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 0 0-5.487 0 12.64 12.64 0 0 0-.617-1.25.077.077 0 0 0-.079-.037A19.736 19.736 0 0 0 3.677 4.37a.07.07 0 0 0-.032.027C.533 9.046-.32 13.58.099 18.057.061 18.076.083 18.094.108 18.11a19.9 19.9 0 0 0 5.993 3.03.077.077 0 0 0 .084-.028 14.09 14.09 0 0 0 1.226-1.994.076.076 0 0 0-.041-.106 13.107 13.107 0 0 1-1.872-.892.077.077 0 0 1-.008-.128 10.2 10.2 0 0 0 .372-.292.074.074 0 0 1 .077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 0 1 .078.01c.12.098.246.198.373.292a.077.077 0 0 1-.006.127 12.299 12.299 0 0 1-1.873.892.077.077 0 0 0-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 0 0 .084.028 19.839 19.839 0 0 0 6.002-3.03.077.077 0 0 0 .032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 0 0-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z"/></svg>
</a>
<a href="https://github.com/freelabz" target="_blank" rel="noopener noreferrer" aria-label="Freelabz sur GitHub" title="Freelabz sur GitHub">
<!-- SVG Icône GitHub -->
<svg class="w-8 h-8 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd"/></svg>
</a>
<a href="https://www.linkedin.com/company/freelabz" target="_blank" rel="noopener noreferrer" aria-label="Freelabz sur LinkedIn" title="Freelabz sur LinkedIn">
<!-- SVG Icône LinkedIn -->
<svg class="w-8 h-8 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z" clip-rule="evenodd"/></svg>
</a>
<a href="https://www.youtube.com/@FreeLabz" target="_blank" rel="noopener noreferrer" aria-label="Freelabz sur Youtube" title="Freelabz sur Youtube">
<!-- SVG Icône Youtube -->
<svg class="w-8 h-8 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path fill-rule="evenodd" d="M19.615 3.184c-3.604-.246-11.631-.245-15.23 0C.488 3.45.029 5.757 0 12c.029 6.243.488 8.55 4.385 8.816 3.6.245 11.626.246 15.23 0 3.897-.266 4.356-2.573 4.385-8.816-.029-6.243-.488-8.55-4.385-8.816zm-10.615 12.737V8.079l6.268 3.64-6.268 3.844z" clip-rule="evenodd"/></svg>
</a>
<a href="https://x.com/freelabz" target="_blank" rel="noopener noreferrer" aria-label="Freelabz sur Twitter" title="Freelabz sur Twitter">
<!-- SVG Icône Twitter (X) -->
<svg class="w-8 h-8 text-freelabz-text hover:text-freelabz-yellow transition duration-300" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>
</a>
</div>
</div>
</section>
</main>
<!-- Lightbox -->
<div id="gif-lightbox" style="display:none; position:fixed; top:5.5rem; left:0; right:0; bottom:0; z-index:200; background:rgba(0,0,0,0.95); align-items:center; justify-content:center;">
<div style="text-align:center;">
<p id="lightbox-title" style="color:#FFE566; font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:0.95rem; letter-spacing:0.05em; margin-bottom:10px;">Secator in action !</p>
<div id="gif-lightbox-frame" class="relative shadow-2xl" style="border: 1px solid rgba(255,229,102,0.25); border-radius: 6px;">
<button id="gif-lightbox-close" aria-label="Fermer" style="position:absolute; top:-18px; right:-18px; width:36px; height:36px; background:rgba(255,229,102,0.5); color:#fff; border:none; border-radius:50%; font-size:1.25rem; font-weight:700; cursor:pointer; display:flex; align-items:center; justify-content:center; line-height:1; transition:opacity 0.2s;" onmouseover="this.style.opacity='0.8'" onmouseout="this.style.opacity='1'">×</button>
<img id="gif-lightbox-img" src="" alt="Secator demo" style="display:none; max-width:90vw; max-height:calc(100vh - 5.5rem - 6rem); border-radius:4px;">
<video id="gif-lightbox-video" src="" muted loop playsinline controls style="display:none; max-width:90vw; max-height:calc(100vh - 5.5rem - 6rem); border-radius:4px;"></video>
</div>
</div>
</div>
<!-- Contact Form Modal -->
<div id="contactModal" class="modal">
<div class="modal-content">
<span class="close-modal" id="closeModal">×</span>
<h2 class="text-2xl md:text-3xl font-bold text-center text-white mb-6" data-i18n-html="modal.title">
Contactez <span class="text-freelabz-yellow">Freelabz</span>
</h2>
<p class="text-lg text-freelabz-text mb-8 text-center" data-i18n="modal.desc">
Expliquez-nous votre projet ou demandez un devis pour une prestation.
</p>
<form action="https://formspree.io/f/mnqybboq" method="POST" class="sm:mx-auto sm:max-w-xl lg:mx-0">
<div class="mb-4">
<label for="name" class="sr-only">Nom</label>
<input id="name" type="text" name="name" placeholder="Votre nom" class="block w-full rounded-md border-0 px-4 py-3 text-freelabz-text-dark focus:outline-none focus:ring-2 focus:ring-gray-600 focus:ring-offset-2 focus:ring-offset-gray-900 mb-4" required data-i18n-placeholder="modal.name">
<label for="email" class="sr-only">Email address</label>
<input id="email" type="email" name="email" placeholder="Votre email" class="block w-full rounded-md border-0 px-4 py-3 text-freelabz-text-dark focus:outline-none focus:ring-2 focus:ring-gray-600 focus:ring-offset-2 focus:ring-offset-gray-900 mb-4" required data-i18n-placeholder="modal.email">
<label for="message" class="sr-only">Message</label>
<textarea id="message" name="message" rows="5" placeholder="Votre message" class="block w-full rounded-md border-0 px-4 py-3 text-freelabz-text-dark focus:outline-none focus:ring-2 focus:ring-gray-600 focus:ring-offset-2 focus:ring-offset-gray-900 mb-4" required data-i18n-placeholder="modal.message"></textarea>
<input type="hidden" id="g-recaptcha-response" name="g-recaptcha-response">
</div>
<div>
<button type="submit" class="w-full rounded-md bg-freelabz-yellow py-3 px-4 font-bold text-freelabz-text-dark shadow hover:bg-opacity-80 focus:outline-none focus:ring-2 focus:ring-zinc-600 focus:ring-offset-2 focus:ring-offset-zinc-900 uppercase" data-i18n="modal.submit">Envoyer</button>
</div>
<p class="mt-3 text-sm text-gray-300 sm:mt-4 text-center" data-i18n="modal.followup">Nous vous recontacterons au plus vite.</p>
</form>
</div>
</div>
<!-- Footer -->
<footer class="bg-black text-freelabz-text py-8">
<div class="container mx-auto px-6 text-center text-sm">
<p data-i18n="footer.copyright">© 2025 Freelabz. Tous droits réservés.</p>
<address class="mt-2" style="font-style: normal; opacity: 0.75;">
Freelabz SAS · 29 Avenue Denfert-Rochereau, 42000 Saint-Étienne, France<br>
<a href="mailto:sales@freelabz.com" class="hover:text-freelabz-yellow" title="sales@freelabz.com">sales@freelabz.com</a>
</address>
<p class="mt-2">
<a href="#" class="hover:text-freelabz-yellow" data-i18n="footer.privacy" title="Politique de confidentialité">Politique de confidentialité</a> |
<a href="#" class="hover:text-freelabz-yellow" data-i18n="footer.legal" title="Mentions légales">Mentions légales</a>
</p>
</div>
</footer>
<script>
// Voir plus / See more toggle
function toggleMoreCards() {
var cards = document.getElementById('extra-cards');
var btn = document.getElementById('voir-plus-btn');
cards.style.display = 'grid';
btn.style.display = 'none';
setTimeout(function() {
window.scrollBy({ top: 200, behavior: 'smooth' });
}, 50);
}
// Lang dropdown
function toggleLangMenu(v) {
var btn = document.getElementById('lang-btn-' + v);
var menu = document.getElementById('lang-menu-' + v);
var isOpen = menu.classList.contains('open');
document.querySelectorAll('.lang-menu').forEach(function(m) { m.classList.remove('open'); });
document.querySelectorAll('.lang-btn').forEach(function(b) { b.classList.remove('open'); });
if (!isOpen) { menu.classList.add('open'); btn.classList.add('open'); }
}
function selectLang(lang) {
document.querySelectorAll('.lang-menu').forEach(function(m) { m.classList.remove('open'); });
document.querySelectorAll('.lang-btn').forEach(function(b) { b.classList.remove('open'); });
var current = document.documentElement.lang === 'en' ? 'en' : 'fr';
if (lang === current) return;
// URL-based switch: each language is a real, indexable page
window.location.href = lang === 'en' ? '/en/' : '/';
}
document.addEventListener('click', function(e) {
if (!e.target.closest('.lang-dropdown')) {
document.querySelectorAll('.lang-menu').forEach(function(m) { m.classList.remove('open'); });
document.querySelectorAll('.lang-btn').forEach(function(b) { b.classList.remove('open'); });
}
});
// Media lightbox (handles both images and the Secator video)
const gifLightbox = document.getElementById('gif-lightbox');
const gifLightboxImg = document.getElementById('gif-lightbox-img');
const gifLightboxVideo = document.getElementById('gif-lightbox-video');
const gifLightboxFrame = document.getElementById('gif-lightbox-frame');
const secatorVideo = document.getElementById('secator-gif');
function openLightbox(title, popFrom) {
document.getElementById('lightbox-title').textContent = title;
gifLightbox.style.display = 'flex';
document.body.style.overflow = 'hidden';
gifLightboxFrame.classList.remove('lightbox-pop');
void gifLightboxFrame.offsetWidth; // force reflow to restart animation
gifLightboxFrame.classList.add('lightbox-pop');
}
function closeLightbox() {
gifLightbox.style.display = 'none';
document.body.style.overflow = '';