block8tmt / index.html
timoon811's picture
Add 3 files
df44bae verified
<!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>