-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
3215 lines (3089 loc) · 132 KB
/
Copy pathindex.html
File metadata and controls
3215 lines (3089 loc) · 132 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="ar" dir="rtl">
<head>
<!-- ⚡ Early theme — يمنع flash عند التحديث -->
<script>
(function(){
var t = localStorage.getItem('sbtp_theme') || 'dark';
var bgMap = { light:'#EEE8DC', gold:'#100D07', dark:'#060A10' };
document.documentElement.classList.add(t);
document.documentElement.dataset.theme = t;
document.documentElement.style.background = bgMap[t] || bgMap.dark;
})();
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="application-name" content="SmartStruct">
<meta name="apple-mobile-web-app-title" content="SmartStruct">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="mobile-web-app-capable" content="yes">
<title>SmartStruct — منصة إدارة مشاريع المقاولة</title>
<meta name="theme-color" content="#0A0F18">
<link rel="shortcut icon" href="assets/icons/favicon.ico" type="image/x-icon">
<link rel="icon" type="image/svg+xml" href="assets/icons/favicon.svg">
<link rel="icon" type="image/png" sizes="32x32" href="assets/icons/icon-32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/icons/icon-16.png">
<link rel="apple-touch-icon" sizes="180x180" href="assets/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/icons/icon-192.png">
<meta property="og:title" content="SmartStruct — منصة إدارة مشاريع المقاولة">
<meta property="og:description" content="منصة ذكية لإدارة مشاريع البناء والمقاولات في الجزائر">
<meta property="og:image" content="assets/icons/icon-512.png">
<meta property="og:type" content="website">
<meta name="description" content="SmartStruct — منصة ذكية لإدارة مشاريع البناء والمقاولات في الجزائر">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@300;400;500;700;800;900&display=swap">
<script>
// ═══════════════════════════════════════════════════════════════
// SmartStruct i18n — Arabic (default) + French + English
// ═══════════════════════════════════════════════════════════════
const i18n = {
ar: {
// Meta
pageTitle: "SmartStruct — منصة إدارة مشاريع المقاولة",
metaDesc: "SmartStruct — منصة ذكية لإدارة مشاريع البناء والمقاولات في الجزائر",
// Nav
nav_platform: "المنصة",
nav_workflow: "سير العمل",
nav_documents: "الوثائق",
nav_pricing: "الأسعار",
nav_faq: "أسئلة",
nav_login: "تسجيل الدخول",
nav_start: "ابدأ مجاناً",
// Hero
hero_eyebrow: "إصدار 7.4 · مصمَّم في الجزائر",
hero_h1_pre: "منصة موحَّدة لإدارة",
hero_h1_post: "من العقد إلى التسليم.",
hero_rotator: ["المقاولة","المشاريع","الفواتير","الورشة"],
hero_lead: "كل ما تحتاجه شركة مقاولات جزائرية لإدارة المشاريع، الفواتير، الرواتب، المخزون، والوثائق القانونية حسب التشريع المحلي — في مكان واحد، بلغتين، بدون فوضى.",
hero_cta_primary: "جرّب مجاناً 14 يوم",
hero_cta_secondary: "شاهد كيف يعمل",
hero_status: "الخوادم تعمل بشكل طبيعي",
hero_compliance: "RC · NIF · NIS · TVA 19% — مدعومة",
// Dashboard mockup
dash_title: "smartstruct.dz / لوحة التحكم",
dash_date: "نوفمبر 2025",
kpi1_label: "إيرادات الشهر",
kpi1_unit: "دج",
kpi1_delta: "▲ 12.4% عن الشهر السابق",
kpi2_label: "مشاريع نشطة",
kpi2_delta: "▲ 3 مشاريع جديدة",
kpi3_label: "معدل التحصيل",
kpi3_delta: "▼ 2.1 نقطة",
chart_title: "السيولة المتوقعة — 90 يوم",
chart_in: "الداخل",
chart_out: "الخارج",
invoice_title: "آخر الفواتير",
invoice_count: "3 من 47",
inv1_name: "مقاولة الإنشاءات الكبرى — فيلا R+2",
inv1_amt: "680,000 دج",
inv1_tag: "مدفوعة",
inv2_name: "شركة الجنوب — أعمال ترصيف",
inv2_amt: "1,250,000 دج",
inv2_tag: "قيد المراجعة",
inv3_name: "بلدية البليدة — مدرسة ابتدائية",
inv3_amt: "3,400,000 دج",
inv3_tag: "متأخرة 12 يوم",
float1_t1: "وثيقة جديدة",
float1_t2: "فاتورة 0247 — جاهزة",
float2_t1: "تحصيل",
float2_t2: "+ 680,000 دج",
// Ticker
ticker_rc: "السجل التجاري · مدمج",
ticker_nif: "الرقم الجبائي · تلقائي",
ticker_nis: "رقم الإحصائي · مدمج",
ticker_tva: "القانون الجبائي الجزائري",
ticker_cnas: "الضمان الاجتماعي",
ticker_irg: "الشرائح الجبائية",
ticker_ccp: "كشوف البنك · استيراد آلي",
ticker_chargily: "Edahabia · CIB",
// Trust
trust_label_title: "مقاييس المنصة",
trust_label_sub: "أرقام حقيقية من نظامنا التشغيلي",
trust_stat1: "وحدة مترابطة",
trust_stat2: "وثيقة قانونية جزائرية",
trust_stat3: "عربي · فرنسي على نفس المستند",
trust_stat4: "جاهزية الخدمة",
// Features
feat_eyebrow: "القدرات",
feat_h2_pre: "كل ما تحتاجه",
feat_h2_suf: "والإدارة",
feat_h2_mid: "الورشة",
feat_p: "صُممت SmartStruct لتعالج تحديات مقاولات البناء في الجزائر تحديداً: من تنظيم العمال ومتابعة المعدات، إلى توليد الوثائق القانونية المعقدة، مروراً بالتقارير المالية المطابقة للقانون الجبائي والاجتماعي.",
tile1_h3: "SmartAI — مساعد ذكي يعرف بياناتك",
tile1_p: "اسأل بالعربية أو الفرنسية عن أي مشروع، فاتورة، أو عامل — تحصل على إجابة فورية مدعومة بأرقامك الفعلية، مع توصيات مالية وتنبيهات للمخاطر.",
tile2_h3: "22 وثيقة قانونية",
tile2_p: "من الفاتورة الشكلية إلى محضر الاستلام النهائي. ثنائية اللغة مع RC · NIF · NIS تلقائياً.",
tile3_h3: "توقعات السيولة لـ 90 يوماً",
tile3_p: "منحنى تنبؤي يجمع الفواتير المعلقة، الرواتب القادمة، والمصاريف الثابتة — لتعرف متى ستضيق سيولتك قبل أن تضيق.",
tile4_h3: "رواتب وعقود مطابقة للقانون",
tile4_p: "حساب آلي لـ CNAS 9% و IRG حسب الشرائح الجزائرية. عقود CDD · CDI · CTA جاهزة للطباعة بصياغة قانونية صحيحة.",
tile5_h3: "وضع الورشة + QR",
tile5_p: "موبايل مبسَّط لرئيس الورشة: حضور، صور، طلبات، وتتبع المعدات بـ GPS ورموز QR.",
tile6_h3: "سجل تدقيق كامل",
tile6_p: "كل تعديل مسجَّل: من، متى، وما الذي تغيَّر — مع نسخة قبل وبعد.",
tile7_h3: "توقيع إلكتروني",
tile7_p: "رابط فريد للعميل لتوقيع الفاتورة أو محضر الاستلام عبر هاتفه — دون طباعة.",
ai_user_msg: "ما هي أبرز المخاطر المالية هذا الشهر؟",
ai_bot_strong: "3 مخاطر:",
ai_bot_msg: " فاتورة البليدة متأخرة 12 يوم. السيولة تكفي حتى 28/11. عقد العامل أ. سيف ينتهي بعد 9 أيام.",
ai_phrases: ["اقتراحاتك؟","أرسل تذكيراً للعميل","حلّل التدفق النقدي","أكمل العقد للعامل"],
ai_phrases_typing: "اقتراحاتك؟",
// Workflow
wf_eyebrow: "سير العمل",
wf_h2_pre: "من",
wf_h2_accent: "العقد",
wf_h2_suf: "إلى التسليم.",
wf_p: "دورة حياة المشروع كاملة، خطوة بخطوة. كل وثيقة تستورد من سابقتها تلقائياً، وكل رقم يُحسب من قواعد التشريع الجزائري.",
step1_n: "01 · ما قبل التعاقد",
step1_h4: "عرض الخدمة وكشف الكمي",
step1_p: "أنشئ Devis Estimatif بنظام LOTs، جدول الأسعار الوحدوية BPU، وعرض الخدمة مع السوابق والموارد البشرية.",
step2_n: "02 · التنفيذ",
step2_h4: "الميدان واليوميات",
step2_p: "محضر بدء الأشغال، كشف المرفقات، يوميات الورشة. تسجيل الحضور والصور من الموبايل مباشرة.",
step3_n: "03 · الفوترة",
step3_h4: "وضعيات وفواتير تسبيق",
step3_p: "كشف الأشغال مع خصم تلقائي للسابقة، التسبيقات، وضمان حسن التنفيذ 5%. حتى الفاتورة النهائية وتصفية الحساب.",
step4_n: "04 · الاستلام",
step4_h4: "محاضر الاستلام",
step4_p: "محضر مؤقت مع تحفظات، ثم محضر نهائي. مع توقيع إلكتروني للعميل وأرشفة آلية في سحابة Google Drive.",
// Documents
doc_eyebrow: "مكتبة الوثائق",
doc_h2_pre: "22 وثيقة جاهزة",
doc_h2_accent: "القانون الجزائري",
doc_h2_mid: "وفق",
doc_p: "مرتَّبة على دورة حياة المشروع. كل وثيقة تحوي تلقائياً البيانات القانونية الإلزامية: RC, NIF, NIS, رقم المادة الجبائية، RIB. ثنائية اللغة عربي · فرنسي.",
doc_sec1_h4: "الوثائق التجارية والتعاقدية",
doc_sec1_count: "04 وثائق",
doc_sec2_h4: "وثائق الميدان والتنفيذ",
doc_sec2_count: "05 وثائق",
doc_sec3_h4: "النظام المالي والفوترة",
doc_sec3_count: "04 وثائق",
doc_more_lbl: "و 18 وثيقة أخرى",
doc_more_sub: "في الأقسام 02 → 05",
cat_proforma_lbl: "فاتورة شكلية",
cat_devest_lbl: "كشف كمي وتقديري",
cat_bpu_lbl: "جدول الأسعار الوحدوية",
cat_offsrv_lbl: "عرض الخدمة",
cat_pvouv_lbl: "محضر بدء الأشغال",
cat_att_lbl: "كشف المرفقات",
cat_jc_lbl: "يوميات الورشة",
cat_pvprv_lbl: "استلام مؤقت",
cat_pvdef_lbl: "استلام نهائي",
cat_facaco_lbl: "فاتورة تسبيق",
cat_sittrv_lbl: "وضعية أشغال",
cat_facdef_lbl: "فاتورة نهائية",
cat_quit_lbl: "وصل تسديد",
// Pricing
price_eyebrow: "الأسعار",
price_h2_pre: "تسعير عادل،",
price_h2_accent: "الجزائري",
price_h2_mid: "بالدينار",
price_p: "14 يوماً مجاناً، بدون بطاقة بنكية. الدفع عبر Chargily Pay — Edahabia أو CIB. غيِّر خطتك أو ألغها في أي وقت من لوحة التحكم.",
plan1_name: "المبتدئ",
plan1_desc: "للمقاولين الجدد والشركات الصغيرة (حتى 3 مستخدمين).",
plan1_price: "4,900",
plan1_cur: "دج / شهر",
plan1_period: "شامل TVA · فوترة شهرية",
plan1_f1: "حتى 10 مشاريع نشطة",
plan1_f2: "الفوترة والمحاسبة الأساسية",
plan1_f3: "الوثائق التجارية (4)",
plan1_f4: "دعم بالبريد الإلكتروني",
plan1_btn: "ابدأ الفترة التجريبية",
plan2_tag: "الأكثر طلباً",
plan2_name: "المحترف",
plan2_desc: "لشركات المقاولات المتوسطة مع ورشات متعددة (حتى 15 مستخدماً).",
plan2_price: "12,900",
plan2_cur: "دج / شهر",
plan2_period: "شامل TVA · فوترة شهرية",
plan2_f1: "مشاريع غير محدودة",
plan2_f2: "كل الـ 22 وثيقة قانونية",
plan2_f3: "SmartAI · توقعات السيولة",
plan2_f4: "وضع الورشة + GPS للمعدات",
plan2_f5: "دعم ذو أولوية (خلال 4 ساعات)",
plan2_btn: "ابدأ الفترة التجريبية",
plan3_name: "الشركة",
plan3_desc: "لشركات البناء الكبرى ومجموعات الفروع (مستخدمون غير محدودين).",
plan3_price: "حسب الطلب",
plan3_period: "عقد سنوي مخصص",
plan3_f1: "كل ميزات المحترف",
plan3_f2: "تثبيت في خادم خاص",
plan3_f3: "صلاحيات مخصصة (Roles)",
plan3_f4: "SLA 99.9% + مدير حساب",
plan3_f5: "تدريب الفريق على المنصة",
plan3_btn: "تواصل معنا",
// FAQ
faq_eyebrow: "أسئلة شائعة",
faq_h2: "كل ما تحتاج",
faq_h2_accent: "معرفته",
faq1_q: "هل البيانات تُخزَّن داخل الجزائر؟",
faq1_a: "نعم. خوادمنا في مراكز بيانات بأوروبا مع نسخ احتياطية يومية، ويمكنك تصدير كامل بياناتك بصيغة JSON أو Excel في أي وقت. للخطة \"الشركة\" يمكن التثبيت على خادم خاص داخل الجزائر.",
faq2_q: "هل الوثائق المُولَّدة معتمدة قانونياً؟",
faq2_a: "كل الوثائق صيغت وفق التشريعات الجزائرية السارية (قانون الضرائب، قانون العمل، قانون الصفقات العمومية)، وتحوي البيانات القانونية الإلزامية: RC, NIF, NIS, رقم المادة، RIB. النماذج راجعها خبير محاسب معتمد.",
faq3_q: "هل يمكنني الدفع عبر Edahabia أو CIB؟",
faq3_a: "نعم. الدفع يتم عبر Chargily Pay الذي يدعم Edahabia و بطاقات CIB. للشركات نقبل أيضاً التحويل البنكي مع فاتورة رسمية شهرية أو سنوية.",
faq4_q: "ما الذي يحدث بعد انتهاء الـ 14 يوم تجريبي؟",
faq4_a: "إذا لم تختر خطة، يتحوّل الحساب إلى وضع \"للقراءة فقط\" لمدة 30 يوماً — يمكنك تصدير بياناتك بحرية، لكن لا يمكنك إضافة جديد. بعدها يُحفظ الحساب في الأرشيف ويمكن إعادة تفعيله متى شئت.",
faq5_q: "هل تعمل المنصة بدون إنترنت في الورشة؟",
faq5_a: "نعم جزئياً. وضع الورشة (Mobile Mode) يحفظ التسجيلات محلياً (حضور، صور، طلبات صرف) ويزامنها تلقائياً عند توفر الإنترنت. التطبيق الكامل في المكتب يحتاج اتصالاً.",
// CTA
cta_h2_pre: "ابدأ في إدارة مشاريعك",
cta_h2_accent: "يستحقها بناؤك",
cta_h2_mid: "كما",
cta_p: "14 يوماً مجاناً، بدون بطاقة بنكية. الإعداد يستغرق أقل من 7 دقائق، والوثائق الأولى جاهزة في نفس اليوم.",
cta_btn_primary: "إنشاء حساب مجاني",
cta_btn_secondary: "احجز عرضاً تجريبياً",
cta_note: "لا حاجة لبطاقة بنكية · إلغاء في أي وقت",
// Footer
foot_desc: "منصة موحَّدة لإدارة مشاريع البناء والمقاولات في الجزائر — من العقد إلى التسليم.",
foot_col1: "المنصة",
foot_col2: "الشركة",
foot_col3: "قانوني",
foot_feat: "القدرات",
foot_workflow: "سير العمل",
foot_docs: "الوثائق",
foot_pricing: "الأسعار",
foot_about: "من نحن",
foot_contact: "تواصل",
foot_jobs: "وظائف",
foot_admin: "لوحة الإدارة",
foot_terms: "شروط الاستخدام",
foot_privacy: "سياسة الخصوصية",
foot_data: "معالجة البيانات",
foot_status: "حالة الخدمة",
foot_copy: "© 2026 SmartStruct — صُمم في الجزائر",
foot_version: "الإصدار 7.4 · آخر تحديث 23 ماي 2026",
// Lang switcher
lang_switch_label: "FR",
lang_switch_title: "Passer en français",
},
en: {
pageTitle: "SmartStruct — Construction Project Management Platform",
metaDesc: "SmartStruct — Intelligent platform for managing construction and contracting projects in Algeria",
nav_platform: "Platform",
nav_workflow: "Workflow",
nav_documents: "Documents",
nav_pricing: "Pricing",
nav_faq: "FAQ",
nav_login: "Log In",
nav_start: "Get Started",
hero_eyebrow: "Version 7.4 · Built in Algeria",
hero_h1_pre: "One unified platform to manage",
hero_h1_post: "From contract to handover.",
hero_rotator: ["Construction","Projects","Invoicing","The Site"],
hero_lead: "Everything an Algerian construction company needs to manage projects, invoices, payroll, inventory, and legal documents in compliance with local regulations — all in one place, in three languages, without the chaos.",
hero_cta_primary: "Try free for 14 days",
hero_cta_secondary: "See how it works",
hero_status: "All systems operational",
hero_compliance: "RC · NIF · NIS · TVA 19% — Supported",
dash_title: "smartstruct.dz / Dashboard",
dash_date: "November 2025",
kpi1_label: "Monthly Revenue",
kpi1_unit: "DZD",
kpi1_delta: "▲ 12.4% vs last month",
kpi2_label: "Active Projects",
kpi2_delta: "▲ 3 new projects",
kpi3_label: "Collection Rate",
kpi3_delta: "▼ 2.1 points",
chart_title: "Cash Flow Forecast — 90 Days",
chart_in: "Inflows",
chart_out: "Outflows",
invoice_title: "Latest Invoices",
invoice_count: "3 of 47",
inv1_name: "Grande Construction Co. — Villa R+2",
inv1_amt: "680,000 DZD",
inv1_tag: "Paid",
inv2_name: "Southern Co. — Paving Works",
inv2_amt: "1,250,000 DZD",
inv2_tag: "Under Review",
inv3_name: "Blida Municipality — Primary School",
inv3_amt: "3,400,000 DZD",
inv3_tag: "Overdue 12 days",
float1_t1: "New Document",
float1_t2: "Invoice 0247 — Ready",
float2_t1: "Collection",
float2_t2: "+ 680,000 DZD",
ticker_rc: "Trade Register · Integrated",
ticker_nif: "Tax ID · Automatic",
ticker_nis: "Statistical Number · Integrated",
ticker_tva: "Algerian Tax Code",
ticker_cnas: "Social Security",
ticker_irg: "Income Tax Brackets",
ticker_ccp: "Bank Statements · Auto-import",
ticker_chargily: "Edahabia · CIB",
trust_label_title: "Platform Metrics",
trust_label_sub: "Real numbers from our live system",
trust_stat1: "Interconnected modules",
trust_stat2: "Algerian legal documents",
trust_stat3: "Arabic · French on the same doc",
trust_stat4: "Service uptime",
feat_eyebrow: "Capabilities",
feat_h2_pre: "Everything you need for",
feat_h2_suf: "and the office",
feat_h2_mid: "the site",
feat_p: "SmartStruct is designed to tackle the specific challenges of construction companies in Algeria: from managing workers and equipment, to generating complex legal documents, through financial reports compliant with tax and labor law.",
tile1_h3: "SmartAI — Intelligent assistant that knows your data",
tile1_p: "Ask in Arabic, French or English about any project, invoice, or worker — get an instant answer backed by your real numbers, with financial recommendations and risk alerts.",
tile2_h3: "22 Legal Documents",
tile2_p: "From the proforma invoice to the final acceptance report. Bilingual with RC · NIF · NIS automatically.",
tile3_h3: "90-Day Cash Flow Forecasting",
tile3_p: "A predictive curve combining pending invoices, upcoming payroll and fixed expenses — so you know when cash will be tight before it is.",
tile4_h3: "Payroll & Contracts Compliant with Law",
tile4_p: "Automatic calculation of CNAS 9% and IRG per Algerian tax brackets. CDD · CDI · CTA contracts ready to print with correct legal wording.",
tile5_h3: "Site Mode + QR",
tile5_p: "Simplified mobile interface for the site manager: attendance, photos, requests, and equipment tracking via GPS and QR codes.",
tile6_h3: "Full Audit Log",
tile6_p: "Every change recorded: who, when, and what changed — with before and after snapshots.",
tile7_h3: "Electronic Signature",
tile7_p: "A unique link for the client to sign the invoice or acceptance report from their phone — no printing needed.",
ai_user_msg: "What are the main financial risks this month?",
ai_bot_strong: "3 risks:",
ai_bot_msg: " Blida invoice is 12 days overdue. Cash flow sufficient until 28/11. Worker A. Saif's contract expires in 9 days.",
ai_phrases: ["Your suggestions?","Send client reminder","Analyze cash flow","Complete worker contract"],
ai_phrases_typing: "Your suggestions?",
wf_eyebrow: "Workflow",
wf_h2_pre: "From",
wf_h2_accent: "contract",
wf_h2_suf: "to handover.",
wf_p: "The full project lifecycle, step by step. Each document automatically imports data from the previous one, and every figure is calculated per Algerian regulations.",
step1_n: "01 · Pre-Contract",
step1_h4: "Service Offer & Bill of Quantities",
step1_p: "Create an Estimative Quote by LOT system, the Unit Price Schedule (BPU), and the service offer with references and human resources.",
step2_n: "02 · Execution",
step2_h4: "Field Work & Site Journal",
step2_p: "Site opening report, attachments, site journal. Attendance recording and photos directly from mobile.",
step3_n: "03 · Billing",
step3_h4: "Progress Situations & Advance Invoices",
step3_p: "Works situation with automatic deduction of advances and 5% performance bond. Through to the final invoice and final account.",
step4_n: "04 · Handover",
step4_h4: "Acceptance Reports",
step4_p: "Provisional acceptance with reservations, then final acceptance. With electronic client signature and automatic archiving to Google Drive.",
doc_eyebrow: "Document Library",
doc_h2_pre: "22 documents ready",
doc_h2_accent: "Algerian law",
doc_h2_mid: "compliant with",
doc_p: "Organised around the project lifecycle. Every document automatically includes mandatory legal references: RC, NIF, NIS, tax article, RIB. Bilingual Arabic · French.",
doc_sec1_h4: "Commercial & Contractual Documents",
doc_sec1_count: "04 documents",
doc_sec2_h4: "Field & Execution Documents",
doc_sec2_count: "05 documents",
doc_sec3_h4: "Financial System & Invoicing",
doc_sec3_count: "04 documents",
doc_more_lbl: "and 18 more documents",
doc_more_sub: "in sections 02 → 05",
cat_proforma_lbl: "Proforma Invoice",
cat_devest_lbl: "Bill of Quantities",
cat_bpu_lbl: "Unit Price Schedule",
cat_offsrv_lbl: "Service Offer",
cat_pvouv_lbl: "Site Opening Report",
cat_att_lbl: "Attachment",
cat_jc_lbl: "Site Journal",
cat_pvprv_lbl: "Provisional Acceptance",
cat_pvdef_lbl: "Final Acceptance",
cat_facaco_lbl: "Advance Invoice",
cat_sittrv_lbl: "Works Situation",
cat_facdef_lbl: "Final Invoice",
cat_quit_lbl: "Payment Receipt",
price_eyebrow: "Pricing",
price_h2_pre: "Fair pricing,",
price_h2_accent: "Algerian",
price_h2_mid: "in Dinars",
price_p: "14 days free, no credit card required. Payment via Chargily Pay — Edahabia or CIB. Change or cancel your plan at any time from the dashboard.",
plan1_name: "Starter",
plan1_desc: "For new contractors and small companies (up to 3 users).",
plan1_price: "4,900",
plan1_cur: "DZD / month",
plan1_period: "VAT included · Monthly billing",
plan1_f1: "Up to 10 active projects",
plan1_f2: "Basic billing & accounting",
plan1_f3: "Commercial documents (4)",
plan1_f4: "Email support",
plan1_btn: "Start Free Trial",
plan2_tag: "Most Popular",
plan2_name: "Professional",
plan2_desc: "For mid-size construction companies with multiple sites (up to 15 users).",
plan2_price: "12,900",
plan2_cur: "DZD / month",
plan2_period: "VAT included · Monthly billing",
plan2_f1: "Unlimited projects",
plan2_f2: "All 22 legal documents",
plan2_f3: "SmartAI · Cash flow forecasts",
plan2_f4: "Site mode + GPS equipment tracking",
plan2_f5: "Priority support (within 4 hours)",
plan2_btn: "Start Free Trial",
plan3_name: "Enterprise",
plan3_desc: "For large construction firms and multi-branch groups (unlimited users).",
plan3_price: "Custom",
plan3_period: "Annual custom contract",
plan3_f1: "All Professional features",
plan3_f2: "Private server installation",
plan3_f3: "Custom permissions (Roles)",
plan3_f4: "SLA 99.9% + Account Manager",
plan3_f5: "Team training on the platform",
plan3_btn: "Contact Us",
faq_eyebrow: "Frequently Asked Questions",
faq_h2: "Everything you need",
faq_h2_accent: "to know",
faq1_q: "Is data stored inside Algeria?",
faq1_a: "Yes. Our servers are in European data centres with daily backups, and you can export all your data in JSON or Excel at any time. For the \"Enterprise\" plan, installation on a private server inside Algeria is available.",
faq2_q: "Do the generated documents have legal validity?",
faq2_a: "All documents were drafted in compliance with current Algerian legislation (tax code, labour code, public procurement code) and include mandatory legal references: RC, NIF, NIS, tax article, RIB. Templates were validated by a certified accountant.",
faq3_q: "Can I pay via Edahabia or CIB?",
faq3_a: "Yes. Payment is made via Chargily Pay, which supports Edahabia and CIB cards. For companies, we also accept bank transfers with an official monthly or annual invoice.",
faq4_q: "What happens after the 14-day trial?",
faq4_a: "If you don't choose a plan, the account switches to \"read-only\" mode for 30 days — you can export your data freely but cannot add new entries. After that, the account is archived and can be reactivated whenever you wish.",
faq5_q: "Does the platform work offline at the construction site?",
faq5_a: "Yes, partially. Site Mode (Mobile Mode) saves records locally (attendance, photos, material requests) and syncs them automatically once internet is available. The full office application requires a connection.",
cta_h2_pre: "Start managing your projects",
cta_h2_accent: "deserves your work",
cta_h2_mid: "as it",
cta_p: "14 days free, no credit card required. Setup takes less than 7 minutes and your first documents are ready on the same day.",
cta_btn_primary: "Create a Free Account",
cta_btn_secondary: "Book a Demo",
cta_note: "No credit card · Cancel anytime",
foot_desc: "Unified platform for managing construction and contracting projects in Algeria — from contract to handover.",
foot_col1: "Platform",
foot_col2: "Company",
foot_col3: "Legal",
foot_feat: "Features",
foot_workflow: "Workflow",
foot_docs: "Documents",
foot_pricing: "Pricing",
foot_about: "About",
foot_contact: "Contact",
foot_jobs: "Jobs",
foot_admin: "Admin Panel",
foot_terms: "Terms of Use",
foot_privacy: "Privacy Policy",
foot_data: "Data Processing",
foot_status: "Service Status",
foot_copy: "© 2026 SmartStruct — Built in Algeria",
foot_version: "Version 7.4 · Last updated May 23, 2026",
lang_switch_label: "AR",
lang_switch_title: "Switch to Arabic",
},
fr: {
pageTitle: "SmartStruct — Plateforme de Gestion de Projets BTP",
metaDesc: "SmartStruct — Plateforme intelligente de gestion de chantiers et travaux en Algérie",
nav_platform: "Plateforme",
nav_workflow: "Workflow",
nav_documents: "Documents",
nav_pricing: "Tarifs",
nav_faq: "FAQ",
nav_login: "Se connecter",
nav_start: "Commencer",
hero_eyebrow: "Version 7.4 · Conçu en Algérie",
hero_h1_pre: "Plateforme unifiée pour gérer",
hero_h1_post: "Du contrat à la réception.",
hero_rotator: ["le BTP","vos projets","la facturation","le chantier"],
hero_lead: "Tout ce dont une entreprise de construction algérienne a besoin pour gérer ses projets, factures, salaires, stocks et documents juridiques conformes à la législation locale — en un seul endroit, sans désordre.",
hero_cta_primary: "Essayer gratuitement 14 jours",
hero_cta_secondary: "Voir comment ça marche",
hero_status: "Serveurs opérationnels",
hero_compliance: "RC · NIF · NIS · TVA 19% — Pris en charge",
dash_title: "smartstruct.dz / Tableau de bord",
dash_date: "Novembre 2025",
kpi1_label: "Revenus du mois",
kpi1_unit: "DA",
kpi1_delta: "▲ 12,4% vs mois précédent",
kpi2_label: "Projets actifs",
kpi2_delta: "▲ 3 nouveaux projets",
kpi3_label: "Taux de recouvrement",
kpi3_delta: "▼ 2,1 points",
chart_title: "Trésorerie prévisionnelle — 90 jours",
chart_in: "Entrées",
chart_out: "Sorties",
invoice_title: "Dernières factures",
invoice_count: "3 sur 47",
inv1_name: "Grandes Constructions — Villa R+2",
inv1_amt: "680 000 DA",
inv1_tag: "Payée",
inv2_name: "Société du Sud — Travaux de dallage",
inv2_amt: "1 250 000 DA",
inv2_tag: "En révision",
inv3_name: "Commune de Blida — École primaire",
inv3_amt: "3 400 000 DA",
inv3_tag: "En retard 12j",
float1_t1: "Nouveau document",
float1_t2: "Facture 0247 — Prête",
float2_t1: "Recouvrement",
float2_t2: "+ 680 000 DA",
ticker_rc: "Registre de commerce · Intégré",
ticker_nif: "Numéro fiscal · Automatique",
ticker_nis: "Numéro statistique · Intégré",
ticker_tva: "Droit fiscal algérien",
ticker_cnas: "Sécurité sociale",
ticker_irg: "Tranches de l'IRG",
ticker_ccp: "Relevés bancaires · Import auto",
ticker_chargily: "Edahabia · CIB",
trust_label_title: "Indicateurs de la plateforme",
trust_label_sub: "Chiffres réels de notre système",
trust_stat1: "modules interconnectés",
trust_stat2: "documents juridiques algériens",
trust_stat3: "Arabe · Français sur le même doc",
trust_stat4: "disponibilité du service",
feat_eyebrow: "Fonctionnalités",
feat_h2_pre: "Tout ce dont vous avez besoin",
feat_h2_suf: "et le bureau",
feat_h2_mid: "pour le chantier",
feat_p: "SmartStruct est conçu pour répondre aux défis spécifiques des entreprises de construction en Algérie : de la gestion des ouvriers et du matériel, à la génération de documents juridiques complexes, en passant par les rapports financiers conformes à la législation fiscale et sociale.",
tile1_h3: "SmartAI — Assistant intelligent qui connaît vos données",
tile1_p: "Posez vos questions en arabe ou en français sur n'importe quel projet, facture ou employé — obtenez une réponse instantanée basée sur vos chiffres réels, avec des recommandations financières et des alertes de risques.",
tile2_h3: "22 documents juridiques",
tile2_p: "De la facture proforma au procès-verbal de réception définitive. Bilingue avec RC · NIF · NIS automatiquement.",
tile3_h3: "Prévisions de trésorerie 90 jours",
tile3_p: "Une courbe prévisionnelle combinant factures en attente, salaires à venir et charges fixes — pour anticiper les tensions de trésorerie avant qu'elles surviennent.",
tile4_h3: "Salaires et contrats conformes à la loi",
tile4_p: "Calcul automatique de la CNAS 9% et de l'IRG selon les tranches algériennes. Contrats CDD · CDI · CTA prêts à imprimer avec une rédaction juridique correcte.",
tile5_h3: "Mode chantier + QR",
tile5_p: "Interface mobile simplifiée pour le chef de chantier : présences, photos, demandes et suivi des équipements par GPS et QR codes.",
tile6_h3: "Journal d'audit complet",
tile6_p: "Chaque modification est enregistrée : qui, quand, et ce qui a changé — avec version avant et après.",
tile7_h3: "Signature électronique",
tile7_p: "Lien unique pour que le client signe la facture ou le PV de réception depuis son téléphone — sans impression.",
ai_user_msg: "Quels sont les principaux risques financiers ce mois ?",
ai_bot_strong: "3 risques :",
ai_bot_msg: " Facture Blida en retard de 12 jours. Trésorerie suffisante jusqu'au 28/11. Contrat ouvrier A. Saïf expire dans 9 jours.",
ai_phrases: ["Vos suggestions ?","Envoyer un rappel au client","Analyser le cash-flow","Compléter le contrat"],
ai_phrases_typing: "Vos suggestions ?",
wf_eyebrow: "Workflow",
wf_h2_pre: "Du",
wf_h2_accent: "contrat",
wf_h2_suf: "à la réception.",
wf_p: "Le cycle de vie complet du projet, étape par étape. Chaque document importe automatiquement les données du précédent, chaque chiffre est calculé selon la réglementation algérienne.",
step1_n: "01 · Pré-contractuel",
step1_h4: "Offre de service et métré",
step1_p: "Créez un Devis Estimatif par système de LOTs, le BPU, et l'offre de service avec références et ressources humaines.",
step2_n: "02 · Exécution",
step2_h4: "Terrain et journal de chantier",
step2_p: "PV d'ouverture de chantier, attachement, journal de chantier. Enregistrement des présences et photos depuis le mobile directement.",
step3_n: "03 · Facturation",
step3_h4: "Situations et factures d'acompte",
step3_p: "Situation de travaux avec déduction automatique des avances, retenues de garantie 5%. Jusqu'à la facture définitive et le décompte final.",
step4_n: "04 · Réception",
step4_h4: "Procès-verbaux de réception",
step4_p: "PV provisoire avec réserves, puis PV définitif. Avec signature électronique du client et archivage automatique sur Google Drive.",
doc_eyebrow: "Bibliothèque de documents",
doc_h2_pre: "22 documents prêts",
doc_h2_accent: "la loi algérienne",
doc_h2_mid: "conformes à",
doc_p: "Organisés selon le cycle de vie du projet. Chaque document inclut automatiquement les mentions légales obligatoires : RC, NIF, NIS, article fiscal, RIB. Bilingue arabe · français.",
doc_sec1_h4: "Documents commerciaux et contractuels",
doc_sec1_count: "04 documents",
doc_sec2_h4: "Documents de terrain et d'exécution",
doc_sec2_count: "05 documents",
doc_sec3_h4: "Système financier et facturation",
doc_sec3_count: "04 documents",
doc_more_lbl: "et 18 autres documents",
doc_more_sub: "dans les sections 02 → 05",
cat_proforma_lbl: "Facture Proforma",
cat_devest_lbl: "Devis Estimatif",
cat_bpu_lbl: "Bordereau Prix Unitaire",
cat_offsrv_lbl: "Offre de Service",
cat_pvouv_lbl: "PV d'Ouverture",
cat_att_lbl: "Attachement",
cat_jc_lbl: "Journal de Chantier",
cat_pvprv_lbl: "Réception Provisoire",
cat_pvdef_lbl: "Réception Définitive",
cat_facaco_lbl: "Facture d'Acompte",
cat_sittrv_lbl: "Situation de Travaux",
cat_facdef_lbl: "Facture Définitive",
cat_quit_lbl: "Quittance de Paiement",
price_eyebrow: "Tarifs",
price_h2_pre: "Tarification juste,",
price_h2_accent: "algérien",
price_h2_mid: "en dinar",
price_p: "14 jours gratuits, sans carte bancaire. Paiement via Chargily Pay — Edahabia ou CIB. Changez ou annulez votre forfait à tout moment depuis le tableau de bord.",
plan1_name: "Starter",
plan1_desc: "Pour les nouveaux entrepreneurs et petites entreprises (jusqu'à 3 utilisateurs).",
plan1_price: "4 900",
plan1_cur: "DA / mois",
plan1_period: "TVA incluse · Facturation mensuelle",
plan1_f1: "Jusqu'à 10 projets actifs",
plan1_f2: "Facturation et comptabilité de base",
plan1_f3: "Documents commerciaux (4)",
plan1_f4: "Support par e-mail",
plan1_btn: "Démarrer l'essai",
plan2_tag: "Le plus demandé",
plan2_name: "Professionnel",
plan2_desc: "Pour les entreprises BTP moyennes avec plusieurs chantiers (jusqu'à 15 utilisateurs).",
plan2_price: "12 900",
plan2_cur: "DA / mois",
plan2_period: "TVA incluse · Facturation mensuelle",
plan2_f1: "Projets illimités",
plan2_f2: "Les 22 documents juridiques",
plan2_f3: "SmartAI · Prévisions de trésorerie",
plan2_f4: "Mode chantier + GPS équipements",
plan2_f5: "Support prioritaire (sous 4 heures)",
plan2_btn: "Démarrer l'essai",
plan3_name: "Entreprise",
plan3_desc: "Pour les grandes sociétés de construction et groupes multi-agences (utilisateurs illimités).",
plan3_price: "Sur devis",
plan3_period: "Contrat annuel personnalisé",
plan3_f1: "Toutes les fonctionnalités Pro",
plan3_f2: "Installation sur serveur dédié",
plan3_f3: "Permissions personnalisées (Roles)",
plan3_f4: "SLA 99,9% + Account Manager",
plan3_f5: "Formation de l'équipe sur la plateforme",
plan3_btn: "Nous contacter",
faq_eyebrow: "Questions fréquentes",
faq_h2: "Tout ce que vous devez",
faq_h2_accent: "savoir",
faq1_q: "Les données sont-elles stockées en Algérie ?",
faq1_a: "Oui. Nos serveurs sont dans des datacenters en Europe avec sauvegardes quotidiennes, et vous pouvez exporter toutes vos données en JSON ou Excel à tout moment. Pour le forfait \"Entreprise\", une installation sur serveur privé en Algérie est possible.",
faq2_q: "Les documents générés ont-ils une valeur juridique ?",
faq2_a: "Tous les documents ont été rédigés conformément aux législations algériennes en vigueur (code des impôts, code du travail, code des marchés publics) et contiennent les mentions légales obligatoires : RC, NIF, NIS, article fiscal, RIB. Les modèles ont été validés par un expert-comptable agréé.",
faq3_q: "Puis-je payer via Edahabia ou CIB ?",
faq3_a: "Oui. Le paiement se fait via Chargily Pay qui supporte Edahabia et les cartes CIB. Pour les entreprises, nous acceptons également le virement bancaire avec facture officielle mensuelle ou annuelle.",
faq4_q: "Que se passe-t-il après les 14 jours d'essai ?",
faq4_a: "Si vous ne choisissez pas de forfait, le compte passe en mode \"lecture seule\" pendant 30 jours — vous pouvez exporter vos données librement, mais vous ne pouvez plus en ajouter. Ensuite, le compte est archivé et peut être réactivé quand vous le souhaitez.",
faq5_q: "La plateforme fonctionne-t-elle sans internet sur le chantier ?",
faq5_a: "Oui, partiellement. Le mode chantier (Mobile Mode) sauvegarde les enregistrements localement (présences, photos, demandes) et les synchronise automatiquement dès qu'internet est disponible. L'application complète au bureau nécessite une connexion.",
cta_h2_pre: "Commencez à gérer vos projets",
cta_h2_accent: "mérite votre construction",
cta_h2_mid: "comme il le",
cta_p: "14 jours gratuits, sans carte bancaire. La configuration prend moins de 7 minutes et vos premiers documents sont prêts le jour même.",
cta_btn_primary: "Créer un compte gratuit",
cta_btn_secondary: "Réserver une démo",
cta_note: "Sans carte bancaire · Annulation à tout moment",
foot_desc: "Plateforme unifiée de gestion de projets de construction et BTP en Algérie — du contrat à la réception.",
foot_col1: "Plateforme",
foot_col2: "Entreprise",
foot_col3: "Légal",
foot_feat: "Fonctionnalités",
foot_workflow: "Workflow",
foot_docs: "Documents",
foot_pricing: "Tarifs",
foot_about: "À propos",
foot_contact: "Contact",
foot_jobs: "Emplois",
foot_admin: "Administration",
foot_terms: "Conditions d'utilisation",
foot_privacy: "Politique de confidentialité",
foot_data: "Traitement des données",
foot_status: "État du service",
foot_copy: "© 2026 SmartStruct — Conçu en Algérie",
foot_version: "Version 7.4 · Dernière mise à jour 23 mai 2026",
lang_switch_label: "EN",
lang_switch_title: "Switch to English",
}
};
// ── i18n engine ──
let currentLang = localStorage.getItem('ss_lang') || 'ar';
function t(key) {
return (i18n[currentLang] && i18n[currentLang][key]) || (i18n['en'] && i18n['en'][key]) || i18n['ar'][key] || key;
}
function applyLang(lang) {
currentLang = lang;
localStorage.setItem('ss_lang', lang);
localStorage.setItem('sbtp_lang', lang); // sync with app.html I18N system
const html = document.documentElement;
const isRTL = lang === 'ar';
html.setAttribute('lang', lang);
html.setAttribute('dir', isRTL ? 'rtl' : 'ltr');
document.title = t('pageTitle');
// Update all [data-i18n] elements
document.querySelectorAll('[data-i18n]').forEach(el => {
const key = el.dataset.i18n;
if (el.dataset.i18nHtml) {
el.innerHTML = t(key);
} else {
el.textContent = t(key);
}
});
// Update all [data-i18n-title] elements
document.querySelectorAll('[data-i18n-title]').forEach(el => {
el.title = t(el.dataset.i18nTitle);
});
// Rotator phrases
updateRotator();
// AI phrases
window._aiPhrases = t('ai_phrases');
// font switch
if (lang === 'ar') {
document.body.style.fontFamily = "'Tajawal', system-ui, sans-serif";
} else {
document.body.style.fontFamily = "'Inter', system-ui, sans-serif";
}
// Update lang switcher highlight
updateLangSwitcher(lang);
}
function updateLangSwitcher(lang) {
['ar','fr','en'].forEach(function(l) {
var btn = document.getElementById('lang-' + l);
if (!btn) return;
if (l === lang) {
btn.style.background = 'rgba(232,184,75,0.18)';
btn.style.color = 'var(--gold)';
btn.style.boxShadow = 'inset 0 0 0 1px rgba(232,184,75,0.35)';
} else {
btn.style.background = 'transparent';
btn.style.color = 'var(--fg-muted)';
btn.style.boxShadow = 'none';
}
});
}
function toggleLang() {
const cycle = { ar: 'fr', fr: 'en', en: 'ar' };
applyLang(cycle[currentLang] || 'ar');
}
function updateRotator() {
const phrases = t('hero_rotator');
const rotator = document.querySelector('.rotator');
if (!rotator) return;
rotator.innerHTML = '';
// ghost uses longest phrase so width auto-fits any language
const longest = phrases.reduce((a, b) => b.length > a.length ? b : a, '');
const ghost = document.createElement('span');
ghost.className = 'ghost';
ghost.textContent = longest;
rotator.appendChild(ghost);
phrases.forEach(p => {
const s = document.createElement('span');
s.textContent = p;
rotator.appendChild(s);
});
}
</script>
<style>
/* ═══════════════════════════════════════════════════════════════════
SmartStruct — Refined Landing
A more editorial, restrained take on the brand:
- Warmer near-black surfaces (#0A0F18 → #131A26)
- Gold reserved for emphasis (not decoration)
- Generous type scale, tight tracking on display
- JetBrains Mono for numerics & micro-labels
═══════════════════════════════════════════════════════════════════ */
:root {
/* Surfaces */
--bg-0: #07080C;
--bg-1: #0B0F17;
--bg-2: #111722;
--bg-3: #1A2231;
--bg-card: #0E141E;
/* Foreground */
--fg: #F2F1EC;
--fg-soft: #C7C9CF;
--fg-muted: #7E8595;
--fg-dim: #4A5266;
/* Gold — used sparingly */
--gold: #E8B84B;
--gold-hi: #F5D07A;
--gold-lo: #B98726;
--gold-deep: #6B4D14;
--gold-tint: rgba(232,184,75,0.10);
--gold-glow: rgba(232,184,75,0.18);
/* Accents */
--green: #6CC59A;
--red: #E47B8B;
/* Lines */
--line: rgba(245,245,235,0.06);
--line-2: rgba(245,245,235,0.12);
/* Type */
--font: 'Tajawal', system-ui, -apple-system, 'Segoe UI', sans-serif;
--mono: 'JetBrains Mono', ui-monospace, monospace;
--shadow-1: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 32px rgba(0,0,0,0.4);
--shadow-2: 0 1px 0 rgba(255,255,255,0.05) inset, 0 30px 80px rgba(0,0,0,0.55);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }
body { overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
font-family: var(--font);
background: var(--bg-0);
color: var(--fg);
font-weight: 400;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--gold); color: #0A0F18; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #2A334A; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: 0; color: inherit; cursor: pointer; }
/* ═══════════════════ Layout primitives ═══════════════════ */
.wrap {
width: 100%;
padding: 0 6%;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
font-family: var(--mono);
font-size: 11px;
font-weight: 600;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--gold);
}
.eyebrow::before {
content: "";
width: 24px;
height: 1px;
background: var(--gold);
opacity: 0.6;
}
.section-label {
font-family: var(--mono);
font-size: 11px;
font-weight: 500;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--fg-dim);
}
/* ═══════════════════ Nav ═══════════════════ */
.nav {
position: fixed;
top: 0; right: 0; left: 0;
z-index: 100;
padding: 18px 0;
background: rgba(7,8,12,0.6);
backdrop-filter: blur(20px) saturate(140%);
-webkit-backdrop-filter: blur(20px) saturate(140%);
border-bottom: 1px solid transparent;
transition: border-color 0.3s ease, background 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
padding: 12px 0;
border-bottom-color: var(--line);
background: rgba(7,8,12,0.85);
}
.nav-inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 32px;
}
.brand {
display: flex;
align-items: center;
gap: 12px;
font-weight: 800;
font-size: 18px;
letter-spacing: -0.01em;
}
.brand-mark {
width: 34px; height: 34px;
border-radius: 9px;
display: block;
object-fit: contain;
box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 6px 16px rgba(232,184,75,0.25);
}
.brand-name { color: var(--fg); }
.brand-tag {
font-family: var(--mono);
font-size: 10px;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--fg-dim);
border-right: 1px solid var(--line-2);
padding-right: 12px;
margin-right: 4px;
}
.nav-links {
display: flex;
align-items: center;
gap: 36px;
}
.nav-links a {
font-size: 14px;
font-weight: 500;
color: var(--fg-soft);
transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
display: flex;
align-items: center;
gap: 12px;
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
height: 42px;
padding: 0 20px;
border-radius: 8px;
font-size: 14px;
font-weight: 700;
white-space: nowrap;
transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.btn-ghost {
color: var(--fg-soft);
}
.btn-ghost:hover { color: var(--fg); }
.btn-outline {
border: 1px solid var(--line-2);
color: var(--fg);
background: transparent;
}
.btn-outline:hover {
border-color: rgba(232,184,75,0.4);
background: var(--gold-tint);
}
.btn-gold {
background: linear-gradient(140deg, #F5D07A 0%, #E8B84B 45%, #B98726 100%);
color: #0A0F18;
box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 6px 18px rgba(232,184,75,0.25);
}
.btn-gold:hover {
transform: translateY(-1px);
box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 10px 28px rgba(232,184,75,0.4);
}
.btn-lg { height: 52px; padding: 0 26px; font-size: 15px; border-radius: 10px; }
.btn .arrow {
width: 14px; height: 14px;
transition: transform 0.25s;
}
.btn:hover .arrow { transform: translateX(-3px); }
/* ═══════════════════ Hero ═══════════════════ */
.hero {
position: relative;
padding: 100px 0 100px;
overflow: visible;
border-bottom: 1px solid var(--line);
}
.hero::before {
content: "";
position: absolute;
inset: 0;
background:
radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232,184,75,0.10), transparent 60%),
radial-gradient(ellipse 60% 40% at 90% 30%, rgba(232,184,75,0.05), transparent 70%);
pointer-events: none;
z-index: 0;
}
.hero-grid {
position: absolute;
inset: 0;
background-image: