File size: 17,104 Bytes
df44bae |
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 |
<!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">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #0a0a0a;
color: #E1E1E1;
overflow-x: hidden;
}
.glow-text {
text-shadow: 0 0 10px rgba(246, 252, 121, 0.7);
}
.glow-box {
box-shadow: 0 0 15px rgba(246, 252, 121, 0.5);
}
.glow-box:hover {
box-shadow: 0 0 25px rgba(246, 252, 121, 0.8);
}
.border-glow {
border-color: #f6fc79;
box-shadow: 0 0 10px rgba(246, 252, 121, 0.3);
}
.border-glow:hover {
box-shadow: 0 0 20px rgba(246, 252, 121, 0.5);
}
.dashboard-container {
perspective: 1000px;
transform-style: preserve-3d;
}
.dashboard {
transform: rotateY(-15deg) rotateX(5deg);
transition: all 0.5s ease;
}
.dashboard:hover {
transform: rotateY(-10deg) rotateX(3deg);
}
.traffic-flow {
position: relative;
height: 100%;
overflow: hidden;
}
.flow-item {
position: absolute;
transition: all 0.5s ease;
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.05); opacity: 0.8; }
100% { transform: scale(1); opacity: 1; }
}
.particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
.particle {
position: absolute;
background-color: rgba(246, 252, 121, 0.6);
border-radius: 50%;
pointer-events: none;
}
.tooltip {
visibility: hidden;
opacity: 0;
transition: all 0.3s ease;
}
.flow-item:hover .tooltip {
visibility: visible;
opacity: 1;
}
.nav-link {
position: relative;
transition: all 0.3s ease;
}
.nav-link:hover {
text-shadow: 0 0 10px rgba(246, 252, 121, 0.7);
color: #f6fc79 !important;
}
.process-arrow {
position: absolute;
color: #f6fc79;
font-size: 24px;
top: 50%;
transform: translateY(-50%);
z-index: 1;
}
@media (max-width: 768px) {
.dashboard {
transform: none;
}
}
.arrow-animation {
animation: arrowPulse 1.5s infinite;
}
@keyframes arrowPulse {
0% { opacity: 0.5; transform: translateY(-50%) translateX(0); }
50% { opacity: 1; transform: translateY(-50%) translateX(5px); }
100% { opacity: 0.5; transform: translateY(-50%) translateX(0); }
}
/* Custom styles for pricing section */
.pricing-icon {
transition: all 0.3s ease;
}
.pricing-icon:hover {
transform: scale(1.1);
text-shadow: 0 0 15px rgba(246, 252, 121, 0.8);
}
.pricing-card {
transition: all 0.3s ease;
background-color: #121212;
border-radius: 1rem;
}
.pricing-card:hover {
transform: translateY(-5px);
}
.popular-badge {
position: absolute;
top: -12px;
right: 20px;
background-color: #f6fc79;
color: #0a0a0a;
padding: 0.25rem 1rem;
border-radius: 9999px;
font-weight: bold;
animation: pulse 2s infinite;
}
.popular-card {
transform: scale(1.05);
z-index: 10;
}
.popular-card:hover {
animation: popularHover 0.5s ease;
}
@keyframes popularHover {
0% { transform: scale(1.05) rotate(0deg); }
25% { transform: scale(1.05) rotate(1deg); }
50% { transform: scale(1.05) rotate(-1deg); }
75% { transform: scale(1.05) rotate(1deg); }
100% { transform: scale(1.05) rotate(0deg); }
}
.feature-item {
position: relative;
padding-left: 1.75rem;
margin-bottom: 0.5rem;
}
.feature-item::before {
content: "";
position: absolute;
left: 0;
top: 0.5rem;
width: 1rem;
height: 1rem;
background-size: contain;
background-repeat: no-repeat;
}
.feature-yes::before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f6fc79'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
}
.feature-no::before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E1E1E1'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z'/%3E%3C/svg%3E");
}
.price-grid {
background-image:
linear-gradient(rgba(246, 252, 121, 0.05) 1px, transparent 1px),
linear-gradient(90deg, rgba(246, 252, 121, 0.05) 1px, transparent 1px);
background-size: 30px 30px;
}
.btn-primary {
background-color: #f6fc79;
color: #0a0a0a;
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(246, 252, 121, 0.4);
}
.btn-primary:active {
transform: scale(0.97);
}
.btn-secondary {
border: 2px solid #f6fc79;
color: #f6fc79;
transition: all 0.3s ease;
}
.btn-secondary:hover {
background-color: rgba(246, 252, 121, 0.1);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(246, 252, 121, 0.2);
}
.btn-secondary:active {
transform: scale(0.97);
}
.fade-in {
animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.slide-up {
animation: slideUp 0.5s ease forwards;
}
@keyframes slideUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.icon-box {
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 12px;
margin-bottom: 20px;
}
.start-icon {
background: linear-gradient(135deg, rgba(0, 200, 83, 0.2) 0%, rgba(0, 200, 83, 0.1) 100%);
border: 1px solid rgba(0, 200, 83, 0.3);
}
.pro-icon {
background: linear-gradient(135deg, rgba(255, 171, 0, 0.2) 0%, rgba(255, 171, 0, 0.1) 100%);
border: 1px solid rgba(255, 171, 0, 0.3);
}
.mentor-icon {
background: linear-gradient(135deg, rgba(41, 121, 255, 0.2) 0%, rgba(41, 121, 255, 0.1) 100%);
border: 1px solid rgba(41, 121, 255, 0.3);
}
.best-choice {
display: inline-flex;
align-items: center;
background: rgba(255, 171, 0, 0.1);
border: 1px solid rgba(255, 171, 0, 0.3);
padding: 4px 12px;
border-radius: 20px;
margin-top: 8px;
}
.best-choice i {
margin-right: 6px;
color: #ffab00;
}
</style>
</head>
<body class="min-h-screen">
<!-- Pricing Section -->
<section class="py-16 px-4 sm:px-6 lg:px-8 price-grid">
<div class="max-w-7xl mx-auto">
<!-- Header -->
<div class="text-center mb-16 fade-in">
<div class="inline-flex items-center justify-center mb-4">
<div class="icon-box start-icon mr-3">
<i class="fas fa-layer-group text-2xl" style="color: #00c853;"></i>
</div>
<h2 class="text-3xl sm:text-4xl font-bold uppercase glow-text" style="color: #f6fc79;">Тарифы</h2>
</div>
<p class="text-lg text-gray-300">Выбери формат обучения под себя</p>
</div>
<!-- Pricing Cards -->
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 items-center">
<!-- Start Plan -->
<div class="pricing-card p-8 relative border border-gray-800 slide-up" style="animation-delay: 0.1s;">
<div class="icon-box start-icon">
<i class="fas fa-rocket text-2xl" style="color: #00c853;"></i>
</div>
<div class="mb-6">
<h3 class="text-2xl font-bold mb-2">Start</h3>
<div class="text-4xl font-bold mb-4">$500</div>
<p class="text-gray-300">Базовый доступ ко всем материалам</p>
</div>
<ul class="mb-8">
<li class="feature-item feature-yes">Доступ ко всем видеоурокам</li>
<li class="feature-item feature-yes">Участие в общем чате студентов</li>
<li class="feature-item feature-no">Нет персональной поддержки</li>
<li class="feature-item feature-no">Нет закрытых созвонов</li>
<li class="feature-item feature-no">Нет доступа к бонусным материалам</li>
</ul>
<button class="btn-primary w-full py-3 px-6 rounded-lg font-medium">
Выбрать тариф <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
<!-- Pro Group Plan (Popular) -->
<div class="pricing-card p-8 relative border border-glow popular-card slide-up" style="animation-delay: 0.2s;">
<div class="popular-badge">
<i class="fas fa-fire mr-1"></i> Популярно
</div>
<div class="icon-box pro-icon">
<i class="fas fa-crown text-2xl" style="color: #ffab00;"></i>
</div>
<div class="mb-6">
<h3 class="text-2xl font-bold mb-2">Pro Group</h3>
<div class="text-4xl font-bold mb-4">$1000</div>
<p class="text-gray-300">Оптимальное сочетание цены и возможностей</p>
</div>
<ul class="mb-8">
<li class="feature-item feature-yes">Всё из тарифа Start</li>
<li class="feature-item feature-yes">Участие в закрытой группе с кураторами</li>
<li class="feature-item feature-yes">12 групповых созвонов</li>
<li class="feature-item feature-yes">Доступ к бонусным материалам</li>
<li class="feature-item feature-yes">Поддержка в чате с командой TMT</li>
<div class="best-choice">
<i class="fas fa-star"></i>
<span>Лучший выбор</span>
</div>
</ul>
<button class="btn-primary w-full py-3 px-6 rounded-lg font-medium">
Выбрать тариф <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
<!-- Mentor Edition Plan -->
<div class="pricing-card p-8 relative border border-gray-800 slide-up" style="animation-delay: 0.3s;">
<div class="icon-box mentor-icon">
<i class="fas fa-user-tie text-2xl" style="color: #2979ff;"></i>
</div>
<div class="mb-6">
<h3 class="text-2xl font-bold mb-2">Mentor Edition</h3>
<div class="text-4xl font-bold mb-4">$3000</div>
<p class="text-gray-300">Персональное сопровождение эксперта</p>
</div>
<ul class="mb-8">
<li class="feature-item feature-yes">Всё из Pro Group</li>
<li class="feature-item feature-yes">Персональное наставничество 1 на 1</li>
<li class="feature-item feature-yes">Разбор кейсов и связок</li>
<li class="feature-item feature-yes">Работа до результата</li>
<li class="feature-item feature-yes">Приоритетная поддержка</li>
</ul>
<button class="btn-primary w-full py-3 px-6 rounded-lg font-medium">
Записаться на консультацию <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</div>
</section>
<script>
// Animation for pricing cards on scroll
document.addEventListener('DOMContentLoaded', function() {
const pricingCards = document.querySelectorAll('.pricing-card');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
}
});
}, { threshold: 0.1 });
pricingCards.forEach(card => {
card.style.opacity = '0';
observer.observe(card);
});
// Add hover effect to pricing icon
const pricingIcon = document.querySelector('.pricing-icon');
if (pricingIcon) {
pricingIcon.addEventListener('mouseenter', () => {
pricingIcon.style.transform = 'scale(1.2)';
pricingIcon.style.textShadow = '0 0 15px rgba(246, 252, 121, 0.8)';
});
pricingIcon.addEventListener('mouseleave', () => {
pricingIcon.style.transform = 'scale(1)';
pricingIcon.style.textShadow = 'none';
});
}
});
</script>
<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=timoon811/block8tmt" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |