-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
3283 lines (2951 loc) · 209 KB
/
index.html
File metadata and controls
3283 lines (2951 loc) · 209 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="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Cordoba Legal Group - возврат средств от брокеров-мошенников. Официальный chargeback в ЕС. Вернули более $2,800,000 за 2024 год. Работаем по договору цессии.">
<meta name="keywords" content="возврат средств, брокер мошенник, chargeback, юридическая помощь, возврат денег">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="">
<meta property="og:title" content="Cordoba Legal Group - Возврат средств от брокеров-мошенников">
<meta property="og:description" content="Вернем ваши деньги от брокера-мошенника. Законно. Без предоплаты. Работаем по договору цессии.">
<meta property="og:image" content="">
<title>Cordoba Legal Group - Возврат средств от брокеров-мошенников</title>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.4.0/css/all.min.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- International Tel Input -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.6/build/css/intlTelInput.css">
<!-- Professional Theme CSS -->
<link rel="stylesheet" href="css/professional-theme.css">
<style>
:root {
--color-navy: #1a2332;
--color-navy-light: #2d3748;
--color-blue: #2c5282;
--color-blue-light: #3182ce;
--color-gold: #c49b5c;
--color-gold-light: #d4af6a;
}
body {
font-family: 'Inter', sans-serif;
color: #1a2332;
}
.gradient-bg {
background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
}
.gradient-bg-light {
background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
}
.hero-pattern {
background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c49b5c' fill-opacity='0.08'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.smooth-scroll {
scroll-behavior: smooth;
}
.form-input {
height: 48px;
padding: 12px !important;
font-size: 16px;
line-height: 1.5;
border: 1px solid #d1d5db;
border-radius: 8px;
transition: all 0.2s ease;
background: white;
}
.form-input:focus {
outline: none;
border-color: #3b82f6;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-input::placeholder {
color: #9ca3af;
opacity: 1;
}
textarea.form-input {
height: auto;
min-height: 100px;
resize: vertical;
}
.btn-primary {
transition: all 0.3s ease;
letter-spacing: 0.025em;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(44, 82, 130, 0.25);
}
.card-hover {
transition: all 0.3s ease;
border: 1px solid #e2e8f0;
}
.card-hover:hover {
transform: translateY(-4px);
box-shadow: 0 12px 30px rgba(26, 35, 50, 0.12);
border-color: #c49b5c;
}
.sticky-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000; /* Header below modals */
backdrop-filter: blur(10px);
background: rgba(26, 26, 26, 0.95);
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
border-bottom: 1px solid rgba(60, 60, 60, 0.5);
transition: all 0.3s ease;
}
/* Header navigation link styles */
.sticky-header nav a {
color: #e5e7eb !important;
}
.sticky-header nav a:hover {
color: #c49b5c !important;
}
/* Scroll margin for anchor links */
section[id] {
scroll-margin-top: 80px;
}
/* Z-index hierarchy:
* 9999 - Exit-intent modals (top priority)
* 9998 - Consultant widget (below modals)
* 1000 - Sticky header (below widgets)
*/
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in-up {
animation: fadeInUp 0.8s ease-out;
}
.checklist-item {
position: relative;
padding-left: 2.5rem;
}
.checklist-item:before {
content: "✓";
position: absolute;
left: 0;
top: 0;
color: #dc2626;
font-weight: bold;
font-size: 1.5rem;
}
/* Progress bar for calculator */
.progress-bar {
height: 3px;
background: #e2e8f0;
border-radius: 0;
overflow: hidden;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #2c5282, #c49b5c);
transition: width 0.3s ease;
}
/* Mobile menu animation */
.mobile-menu {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.mobile-menu.active {
max-height: 500px;
}
/* Range slider custom styling */
input[type="range"] {
-webkit-appearance: none;
appearance: none;
width: 100%;
height: 6px;
border-radius: 0;
background: #e2e8f0;
outline: none;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
border-radius: 0;
background: #2c5282;
cursor: pointer;
box-shadow: 0 2px 6px rgba(44, 82, 130, 0.3);
}
input[type="range"]::-moz-range-thumb {
width: 20px;
height: 20px;
border-radius: 0;
background: #2c5282;
cursor: pointer;
border: none;
box-shadow: 0 2px 6px rgba(44, 82, 130, 0.3);
}
/* Legal accent */
.accent-border {
border-left: 4px solid #c49b5c;
}
/* Professional shadows */
.shadow-professional {
box-shadow: 0 4px 20px rgba(26, 35, 50, 0.1);
}
/* Video Background */
.video-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 0;
}
.video-background video,
.background-video {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
transform: translate(-50%, -50%);
object-fit: cover;
z-index: 1;
opacity: 0.4;
}
/* Mobile optimizations for video */
@media (max-width: 768px) {
.background-video {
opacity: 0.35;
/* Ensure video plays on mobile */
width: 100%;
height: 100%;
object-position: center center;
}
/* Increase gradient visibility on mobile if video doesn't load */
.animated-video-bg {
opacity: 1;
z-index: 0;
}
}
/* Ensure video is visible on tablets */
@media (min-width: 769px) and (max-width: 1024px) {
.background-video {
opacity: 0.38;
}
}
/* Animated video-style background */
.animated-video-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #0f172a, #1e293b, #1e40af, #3b82f6, #60a5fa, #1e40af, #1e293b, #0f172a);
background-size: 400% 400%;
animation: gradientShift 15s ease-in-out infinite;
will-change: background-position;
}
@keyframes gradientShift {
0% {
background-position: 0% 50%;
}
25% {
background-position: 50% 0%;
}
50% {
background-position: 100% 50%;
}
75% {
background-position: 50% 100%;
}
100% {
background-position: 0% 50%;
}
}
.video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 41, 59, 0.65) 100%);
z-index: 1;
}
.hero-content {
position: relative;
z-index: 3;
}
/* International Tel Input Styling - Улучшенная версия */
.iti {
width: 100%;
display: block;
position: relative;
}
/* Основное поле ввода */
.iti input, .iti input[type=tel] {
width: 100%;
height: 48px;
padding: 12px 12px 12px 85px !important;
font-size: 16px;
line-height: 1.5;
border: 1px solid #d1d5db;
border-radius: 8px;
transition: all 0.2s ease;
background: white;
}
.iti input:focus, .iti input[type=tel]:focus {
outline: none;
border-color: #3b82f6;
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
/* Контейнер флага */
.iti__flag-container {
position: absolute;
top: 0;
bottom: 0;
left: 0;
padding: 0;
}
/* Кнопка выбора страны */
.iti__selected-flag {
z-index: 2;
position: relative;
display: flex;
align-items: center;
height: 100%;
padding: 0 8px 0 12px;
background-color: transparent;
border: none;
border-right: 1px solid #e5e7eb;
cursor: pointer;
transition: background-color 0.2s ease;
outline: none;
}
.iti__selected-flag:hover {
background-color: rgba(0, 0, 0, 0.02);
}
.iti__selected-flag:focus {
background-color: rgba(59, 130, 246, 0.05);
}
/* Стрелка dropdown */
.iti__arrow {
margin-left: 6px;
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 5px solid #6b7280;
transition: all 0.2s ease;
}
.iti__selected-flag:hover .iti__arrow {
border-top-color: #374151;
}
.iti--show-dropdown .iti__arrow {
transform: rotate(180deg);
border-top-color: #3b82f6;
}
/* Флаг страны */
.iti__flag {
width: 20px;
height: 15px;
box-shadow: 0 0 1px rgba(0,0,0,0.2);
}
/* Код страны */
.iti--separate-dial-code .iti__selected-flag {
background-color: transparent;
}
.iti--separate-dial-code .iti__selected-dial-code {
margin-left: 6px;
font-size: 15px;
font-weight: 500;
color: #1f2937;
}
/* Dropdown список стран */
.iti__country-list {
position: absolute;
z-index: 99999 !important;
max-width: 320px;
margin-top: 4px;
padding: 4px 0;
border: 1px solid #e5e7eb;
border-radius: 8px;
background: white;
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
/* Элементы списка */
.iti__country {
padding: 10px 12px;
display: flex;
align-items: center;
transition: background-color 0.15s ease;
cursor: pointer;
}
.iti__country:hover,
.iti__country.iti__highlight {
background-color: #f3f4f6;
}
.iti__country.iti__active {
background-color: #eff6ff;
font-weight: 500;
}
.iti__country-name {
margin-left: 6px;
margin-right: 6px;
font-size: 14px;
color: #1f2937;
}
.iti__dial-code {
color: #6b7280;
font-size: 14px;
}
/* Разделитель предпочтительных стран */
.iti__divider {
margin: 4px 0;
border-bottom: 1px solid #e5e7eb;
}
/* Контейнер dropdown - должен быть поверх всех модальных окон */
.iti--container {
position: absolute;
top: 0;
left: 0;
z-index: 99999 !important;
}
body > .iti__country-list:not(:last-of-type) {
display: none !important;
}
/* Скрываем поле поиска */
.iti__search-input {
display: none !important;
}
/* Анимация встряхивания для ошибок валидации */
@keyframes shake {
0%, 100% { transform: translateX(0); }
10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
20%, 40%, 60%, 80% { transform: translateX(5px); }
}
/* Стили для телефонных полей с ошибками */
input.border-red-500 {
border-color: #ef4444 !important;
}
/* Анимация для сообщений об ошибках */
.phone-error {
animation: fadeIn 0.3s ease-in;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-5px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body class="smooth-scroll">
<!-- HEADER -->
<header id="header" class="sticky-header">
<div class="container mx-auto px-4 py-3">
<div class="flex items-center justify-between">
<a href="#hero" class="flex items-center">
<img src="assets/logo.svg"
alt="Cordoba Legal Group"
class="h-10 md:h-12 w-auto">
</a>
<!-- Desktop Navigation -->
<nav class="hidden lg:flex flex-1 justify-center space-x-8">
<a href="#hero" class="transition font-medium text-sm uppercase tracking-wide">Главная</a>
<a href="#cases" class="transition font-medium text-sm uppercase tracking-wide">Услуги</a>
<a href="#testimonials" class="transition font-medium text-sm uppercase tracking-wide">Отзывы</a>
<a href="#calculator" class="transition font-medium text-sm uppercase tracking-wide">Калькулятор</a>
</nav>
<div class="hidden lg:flex items-center">
<button onclick="openConsultantWidget()" class="bg-blue-500 hover:bg-blue-600 text-white px-6 py-2.5 font-semibold text-xs uppercase tracking-wider rounded transition-all">
Консультация
</button>
</div>
<!-- Mobile Menu Button -->
<button id="mobile-menu-btn" class="lg:hidden text-gray-200">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<!-- Mobile Navigation -->
<nav id="mobile-menu" class="mobile-menu lg:hidden mt-4 border-t border-gray-600 pt-4">
<div class="flex flex-col space-y-2">
<a href="#hero" class="transition py-2 font-medium text-sm uppercase tracking-wide">Главная</a>
<a href="#cases" class="transition py-2 font-medium text-sm uppercase tracking-wide">Услуги</a>
<a href="#testimonials" class="transition py-2 font-medium text-sm uppercase tracking-wide">Отзывы</a>
<a href="#calculator" class="transition py-2 font-medium text-sm uppercase tracking-wide">Калькулятор</a>
</div>
</nav>
</div>
</header>
<!-- БЛОК 1: ГЛАВНЫЙ ЭКРАН (HERO) -->
<section id="hero" class="relative min-h-screen flex items-center pt-32 pb-20 overflow-hidden">
<!-- Video Background -->
<div class="video-background">
<!-- Animated gradient as fallback -->
<div class="animated-video-bg"></div>
<!-- Real background video (optimized for mobile) -->
<video
autoplay
muted
loop
playsinline
preload="auto"
class="background-video"
poster="https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&q=80"
id="hero-video">
<source src="videos/hero-bg-v6.mp4" type="video/mp4">
<!-- Fallback: animated gradient will show if video fails -->
</video>
</div>
<!-- Video Overlay -->
<div class="video-overlay"></div>
<!-- Content -->
<div class="container mx-auto px-4 hero-content">
<div class="grid lg:grid-cols-2 gap-12 items-center">
<!-- Left Column: Text Content -->
<div class="text-white fade-in-up">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-black leading-tight mb-6 tracking-tight">
Вернем ваши деньги от брокера-мошенника. <span class="text-blue-400">Законно. Без предоплаты.</span>
</h1>
<p class="text-xl md:text-2xl mb-8 text-gray-300 leading-relaxed">
Брокер заблокировал счет? Не выводит деньги? Манипулирует котировками?
Проанализируем вашу ситуацию <strong class="text-blue-400">БЕСПЛАТНО</strong> за 24 часа
и скажем, есть ли шанс вернуть от $1,000.
</p>
<!-- УТП (3 преимущества) -->
<div class="space-y-4 mb-8">
<div class="flex items-start space-x-4 bg-white bg-opacity-5 p-4 border-l-4 border-blue-400">
<div class="bg-blue-400 p-2 mt-1">
<i class="fas fa-check text-white text-sm"></i>
</div>
<div>
<h3 class="font-bold text-lg text-white">Официальный chargeback в ЕС</h3>
<p class="text-gray-300 text-sm">Прямые договоры с финуправляющими</p>
</div>
</div>
<div class="flex items-start space-x-4 bg-white bg-opacity-5 p-4 border-l-4 border-blue-400">
<div class="bg-blue-400 p-2 mt-1">
<i class="fas fa-check text-white text-sm"></i>
</div>
<div>
<h3 class="font-bold text-lg text-white">Русскоязычные юристы</h3>
<p class="text-gray-300 text-sm">С опытом работы в банках и регуляторах</p>
</div>
</div>
<div class="flex items-start space-x-4 bg-white bg-opacity-5 p-4 border-l-4 border-blue-400">
<div class="bg-blue-400 p-2 mt-1">
<i class="fas fa-check text-white text-sm"></i>
</div>
<div>
<h3 class="font-bold text-lg text-white">Платите только при успехе</h3>
<p class="text-gray-300 text-sm">Комиссия 25-35% от возвращенной суммы</p>
</div>
</div>
</div>
<div class="flex items-center space-x-6 text-sm text-gray-300 border-t border-gray-600 pt-6">
<div class="flex items-center space-x-2">
<i class="fas fa-users text-blue-400"></i>
<span>Более 500 клиентов</span>
</div>
<div class="flex items-center space-x-2">
<i class="fas fa-dollar-sign text-blue-400"></i>
<span>$2.8M возвращено в 2024</span>
</div>
</div>
</div>
<!-- Right Column: Форма №1 (холодная) -->
<div class="bg-white shadow-professional p-8 md:p-10 border border-gray-200">
<div class="border-l-4 border-blue-600 pl-4 mb-6">
<h3 class="text-2xl md:text-3xl font-bold text-gray-900 mb-2">
Получите бесплатный анализ договора и оценку шансов
</h3>
<p class="text-gray-600 text-sm uppercase tracking-wide">
Конфиденциально • Без обязательств
</p>
</div>
<form id="form-cold" class="space-y-5">
<div>
<label class="block text-gray-900 font-semibold mb-2 text-sm uppercase tracking-wide">Ваше имя *</label>
<input type="text" name="name" required
class="w-full form-input"
placeholder="Иван Иванов">
</div>
<div>
<label class="block text-gray-900 font-semibold mb-2 text-sm uppercase tracking-wide">Ваш телефон *</label>
<input type="tel" id="phone-hero" name="phone" required
class="w-full form-input"
placeholder="">
</div>
<div>
<label class="block text-gray-900 font-semibold mb-2 text-sm uppercase tracking-wide">E-mail *</label>
<input type="email" name="email" required
class="w-full form-input"
placeholder="example@mail.com">
</div>
<!-- Hidden fields for CRM -->
<input type="hidden" name="aff" value="3">
<input type="hidden" name="offer" value="cordoba-legal-new">
<input type="hidden" name="country" value="" class="country-field">
<input type="hidden" name="phonecc" value="" class="phonecc-field">
<button type="submit" class="w-full btn-primary bg-gray-900 hover:bg-gray-800 text-white py-4 font-bold text-sm uppercase tracking-wider shadow-lg rounded-lg">
<i class="fas fa-chart-line mr-2"></i>
Узнать шансы на возврат
</button>
<p class="text-xs text-gray-500 text-center leading-relaxed">
Отправляя данные, вы соглашаетесь с
<a href="privacy-policy.html" class="text-gray-900 underline">политикой конфиденциальности</a>.
</p>
</form>
<!-- Trust badges -->
<div class="mt-6 pt-6 border-t border-gray-200 grid grid-cols-3 gap-4 text-center text-xs text-gray-600">
<div class="flex flex-col items-center space-y-1">
<i class="fas fa-lock text-blue-600 text-lg"></i>
<span class="font-semibold">Безопасно</span>
</div>
<div class="flex flex-col items-center space-y-1">
<i class="fas fa-user-shield text-blue-600 text-lg"></i>
<span class="font-semibold">Конфиденциально</span>
</div>
<div class="flex flex-col items-center space-y-1">
<i class="fas fa-clock text-blue-600 text-lg"></i>
<span class="font-semibold">Ответ 15 мин</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- БЛОК 2: ДИАГНОСТИКА -->
<section id="diagnostic" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto">
<h2 class="text-3xl md:text-4xl lg:text-5xl font-bold text-center text-gray-800 mb-4">
7 признаков, что ваш брокер — <span class="text-red-600">мошенник</span>
</h2>
<p class="text-xl text-center text-gray-600 mb-12">
Проверьте прямо сейчас
</p>
<!-- Slider Container -->
<div class="relative bg-gradient-bg-light rounded-2xl p-8 md:p-12 shadow-lg mb-8">
<!-- Slider Wrapper -->
<div class="overflow-hidden">
<div id="signs-slider" class="flex transition-transform duration-500 ease-in-out">
<!-- Slide 1 -->
<div class="w-full flex-shrink-0">
<div class="bg-white rounded-xl p-6 md:p-8 min-h-[240px] flex flex-col justify-center">
<div class="flex items-center mb-4">
<div class="bg-red-100 rounded-full w-12 h-12 flex items-center justify-center mr-4">
<span class="text-red-600 font-bold text-xl">1</span>
</div>
<h3 class="font-bold text-xl md:text-2xl text-gray-800">
Офшорная юрисдикция
</h3>
</div>
<p class="text-gray-600 text-lg leading-relaxed">
Кипр, Маршалловы острова, Сент-Винсент и Гренадины, Белиз — классические признаки незаконной деятельности.
</p>
</div>
</div>
<!-- Slide 2 -->
<div class="w-full flex-shrink-0">
<div class="bg-white rounded-xl p-6 md:p-8 min-h-[240px] flex flex-col justify-center">
<div class="flex items-center mb-4">
<div class="bg-red-100 rounded-full w-12 h-12 flex items-center justify-center mr-4">
<span class="text-red-600 font-bold text-xl">2</span>
</div>
<h3 class="font-bold text-xl md:text-2xl text-gray-800">
Отказ выводить средства
</h3>
</div>
<p class="text-gray-600 text-lg leading-relaxed">
Под надуманными предлогами: «пополните счет для верификации», «нужна доплата за комиссию», «подождите 30 дней».
</p>
</div>
</div>
<!-- Slide 3 -->
<div class="w-full flex-shrink-0">
<div class="bg-white rounded-xl p-6 md:p-8 min-h-[240px] flex flex-col justify-center">
<div class="flex items-center mb-4">
<div class="bg-red-100 rounded-full w-12 h-12 flex items-center justify-center mr-4">
<span class="text-red-600 font-bold text-xl">3</span>
</div>
<h3 class="font-bold text-xl md:text-2xl text-gray-800">
Агрессивные менеджеры
</h3>
</div>
<p class="text-gray-600 text-lg leading-relaxed">
Дают гарантии доходности, звонят по 10 раз в день, убеждают внести больше денег «на выгодную сделку».
</p>
</div>
</div>
<!-- Slide 4 -->
<div class="w-full flex-shrink-0">
<div class="bg-white rounded-xl p-6 md:p-8 min-h-[240px] flex flex-col justify-center">
<div class="flex items-center mb-4">
<div class="bg-red-100 rounded-full w-12 h-12 flex items-center justify-center mr-4">
<span class="text-red-600 font-bold text-xl">4</span>
</div>
<h3 class="font-bold text-xl md:text-2xl text-gray-800">
Манипуляция котировками
</h3>
</div>
<p class="text-gray-600 text-lg leading-relaxed">
Цены в платформе отличаются от реальных рыночных. Ордера закрываются «по проскальзыванию» не в вашу пользу.
</p>
</div>
</div>
<!-- Slide 5 -->
<div class="w-full flex-shrink-0">
<div class="bg-white rounded-xl p-6 md:p-8 min-h-[240px] flex flex-col justify-center">
<div class="flex items-center mb-4">
<div class="bg-red-100 rounded-full w-12 h-12 flex items-center justify-center mr-4">
<span class="text-red-600 font-bold text-xl">5</span>
</div>
<h3 class="font-bold text-xl md:text-2xl text-gray-800">
Отсутствие лицензии регулятора
</h3>
</div>
<p class="text-gray-600 text-lg leading-relaxed">
Нет лицензии FCA, CySEC, ASIC или других авторитетных регуляторов. Или лицензия поддельная.
</p>
</div>
</div>
<!-- Slide 6 -->
<div class="w-full flex-shrink-0">
<div class="bg-white rounded-xl p-6 md:p-8 min-h-[240px] flex flex-col justify-center">
<div class="flex items-center mb-4">
<div class="bg-red-100 rounded-full w-12 h-12 flex items-center justify-center mr-4">
<span class="text-red-600 font-bold text-xl">6</span>
</div>
<h3 class="font-bold text-xl md:text-2xl text-gray-800">
Сомнительный договор
</h3>
</div>
<p class="text-gray-600 text-lg leading-relaxed">
В договоре вы — «рискующий трейдер», а брокер — «контрагент», который не несет ответственности за ваши потери.
</p>
</div>
</div>
<!-- Slide 7 -->
<div class="w-full flex-shrink-0">
<div class="bg-white rounded-xl p-6 md:p-8 min-h-[240px] flex flex-col justify-center">
<div class="flex items-center mb-4">
<div class="bg-red-100 rounded-full w-12 h-12 flex items-center justify-center mr-4">
<span class="text-red-600 font-bold text-xl">7</span>
</div>
<h3 class="font-bold text-xl md:text-2xl text-gray-800">
Переводы на счета физлиц
</h3>
</div>
<p class="text-gray-600 text-lg leading-relaxed">
Деньги уходят на счета частных лиц или компаний с названиями, не совпадающими с брендом брокера.
</p>
</div>
</div>
</div>
</div>
<!-- Navigation Arrows -->
<button onclick="prevSignSlide()" class="absolute left-2 md:left-4 top-1/2 -translate-y-1/2 bg-white hover:bg-gray-100 rounded-full w-10 h-10 md:w-12 md:h-12 flex items-center justify-center shadow-lg transition z-10">
<i class="fas fa-chevron-left text-gray-800 text-lg"></i>
</button>
<button onclick="nextSignSlide()" class="absolute right-2 md:right-4 top-1/2 -translate-y-1/2 bg-white hover:bg-gray-100 rounded-full w-10 h-10 md:w-12 md:h-12 flex items-center justify-center shadow-lg transition z-10">
<i class="fas fa-chevron-right text-gray-800 text-lg"></i>
</button>
<!-- Dots Navigation -->
<div class="flex justify-center mt-6 space-x-2">
<button onclick="goToSignSlide(0)" class="sign-dot w-3 h-3 rounded-full bg-red-600 transition"></button>
<button onclick="goToSignSlide(1)" class="sign-dot w-3 h-3 rounded-full bg-gray-300 transition"></button>
<button onclick="goToSignSlide(2)" class="sign-dot w-3 h-3 rounded-full bg-gray-300 transition"></button>
<button onclick="goToSignSlide(3)" class="sign-dot w-3 h-3 rounded-full bg-gray-300 transition"></button>
<button onclick="goToSignSlide(4)" class="sign-dot w-3 h-3 rounded-full bg-gray-300 transition"></button>
<button onclick="goToSignSlide(5)" class="sign-dot w-3 h-3 rounded-full bg-gray-300 transition"></button>
<button onclick="goToSignSlide(6)" class="sign-dot w-3 h-3 rounded-full bg-gray-300 transition"></button>
</div>
</div>
<div class="bg-red-50 border-l-4 border-red-500 p-6 rounded-lg mb-8">
<h3 class="font-bold text-xl text-red-600 mb-3">
<i class="fas fa-exclamation-triangle mr-2"></i>
Нашли 2 и более признаков?
</h3>
<p class="text-gray-700 mb-4">
Не ждите, пока мошенники окончательно скроются с вашими деньгами. Получите <span class="font-bold text-red-600">БЕСПЛАТНУЮ КОНСУЛЬТАЦИЮ</span> нашего финансового управляющего.
</p>
</div>
<div class="text-center">
<button onclick="scrollToForm('#process')" class="btn-primary bg-gradient-to-r from-blue-600 to-blue-700 text-white px-10 py-5 rounded-lg font-bold text-lg shadow-lg inline-flex items-center hover:from-blue-700 hover:to-blue-800 transition-all">
<i class="fas fa-comment-dots mr-3"></i>
Получить консультацию
</button>
</div>
</div>
</div>
</section>
<!-- БЛОК 3: НАША МЕТОДИКА -->
<section id="method" class="py-20 bg-gradient-to-br from-blue-600 to-blue-800 hero-pattern">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl lg:text-5xl font-bold text-white mb-4">
Мы не просто пишем жалобы
</h2>
<p class="text-xl md:text-2xl text-blue-50 max-w-4xl mx-auto">
Мы раскрываем схему мошенников и <span class="text-white font-bold">изымаем ваши деньги</span> по договору цессии
</p>
</div>
<!-- О компании и Лицензия -->
<div class="max-w-6xl mx-auto mb-16">
<div class="grid lg:grid-cols-4 gap-4 md:gap-8 items-stretch">
<!-- О компании (3 колонки) -->
<div class="lg:col-span-3 bg-white rounded-xl md:rounded-2xl shadow-lg p-3 md:p-8 lg:p-12 flex flex-col">
<div class="flex items-center mb-3 md:mb-6">
<div class="bg-blue-600 rounded-full p-2 md:p-4 mr-2 md:mr-4 flex-shrink-0">
<i class="fas fa-shield-alt text-white text-lg md:text-3xl"></i>
</div>
<h3 class="text-base sm:text-lg md:text-2xl lg:text-3xl font-bold text-gray-800 leading-tight">О компании Cordoba Legal Group</h3>
</div>
<p class="text-sm md:text-lg text-gray-700 mb-3 md:mb-6 leading-snug md:leading-relaxed">
<strong class="text-blue-600">Cordoba Legal Group</strong> — это международная команда экспертов с опытом работы
в банковской сфере, правоохранительных органах, международных регуляторах и финтех-компаниях.
</p>
<!-- Статистика - Grid -->
<div class="grid grid-cols-3 gap-4 md:gap-6 mb-4 md:mb-6">
<!-- Статистика 1: Опыт -->
<div class="bg-gradient-to-br from-blue-600 to-blue-800 rounded-lg md:rounded-xl p-4 md:p-6 text-center shadow-lg">
<i class="fas fa-clock text-blue-200 text-2xl md:text-4xl mb-2"></i>
<div class="text-white font-bold text-2xl md:text-4xl mb-1">12+</div>
<div class="text-blue-100 text-xs md:text-base">лет опыта работы</div>
</div>
<!-- Статистика 2: Дела -->
<div class="bg-gradient-to-br from-yellow-500 to-yellow-700 rounded-lg md:rounded-xl p-4 md:p-6 text-center shadow-lg">
<i class="fas fa-trophy text-yellow-200 text-2xl md:text-4xl mb-2"></i>
<div class="text-white font-bold text-2xl md:text-4xl mb-1">500+</div>
<div class="text-yellow-100 text-xs md:text-base">успешных дел</div>
</div>
<!-- Статистика 3: Сумма -->
<div class="bg-gradient-to-br from-green-600 to-green-800 rounded-lg md:rounded-xl p-4 md:p-6 text-center shadow-lg">
<i class="fas fa-dollar-sign text-green-200 text-2xl md:text-4xl mb-2"></i>
<div class="text-white font-bold text-2xl md:text-4xl mb-1">$2.8M</div>
<div class="text-green-100 text-xs md:text-base">возвращено в 2024</div>
</div>
</div>
<p class="text-sm md:text-lg text-gray-700 leading-snug md:leading-relaxed">
Наши специалисты знают, как действовать в самых сложных финансовых ситуациях: от традиционных банковских споров
до вопросов, связанных с криптовалютами и платёжными системами. Мы объединяем практический опыт и международные
стандарты, чтобы защищать интересы клиентов и добиваться реальных результатов.
</p>
</div>
<!-- Лицензия (1 колонка) -->
<div class="lg:col-span-1">
<div class="bg-white rounded-xl shadow-lg p-4 md:p-8 lg:p-10 border-2 border-blue-200 h-full flex flex-col">
<h4 class="text-center font-bold text-gray-800 mb-4 md:mb-8 text-sm md:text-base uppercase tracking-wide">
<i class="fas fa-certificate text-blue-600 text-lg md:text-xl mr-1.5 md:mr-2"></i>
Лицензия
</h4>
<div class="flex-1 flex flex-col justify-center mb-4 md:mb-8">
<div class="bg-gradient-to-br from-blue-50 to-gray-50 rounded-lg p-2 md:p-4 cursor-pointer hover:shadow-xl transition-shadow" onclick="openLicenseModal()">
<img src="https://static.hfm.com/assets/hfnew/images/inner/about-hotforex/SV-Certificate.jpg"
alt="Лицензия CySEC"
class="w-full h-auto rounded shadow-sm">
</div>
<p class="text-xs md:text-sm text-center text-gray-500 mt-2">
<i class="fas fa-search-plus mr-1"></i>
Нажмите для увеличения
</p>
</div>
<div class="text-center space-y-3 md:space-y-4 mt-auto">
<p class="text-sm md:text-base text-blue-600 font-bold">CIF 183/12</p>
<div class="pt-3 md:pt-4 border-t-2 border-gray-200">
<div class="flex items-center justify-center space-x-2 text-green-600">
<i class="fas fa-shield-check text-sm md:text-base"></i>
<span class="text-sm md:text-base font-semibold">CySEC</span>
</div>
</div>
</div>
</div>
</div>
</div>