File size: 19,795 Bytes
0294c1d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Инновационный сайт</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <script>
        tailwind.config = {
            theme: {
                extend: {
                    colors: {
                        primary: '#6366f1',
                        secondary: '#8b5cf6',
                        accent: '#ec4899',
                        dark: '#0f172a',
                        light: '#f8fafc'
                    },
                    animation: {
                        'float': 'float 6s ease-in-out infinite',
                        'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
                        'bounce-slow': 'bounce 3s infinite'
                    },
                    keyframes: {
                        float: {
                            '0%, 100%': { transform: 'translateY(0)' },
                            '50%': { transform: 'translateY(-20px)' }
                        }
                    }
                }
            }
        }
    </script>
    <style type="text/tailwindcss">
        @layer base {
            body {
                @apply bg-gradient-to-br from-dark to-indigo-900 text-light min-h-screen font-sans;
            }
            .glass {
                @apply bg-white/10 backdrop-blur-lg border border-white/20 rounded-2xl shadow-xl;
            }
            .neon-border {
                @apply border-2 border-primary shadow-[0_0_15px_#6366f1];
            }
            .blob {
                @apply absolute rounded-full filter blur-3xl opacity-50;
            }
            .card-hover {
                @apply transition-all duration-300 hover:scale-105 hover:shadow-2xl;
            }
            .section-padding {
                @apply py-20 px-4 sm:px-6 lg:px-8;
            }
        }
    </style>
</head>
<body class="overflow-x-hidden">
    <!-- Фоновые элементы -->
    <div class="fixed inset-0 overflow-hidden -z-10">
        <div class="blob w-96 h-96 bg-primary top-10 -left-20"></div>
        <div class="blob w-80 h-80 bg-secondary bottom-10 right-10"></div>
        <div class="blob w-64 h-64 bg-accent top-1/3 right-1/4"></div>
    </div>

    <!-- Навигация -->
    <nav class="glass py-4 px-6 flex justify-between items-center sticky top-0 z-50">
        <div class="flex items-center space-x-2">
            <div class="w-10 h-10 rounded-full bg-gradient-to-r from-primary to-accent flex items-center justify-center">
                <i class="fas fa-infinity text-white"></i>
            </div>
            <span class="text-xl font-bold">InnovateX</span>
        </div>
        
        <div class="hidden md:flex space-x-8">
            <a href="#" class="hover:text-primary transition-colors">Главная</a>
            <a href="#" class="hover:text-primary transition-colors">О нас</a>
            <a href="#" class="hover:text-primary transition-colors">Услуги</a>
            <a href="#" class="hover:text-primary transition-colors">Портфолио</a>
            <a href="#" class="hover:text-primary transition-colors">Контакты</a>
        </div>
        
        <button class="md:hidden text-2xl">
            <i class="fas fa-bars"></i>
        </button>
        
        <button class="hidden md:block bg-gradient-to-r from-primary to-secondary px-6 py-2 rounded-full font-medium hover:opacity-90 transition-opacity">
            Начать проект
        </button>
    </nav>

    <!-- Герой секция -->
    <section class="section-padding flex flex-col items-center text-center relative">
        <div class="absolute top-20 right-10 w-32 h-32 rounded-full bg-primary animate-float opacity-20"></div>
        <div class="absolute bottom-40 left-20 w-24 h-24 rounded-full bg-accent animate-pulse-slow opacity-30"></div>
        
        <h1 class="text-4xl md:text-6xl font-bold max-w-3xl leading-tight mb-6">
            Создаем цифровые решения <span class="text-transparent bg-clip-text bg-gradient-to-r from-primary to-accent">будущего</span>
        </h1>
        
        <p class="text-lg md:text-xl text-gray-300 max-w-2xl mb-10">
            Мы разрабатываем инновационные продукты, которые меняют правила игры. Наш подход сочетает креативность, технологии и стратегическое мышление.
        </p>
        
        <div class="flex flex-col sm:flex-row gap-4 mb-16">
            <button class="bg-gradient-to-r from-primary to-secondary px-8 py-4 rounded-full font-medium text-lg hover:opacity-90 transition-opacity shadow-lg">
                Запустить проект
            </button>
            <button class="glass px-8 py-4 rounded-full font-medium text-lg hover:bg-white/20 transition-colors">
                <i class="fas fa-play-circle mr-2"></i>Смотреть демо
            </button>
        </div>
        
        <div class="grid grid-cols-2 md:grid-cols-4 gap-6 w-full max-w-4xl">
            <div class="glass p-6 text-center card-hover">
                <div class="text-4xl mb-3 text-primary">
                    <i class="fas fa-rocket"></i>
                </div>
                <h3 class="font-bold text-lg mb-1">Быстрая разработка</h3>
                <p class="text-gray-300 text-sm">Создаем MVP за 2 недели</p>
            </div>
            <div class="glass p-6 text-center card-hover">
                <div class="text-4xl mb-3 text-secondary">
                    <i class="fas fa-mobile-alt"></i>
                </div>
                <h3 class="font-bold text-lg mb-1">Адаптивный дизайн</h3>
                <p class="text-gray-300 text-sm">Под все устройства</p>
            </div>
            <div class="glass p-6 text-center card-hover">
                <div class="text-4xl mb-3 text-accent">
                    <i class="fas fa-lock"></i>
                </div>
                <h3 class="font-bold text-lg mb-1">Безопасность</h3>
                <p class="text-gray-300 text-sm">Защита данных клиентов</p>
            </div>
            <div class="glass p-6 text-center card-hover">
                <div class="text-4xl mb-3 text-primary">
                    <i class="fas fa-sync-alt"></i>
                </div>
                <h3 class="font-bold text-lg mb-1">Поддержка 24/7</h3>
                <p class="text-gray-300 text-sm">Всегда на связи</p>
            </div>
        </div>
    </section>

    <!-- Уникальные особенности -->
    <section class="section-padding bg-gradient-to-r from-dark/50 to-indigo-900/50">
        <div class="max-w-6xl mx-auto">
            <div class="text-center mb-16">
                <h2 class="text-3xl md:text-4xl font-bold mb-4">Почему мы <span class="text-transparent bg-clip-text bg-gradient-to-r from-primary to-accent">уникальны</span></h2>
                <p class="text-gray-300 max-w-2xl mx-auto">Наш подход отличается от стандартных решений</p>
            </div>
            
            <div class="grid md:grid-cols-2 gap-12 items-center">
                <div class="relative">
                    <div class="absolute -inset-4 bg-gradient-to-r from-primary to-secondary rounded-2xl opacity-20 blur-lg"></div>
                    <div class="glass p-8 relative">
                        <div class="flex items-start mb-6">
                            <div class="text-3xl mr-4 text-primary">
                                <i class="fas fa-brain"></i>
                            </div>
                            <div>
                                <h3 class="text-2xl font-bold mb-2">AI-интеграция</h3>
                                <p class="text-gray-300">Мы внедряем искусственный интеллект в каждый проект для максимальной эффективности и автоматизации процессов.</p>
                            </div>
                        </div>
                        
                        <div class="flex items-start mb-6">
                            <div class="text-3xl mr-4 text-secondary">
                                <i class="fas fa-vr-cardboard"></i>
                            </div>
                            <div>
                                <h3 class="text-2xl font-bold mb-2">VR/AR решения</h3>
                                <p class="text-gray-300">Создаем иммерсивные опыты для обучения, маркетинга и взаимодействия с клиентами.</p>
                            </div>
                        </div>
                        
                        <div class="flex items-start">
                            <div class="text-3xl mr-4 text-accent">
                                <i class="fas fa-leaf"></i>
                            </div>
                            <div>
                                <h3 class="text-2xl font-bold mb-2">Экологичный подход</h3>
                                <p class="text-gray-300">Все наши решения оптимизированы для минимального энергопотребления и углеродного следа.</p>
                            </div>
                        </div>
                    </div>
                </div>
                
                <div class="relative">
                    <div class="relative rounded-2xl overflow-hidden">
                        <div class="bg-gradient-to-br from-primary/20 to-accent/20 h-96 rounded-2xl flex items-center justify-center">
                            <div class="text-9xl text-white/10">
                                <i class="fas fa-cogs"></i>
                            </div>
                        </div>
                        <div class="absolute inset-0 flex items-center justify-center">
                            <div class="w-64 h-64 rounded-full border-4 border-white/20 animate-pulse-slow"></div>
                        </div>
                        <div class="absolute top-10 left-10 w-24 h-24 rounded-full bg-primary/30"></div>
                        <div class="absolute bottom-10 right-10 w-16 h-16 rounded-full bg-accent/30"></div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Портфолио -->
    <section class="section-padding">
        <div class="max-w-6xl mx-auto">
            <div class="text-center mb-16">
                <h2 class="text-3xl md:text-4xl font-bold mb-4">Наши <span class="text-transparent bg-clip-text bg-gradient-to-r from-primary to-accent">работы</span></h2>
                <p class="text-gray-300 max-w-2xl mx-auto">Проекты, которые изменили бизнес клиентов</p>
            </div>
            
            <div class="grid md:grid-cols-3 gap-8">
                <div class="glass overflow-hidden card-hover">
                    <div class="h-48 bg-gradient-to-r from-purple-500 to-indigo-600 relative">
                        <div class="absolute inset-0 flex items-center justify-center">
                            <div class="text-6xl text-white/20">
                                <i class="fas fa-shopping-cart"></i>
                            </div>
                        </div>
                    </div>
                    <div class="p-6">
                        <div class="flex justify-between items-start mb-3">
                            <h3 class="text-xl font-bold">E-commerce платформа</h3>
                            <span class="bg-primary/20 text-primary px-3 py-1 rounded-full text-sm">2023</span>
                        </div>
                        <p class="text-gray-300 mb-4">Платформа для онлайн-продаж с ИИ-рекомендациями и AR-примеркой.</p>
                        <div class="flex flex-wrap gap-2">
                            <span class="bg-white/10 px-3 py-1 rounded-full text-sm">React</span>
                            <span class="bg-white/10 px-3 py-1 rounded-full text-sm">Node.js</span>
                            <span class="bg-white/10 px-3 py-1 rounded-full text-sm">AI</span>
                        </div>
                    </div>
                </div>
                
                <div class="glass overflow-hidden card-hover">
                    <div class="h-48 bg-gradient-to-r from-cyan-500 to-blue-600 relative">
                        <div class="absolute inset-0 flex items-center justify-center">
                            <div class="text-6xl text-white/20">
                                <i class="fas fa-heartbeat"></i>
                            </div>
                        </div>
                    </div>
                    <div class="p-6">
                        <div class="flex justify-between items-start mb-3">
                            <h3 class="text-xl font-bold">Медицинская система</h3>
                            <span class="bg-primary/20 text-primary px-3 py-1 rounded-full text-sm">2022</span>
                        </div>
                        <p class="text-gray-300 mb-4">Инновационная платформа для телемедицины с блокчейн-хранением данных.</p>
                        <div class="flex flex-wrap gap-2">
                            <span class="bg-white/10 px-3 py-1 rounded-full text-sm">Vue.js</span>
                            <span class="bg-white/10 px-3 py-1 rounded-full text-sm">Python</span>
                            <span class="bg-white/10 px-3 py-1 rounded-full text-sm">Blockchain</span>
                        </div>
                    </div>
                </div>
                
                <div class="glass overflow-hidden card-hover">
                    <div class="h-48 bg-gradient-to-r from-pink-500 to-rose-600 relative">
                        <div class="absolute inset-0 flex items-center justify-center">
                            <div class="text-6xl text-white/20">
                                <i class="fas fa-graduation-cap"></i>
                            </div>
                        </div>
                    </div>
                    <div class="p-6">
                        <div class="flex justify-between items-start mb-3">
                            <h3 class="text-xl font-bold">Образовательная платформа</h3>
                            <span class="bg-primary/20 text-primary px-3 py-1 rounded-full text-sm">2023</span>
                        </div>
                        <p class="text-gray-300 mb-4">Интерактивная система обучения с VR-классами и адаптивными курсами.</p>
                        <div class="flex flex-wrap gap-2">
                            <span class="bg-white/10 px-3 py-1 rounded-full text-sm">React</span>
                            <span class="bg-white/10 px-3 py-1 rounded-full text-sm">Three.js</span>
                            <span class="bg-white/10 px-3 py-1 rounded-full text-sm">VR</span>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Контакты -->
    <section class="section-padding bg-gradient-to-r from-dark/50 to-indigo-900/50">
        <div class="max-w-4xl mx-auto">
            <div class="text-center mb-16">
                <h2 class="text-3xl md:text-4xl font-bold mb-4">Свяжитесь с <span class="text-transparent bg-clip-text bg-gradient-to-r from-primary to-accent">нами</span></h2>
                <p class="text-gray-300 max-w-2xl mx-auto">Готовы воплотить вашу идею в реальность? Напишите нам!</p>
            </div>
            
            <div class="glass p-8 md:p-12 rounded-3xl">
                <div class="grid md:grid-cols-2 gap-10">
                    <div>
                        <h3 class="text-2xl font-bold mb-6">Отправьте сообщение</h3>
                        <form class="space-y-6">
                            <div>
                                <label class="block mb-2 text-gray-300">Ваше имя</label>
                                <input type="text" class="w-full bg-white/10 border border-white/20 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-primary">
                            </div>
                            <div>
                                <label class="block mb-2 text-gray-300">Email</label>
                                <input type="email" class="w-full bg-white/10 border border-white/20 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-primary">
                            </div>
                            <div>
                                <label class="block mb-2 text-gray-300">Сообщение</label>
                                <textarea rows="4" class="w-full bg-white/10 border border-white/20 rounded-lg px-4 py-3 focus:outline-none focus:ring-2 focus:ring-primary"></textarea>
                            </div>
                            <button type="submit" class="w-full bg-gradient-to-r from-primary to-secondary px-6 py-3 rounded-lg font-medium hover:opacity-90 transition-opacity">
                                Отправить сообщение
                            </button>
                        </form>
                    </div>
                    
                    <div>
                        <h3 class="text-2xl font-bold mb-6">Контактная информация</h3>
                        <div class="space-y-6">
                            <div class="flex items-start">
                                <div class="text-2xl mr-4 text-primary">
                                    <i class="fas fa-map-marker-alt"></i>
                                </div>
                                <div>
                                    <h4 class="font-bold mb-1">Наш офис</h4>
                                    <p class="text-gray-300">г. Москва, ул. Тверская, 15</p>
                                </div>
                            </div>
                            
                            <div class="flex items-start">
                                <div class="text-2xl mr-4 text-secondary">
                                    <i class
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=SallyHS/site" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>