
/* Улучшенный раздел статистики */
#enhanced-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

#enhanced-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="60" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

#enhanced-section .container {
    position: relative;
    z-index: 2;
}

#enhanced-section .text-content {
    color: white;
}

#enhanced-section .enhanced-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

#enhanced-section .gradient-text {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #fff59d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}
#benefits-section .gradient-text {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #fff59d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

#enhanced-section .gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 2px;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.05); }
}

#enhanced-section .enhanced-description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
    color: white;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.6s forwards;
}

#enhanced-section .enhanced-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
    margin-bottom: 30px;
}

#enhanced-section .enhanced-stat-card:nth-child(1) {
    animation-delay: 0.2s;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(147, 51, 234, 0.3));
}
#enhanced-section .enhanced-stat-card:nth-child(2) {
    animation-delay: 0.4s;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(245, 101, 101, 0.3));
}
#enhanced-section .enhanced-stat-card:nth-child(3) {
    animation-delay: 0.6s;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(251, 191, 36, 0.3));
}
#enhanced-section .enhanced-stat-card:nth-child(4) {
    animation-delay: 0.8s;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(74, 222, 128, 0.3));
}

#enhanced-section .enhanced-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s;
}

#enhanced-section .enhanced-stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

#enhanced-section .enhanced-stat-card:hover::before {
    left: 100%;
}

#enhanced-section .enhanced-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    display: block;
}

#enhanced-section .enhanced-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 1024px) {
    #enhanced-section .enhanced-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    #enhanced-section {
        padding: 80px 0;
    }

    #enhanced-section .enhanced-heading {
        font-size: 2.2rem;
    }

    #enhanced-section .enhanced-description {
        font-size: 1.1rem;
    }

    #enhanced-section .enhanced-stat-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    #enhanced-section .enhanced-stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    #enhanced-section .enhanced-heading {
        font-size: 1.8rem;
    }
}

/* Дополнительные эффекты */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: sparkle 3s infinite;
}

.sparkle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 40%; right: 30%; animation-delay: 1s; }
.sparkle:nth-child(3) { bottom: 30%; left: 40%; animation-delay: 2s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Улучшенный Hero Section */
.enhanced-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.enhanced-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.15"/><circle cx="75" cy="45" r="1" fill="white" opacity="0.1"/><circle cx="45" cy="75" r="1" fill="white" opacity="0.12"/><circle cx="65" cy="15" r="1" fill="white" opacity="0.08"/><circle cx="15" cy="65" r="1" fill="white" opacity="0.11"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

/* Плавный переход между секциями */
.enhanced-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(102, 126, 234, 0.3));
    z-index: 1;
}

/* Объединённая секция */
.unified-content-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    margin-top: -100px;
    padding-top: 150px;
    overflow: hidden;
}

.unified-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="unified-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.1"/><circle cx="60" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23unified-grain)"/></svg>');
    pointer-events: none;
}

/* Убираем дублирование стилей для enhanced-section */
#enhanced-section {
    background: transparent !important;
    padding: 60px 0 120px 0;
}

#enhanced-section::before {
    display: none;
}

/* Обновляем floating shapes для объединённой секции */
.unified-content-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.enhanced-hero .floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.enhanced-hero .orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: floatOrb 25s infinite linear;
}

.enhanced-hero .orb:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
}

.enhanced-hero .orb:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: -75px;
    animation-delay: -8s;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.2), rgba(75, 0, 130, 0.1));
}

.enhanced-hero .orb:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -15s;
    background: linear-gradient(45deg, rgba(0, 191, 255, 0.2), rgba(30, 144, 255, 0.1));
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-50px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-20px) rotate(180deg) scale(0.9); }
    75% { transform: translateY(-40px) rotate(270deg) scale(1.05); }
}

.enhanced-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.enhanced-hero .hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInUp 1.2s ease-out 0.3s forwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.enhanced-hero .hero-emoji {
    display: inline-block;
    font-size: 4.5rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.enhanced-hero .hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    opacity: 0;
    animation: slideInUp 1.2s ease-out 0.6s forwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.enhanced-hero .hero-features {
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInUp 1.2s ease-out 0.9s forwards;
}

.enhanced-hero .hero-feature {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.enhanced-hero .hero-feature::before {
    content: '✅';
    margin-right: 0.8rem;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.enhanced-hero .hero-buttons {
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInUp 1.2s ease-out 1.2s forwards;
}

.enhanced-hero .btn-hero-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.enhanced-hero .btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.enhanced-hero .btn-hero-primary:hover::before {
    left: 100%;
}

.enhanced-hero .btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
}

.enhanced-hero .btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.enhanced-hero .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.enhanced-hero .hero-badges {
    opacity: 0;
    animation: slideInUp 1.2s ease-out 1.5s forwards;
}

.enhanced-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.enhanced-hero .hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.enhanced-hero .hero-badge .badge-icon {
    font-size: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
}

.enhanced-hero .hero-testimonial {
    margin-top: 2rem;
    opacity: 0;
    animation: slideInUp 1.2s ease-out 1.8s forwards;
}

.enhanced-hero .hero-testimonial p {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Floating elements */
.enhanced-hero .hero-sparkles {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: sparkleHero 4s infinite;
}

.enhanced-hero .hero-sparkles:nth-child(1) { top: 15%; left: 15%; animation-delay: 0s; }
.enhanced-hero .hero-sparkles:nth-child(2) { top: 25%; right: 20%; animation-delay: 1.5s; }
.enhanced-hero .hero-sparkles:nth-child(3) { bottom: 30%; left: 25%; animation-delay: 3s; }
.enhanced-hero .hero-sparkles:nth-child(4) { top: 70%; right: 15%; animation-delay: 0.8s; }

@keyframes sparkleHero {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* Адаптивность Hero Section */
@media (max-width: 1024px) {
    .enhanced-hero .hero-title {
        font-size: 3.2rem;
    }

    .enhanced-hero .hero-emoji {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .enhanced-hero {
        min-height: 90vh;
        padding: 2rem 0;
    }

    .enhanced-hero .hero-title {
        font-size: 2.5rem;
    }

    .enhanced-hero .hero-emoji {
        font-size: 2.8rem;
    }

    .enhanced-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .enhanced-hero .hero-feature {
        font-size: 1rem;
    }

    .enhanced-hero .btn-hero-primary,
    .enhanced-hero .btn-hero-secondary {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .enhanced-hero .hero-title {
        font-size: 2rem;
    }

    .enhanced-hero .hero-emoji {
        font-size: 2.2rem;
    }

    .enhanced-hero .hero-badge {
        margin: 0.3rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Исправленный раздел статистики для белого фона */
#enhanced-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Добавляем тонкий паттерн для текстуры */
#enhanced-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23f8f9fa" opacity="0.5"/><circle cx="80" cy="40" r="0.5" fill="%23e9ecef" opacity="0.3"/><circle cx="40" cy="80" r="0.5" fill="%23dee2e6" opacity="0.4"/><circle cx="60" cy="10" r="0.5" fill="%23f8f9fa" opacity="0.6"/><circle cx="10" cy="60" r="0.5" fill="%23e9ecef" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.05));
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

#enhanced-section .container {
    position: relative;
    z-index: 2;
}

/* Темный текст для белого фона */
#enhanced-section .text-content {
    color: #2d3748;
}

#enhanced-section .enhanced-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #2d3748;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

#enhanced-section .gradient-text {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

#enhanced-section .gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.05); }
}

#enhanced-section .enhanced-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #4a5568;
    opacity: 0;
    animation: slideInLeft 1s ease-out 0.6s forwards;
}

#enhanced-section .enhanced-stat-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

#enhanced-section .enhanced-stat-card:nth-child(1) {
    animation-delay: 0.2s;
    border-color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.03));
}
#enhanced-section .enhanced-stat-card:nth-child(2) {
    animation-delay: 0.4s;
    border-color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(245, 101, 101, 0.03));
}
#enhanced-section .enhanced-stat-card:nth-child(3) {
    animation-delay: 0.6s;
    border-color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(251, 191, 36, 0.03));
}
#enhanced-section .enhanced-stat-card:nth-child(4) {
    animation-delay: 0.8s;
    border-color: #22c55e;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(74, 222, 128, 0.03));
}

#enhanced-section .enhanced-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.8s;
}

#enhanced-section .enhanced-stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

#enhanced-section .enhanced-stat-card:hover::before {
    left: 100%;
}

#enhanced-section .enhanced-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 15px;
    display: block;
    /* cursor: pointer; */
}

#enhanced-section .enhanced-stat-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Улучшенные sparkles для белого фона */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #667eea;
    border-radius: 50%;
    animation: sparkle 3s infinite;
}

.sparkle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 40%; right: 30%; animation-delay: 1s; }
.sparkle:nth-child(3) { bottom: 30%; left: 40%; animation-delay: 2s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 0.8; transform: scale(1); }
}

/* Анимация счетчика */
.countup-animation {
    transition: all 0.5s ease;
}

/* Адаптивность */
@media (max-width: 1024px) {
    #enhanced-section .enhanced-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    #enhanced-section {
        padding: 0px 0;
    }

    #enhanced-section .enhanced-heading {
        font-size: 2.2rem;
    }

    #enhanced-section .enhanced-description {
        font-size: 1.1rem;
    }

    #enhanced-section .enhanced-stat-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    #enhanced-section .enhanced-stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    #enhanced-section .enhanced-heading {
        font-size: 1.8rem;
    }
}

/* Дополнительные улучшения для лучшей видимости */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Альтернативный стиль для еще большей контрастности */
.high-contrast #enhanced-section .enhanced-stat-card {
    border-width: 3px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.high-contrast #enhanced-section .enhanced-stat-number {
    color: #000000;
    font-weight: 900;
}

.high-contrast #enhanced-section .enhanced-stat-label {
    color: #2d3748;
    font-weight: 700;
}

/* Современная секция "Для кого" */
#for-who-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Тонкий паттерн для текстуры */
#for-who-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

/* Floating shapes */
#for-who-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

#for-who-section .shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.04));
    border-radius: 50%;
    animation: float 25s infinite linear;
}

#for-who-section .shape:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

#for-who-section .shape:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 70%;
    right: 10%;
    animation-delay: -8s;
}

#for-who-section .shape:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 80%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-40px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-20px) rotate(180deg) scale(0.9); }
    75% { transform: translateY(-30px) rotate(270deg) scale(1.05); }
}

#for-who-section .container {
    position: relative;
    z-index: 2;
}

/* Заголовок секции */
#for-who-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

#for-who-section .section-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.2s forwards;
}

#for-who-section .gradient-text {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

#for-who-section .section-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.4s forwards;
}

/* Карточки */
#for-who-section .category-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
    margin-bottom: 30px;
    height: 100%;
    cursor: pointer;
}

#for-who-section .category-card:nth-child(1) { animation-delay: 0.3s; }
#for-who-section .category-card:nth-child(2) { animation-delay: 0.5s; }
#for-who-section .category-card:nth-child(3) { animation-delay: 0.7s; }
#for-who-section .category-card:nth-child(4) { animation-delay: 0.9s; }
#for-who-section .category-card:nth-child(5) { animation-delay: 1.1s; }
#for-who-section .category-card:nth-child(6) { animation-delay: 1.3s; }

#for-who-section .category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.8s;
}

#for-who-section .category-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

#for-who-section .category-card:hover::before {
    left: 100%;
}

/* Иконки */
#for-who-section .category-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

#for-who-section .category-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
}

/* Разные градиенты для каждой категории */
#for-who-section .category-card:nth-child(1) .category-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

#for-who-section .category-card:nth-child(2) .category-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

#for-who-section .category-card:nth-child(3) .category-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

#for-who-section .category-card:nth-child(4) .category-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

#for-who-section .category-card:nth-child(5) .category-icon {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

#for-who-section .category-card:nth-child(6) .category-icon {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

#for-who-section .category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

#for-who-section .category-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

#for-who-section .category-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

#for-who-section .category-features li {
    font-size: 0.9rem;
    color: #667eea;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#for-who-section .category-features li::before {
    content: '✓';
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 12px;
    font-weight: bold;
}

/* Пульсирующий индикатор */
.pulse-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Sparkles */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    animation: sparkle 4s infinite;
}

.sparkle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 30%; right: 15%; animation-delay: 1.5s; }
.sparkle:nth-child(3) { bottom: 25%; left: 20%; animation-delay: 3s; }
.sparkle:nth-child(4) { top: 60%; right: 25%; animation-delay: 0.8s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1) rotate(180deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 1024px) {
    #for-who-section .section-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    #for-who-section {
        padding: 80px 0;
    }

    #for-who-section .section-heading {
        font-size: 2.2rem;
    }

    #for-who-section .section-subtitle {
        font-size: 1.1rem;
    }

    #for-who-section .category-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    #for-who-section .category-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    #for-who-section .category-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    #for-who-section .section-heading {
        font-size: 1.8rem;
    }

    #for-who-section .category-card {
        padding: 25px 15px;
    }
}

/* Дополнительные эффекты при наведении */
#for-who-section .category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

#for-who-section .category-card:hover .category-title {
    color: #667eea;
    transition: color 0.3s ease;
}




/* Современная секция возможностей */
#features-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Анимированный фон с волнами */
#features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 100% 300px;
    background-repeat: no-repeat;
    background-position: top;
    pointer-events: none;
    animation: wave 10s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { background-position: top left; }
    50% { background-position: top right; }
}

/* Floating shapes */
#features-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

#features-section .shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.03));
    border-radius: 50%;
    animation: float 30s infinite linear;
}

#features-section .shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 5%;
    left: 10%;
    animation-delay: 0s;
}

#features-section .shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 5%;
    animation-delay: -10s;
}

#features-section .shape:nth-child(3) {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 5%;
    animation-delay: -20s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-50px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-30px) rotate(180deg) scale(0.9); }
    75% { transform: translateY(-40px) rotate(270deg) scale(1.05); }
}

#features-section .container {
    position: relative;
    z-index: 2;
}

/* Заголовок секции */
#features-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

#features-section .section-badge {
    display: inline-block;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: #667eea;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
    opacity: 0;
    animation: slideInUp 1s ease-out 0.2s forwards;
}

#features-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 0;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.4s forwards;
}

#features-section .gradient-text {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Карточки возможностей */
#features-section .feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 24px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
}

#features-section .feature-card:nth-child(1) { animation-delay: 0.3s; }
#features-section .feature-card:nth-child(2) { animation-delay: 0.4s; }
#features-section .feature-card:nth-child(3) { animation-delay: 0.5s; }
#features-section .feature-card:nth-child(4) { animation-delay: 0.6s; }
#features-section .feature-card:nth-child(5) { animation-delay: 0.7s; }
#features-section .feature-card:nth-child(6) { animation-delay: 0.8s; }
#features-section .feature-card:nth-child(7) { animation-delay: 0.9s; }
#features-section .feature-card:nth-child(8) { animation-delay: 1.0s; }
#features-section .feature-card:nth-child(9) { animation-delay: 1.1s; }
#features-section .feature-card:nth-child(10) { animation-delay: 1.2s; }

#features-section .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.08), transparent);
    transition: left 0.8s;
}

#features-section .feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

#features-section .feature-card:hover::before {
    left: 100%;
}

/* Иконки возможностей */
#features-section .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

#features-section .feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(15px);
    opacity: 0.4;
    z-index: -1;
}

/* Уникальные градиенты для каждой иконки */
#features-section .feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

#features-section .feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

#features-section .feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #45b7d1, #96c93d);
}

#features-section .feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

#features-section .feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

#features-section .feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

#features-section .feature-card:nth-child(7) .feature-icon {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

#features-section .feature-card:nth-child(8) .feature-icon {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

#features-section .feature-card:nth-child(9) .feature-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

#features-section .feature-card:nth-child(10) .feature-icon {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

#features-section .feature-content {
    flex: 1;
}

#features-section .feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.3;
}

#features-section .feature-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Бейдж "скоро" */
#features-section .coming-soon-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(45deg, #ff9a56, #ff6b35);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Пульсирующий индикатор активности */
.active-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Sparkles */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    animation: sparkle 5s infinite;
}

.sparkle:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 25%; right: 20%; animation-delay: 2s; }
.sparkle:nth-child(3) { bottom: 30%; left: 10%; animation-delay: 4s; }
.sparkle:nth-child(4) { top: 70%; right: 15%; animation-delay: 1s; }
.sparkle:nth-child(5) { bottom: 15%; right: 30%; animation-delay: 3s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 1024px) {
    #features-section .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    #features-section {
        padding: 0px 0;
    }

    #features-section .section-title {
        font-size: 2.2rem;
    }

    #features-section .feature-card {
        padding: 24px 20px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    #features-section .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
        margin: 0 auto;
    }

    #features-section .feature-title {
        font-size: 1.25rem;
    }

    #features-section .feature-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    #features-section .section-title {
        font-size: 1.8rem;
    }

    #features-section .feature-card {
        padding: 20px 16px;
    }
}

/* Hover эффекты для иконок */
#features-section .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

#features-section .feature-card:hover .feature-title {
    color: #667eea;
    transition: color 0.3s ease;
}

/* Дополнительные анимации при прокрутке */
.scroll-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animation.visible {
    opacity: 1;
    transform: translateY(0);
}




/* Современная секция создания сообщества */
#create-community-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Анимированный фон с волнами */
#create-community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><defs><pattern id="dots-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="1000" height="300" fill="url(%23dots-pattern)"/></svg>');
    pointer-events: none;
    animation: drift 15s ease-in-out infinite;
}

@keyframes drift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

/* Floating shapes */
#create-community-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

#create-community-section .shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.04));
    border-radius: 50%;
    animation: float 25s infinite linear;
}

#create-community-section .shape:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

#create-community-section .shape:nth-child(2) {
    width: 180px;
    height: 180px;
    top: 60%;
    right: 15%;
    animation-delay: -8s;
}

#create-community-section .shape:nth-child(3) {
    width: 90px;
    height: 90px;
    bottom: 25%;
    left: 5%;
    animation-delay: -16s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-40px) rotate(120deg) scale(1.1); }
    66% { transform: translateY(20px) rotate(240deg) scale(0.9); }
}

#create-community-section .container {
    position: relative;
    z-index: 2;
}

/* Заголовки секций */
.section-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.2s forwards;
}

.gradient-text {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.4s forwards;
}

/* Карточки преимуществ */
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.6s; }
.feature-card:nth-child(2) { animation-delay: 0.8s; }
.feature-card:nth-child(3) { animation-delay: 1s; }

.feature-icon {
    width: 24px;
    height: 24px;
    color: #10b981;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

/* Карточка с инструкцией */
.instruction-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.instruction-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 2rem;
}

/* Исправленные стили для шагов */
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 20px;
    background: rgba(102, 126, 234, 0.03);
    border-radius: 16px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Конкретные стили для каждого шага */
.step-item:nth-of-type(1) {
    border-left-color: #ff6b35;
}

.step-item:nth-of-type(2) {
    border-left-color: #10b981;
}

.step-item:nth-of-type(3) {
    border-left-color: #f59e0b;
}

.step-item:hover {
    background: rgba(102, 126, 234, 0.08);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Градиенты для номеров шагов */
.step-item:nth-of-type(1) .step-number {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.step-item:nth-of-type(2) .step-number {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.step-item:nth-of-type(3) .step-number {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.step-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(15px);
    opacity: 0.4;
    z-index: -1;
}

.step-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    margin-top: 0;
}

.step-content p {
    font-size: 1rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

/* Кнопка видео */
.video-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.video-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: white;
}

.video-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.video-btn:hover::before {
    left: 100%;
}

/* Адаптивность */
@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-number {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .instruction-card {
        padding: 24px 20px;
    }

    .step-item {
        padding: 16px;
    }
}

/* Кнопка видео */
.video-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    margin-top: 1.5rem;
}

.video-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: white;
}

.video-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.video-btn:hover::before {
    left: 100%;
}

/* Секция платежей */
#payments-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    padding: 80px 0;
    margin-top: 60px;
}

/* Изображение с эффектами */
.image-container {
    position: relative;
    padding: 20px;
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 1s ease-out 0.3s forwards;
}

.decorative-shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.shape-warning {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    width: 120px;
    height: 120px;
    top: 0;
    right: 0;
    opacity: 0.7;
    animation: float 8s ease-in-out infinite;
}

.shape-danger {
    background: linear-gradient(135deg, #ef4444, #f87171);
    width: 80px;
    height: 80px;
    bottom: 40px;
    left: 0;
    opacity: 0.7;
    animation: float 8s ease-in-out infinite reverse;
}

.main-image {
    border-radius: 24px;
    width: 100%;
    height: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.05);
}

/* Категории платежей */
.payment-category {
    background: rgba(102, 126, 234, 0.03);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 1.5rem;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
    cursor: pointer;
}

.payment-category:nth-child(1) {
    animation-delay: 0.8s;
    border-left-color: #3b82f6;
}
.payment-category:nth-child(2) {
    animation-delay: 1s;
    border-left-color: #10b981;
}
.payment-category:nth-child(3) {
    animation-delay: 1.2s;
    border-left-color: #f59e0b;
}

.payment-category:hover {
    background: rgba(102, 126, 234, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.payment-badge {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.payment-details {
    font-size: 0.95rem;
    color: #4a5568;
    margin-top: 8px;
}

/* Sparkles */
.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    animation: sparkle 4s infinite;
}

.sparkle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 40%; right: 20%; animation-delay: 1.5s; }
.sparkle:nth-child(3) { bottom: 30%; left: 10%; animation-delay: 3s; }
.sparkle:nth-child(4) { top: 70%; right: 15%; animation-delay: 0.8s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .section-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    #create-community-section {
        padding: 0px 0;
    }

    .section-heading {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .instruction-card {
        padding: 30px 24px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-number {
        align-self: center;
    }

    .payment-category {
        padding: 16px;
    }

    .image-container {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 1.7rem;
    }

    .instruction-card {
        padding: 24px 20px;
    }

    .step-item {
        padding: 16px;
    }
}

/* Дополнительные эффекты */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}



/* Современная секция преимуществ */
/* Стили для секции преимуществ */
#benefits-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

#benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grain-gradient" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:white;stop-opacity:0.1"/><stop offset="100%" style="stop-color:white;stop-opacity:0.03"/></radialGradient><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="45" r="1" fill="white" opacity="0.08"/><circle cx="45" cy="75" r="1" fill="white" opacity="0.12"/><circle cx="65" cy="15" r="1" fill="white" opacity="0.06"/><circle cx="15" cy="65" r="1" fill="white" opacity="0.09"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grain)"/><rect width="1000" height="1000" fill="url(%23grain-gradient)"/></svg>');
    pointer-events: none;
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    animation: floatOrb 20s infinite linear;
}

.orb:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 10%;
    left: -75px;
    animation-delay: 0s;
}

.orb:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -100px;
    animation-delay: -7s;
}

.orb:nth-child(3) {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 15%;
    animation-delay: -14s;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-60px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-30px) rotate(180deg) scale(0.9); }
    75% { transform: translateY(-45px) rotate(270deg) scale(1.05); }
}

.main-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
    /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); */
}



.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: white;
    position: relative;
}

.benefit-card:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 16px;
}

.benefit-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

.pulse-dot {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2.5s infinite;
}

.metric-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Стили для кнопки калькулятора */
.profit-calculator-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.profit-calculator-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6);
    color: #2d3748;
}

.profit-calculator-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.profit-calculator-btn:hover::before {
    left: 100%;
}

/* Стили для модального окна */
.modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-bottom: none;
    padding: 24px 32px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 32px;
    background: #f8fafc;
}

/* Стили для слайдеров */
.slider-container {
    margin-bottom: 2rem;
}

.slider-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-value {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    min-width: 80px;
    text-align: center;
}

.custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.custom-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.custom-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.slider-track {
    position: relative;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.slider-progress {
    height: 100%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Стили для результата */
.profit-result {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.profit-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.profit-amount {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.profit-label {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.profit-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.profit-detail {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.profit-detail-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.profit-detail-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Анимации */
.pulse-animation {
    animation: profitPulse 0.6s ease-out;
}

@keyframes profitPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Адаптивность */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .main-card {
        padding: 40px 25px;
    }

    .benefit-card {
        padding: 32px 24px;
        margin-bottom: 20px;
    }

    .modal-body {
        padding: 24px 20px;
    }

    .profit-details {
        grid-template-columns: 1fr;
    }
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: sparkle 6s infinite;
}

.sparkle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 30%; right: 15%; animation-delay: 2s; }
.sparkle:nth-child(3) { bottom: 25%; left: 20%; animation-delay: 4s; }
.sparkle:nth-child(4) { top: 70%; right: 10%; animation-delay: 1s; }
.sparkle:nth-child(5) { bottom: 40%; right: 30%; animation-delay: 3s; }
.sparkle:nth-child(6) { top: 50%; left: 5%; animation-delay: 5s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* Современная секция тарифов */
#pricing-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* Анимированный фон */
#pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="pricing-gradient" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:white;stop-opacity:0.15"/><stop offset="100%" style="stop-color:white;stop-opacity:0.05"/></radialGradient><pattern id="pricing-grain" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="60" cy="40" r="1" fill="white" opacity="0.08"/><circle cx="40" cy="60" r="1" fill="white" opacity="0.12"/><circle cx="10" cy="50" r="1" fill="white" opacity="0.06"/></pattern></defs><rect width="1000" height="1000" fill="url(%23pricing-grain)"/><rect width="1000" height="1000" fill="url(%23pricing-gradient)"/></svg>');
    pointer-events: none;
    animation: shimmer 12s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Floating orbs */
#pricing-section .floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

#pricing-section .orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    animation: floatOrb 25s infinite linear;
}

#pricing-section .orb:nth-child(1) {
    width: 180px;
    height: 180px;
    top: 10%;
    left: -90px;
    animation-delay: 0s;
}

#pricing-section .orb:nth-child(2) {
    width: 140px;
    height: 140px;
    top: 70%;
    right: -70px;
    animation-delay: -8s;
}

#pricing-section .orb:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -16s;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-60px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-30px) rotate(180deg) scale(0.9); }
    75% { transform: translateY(-45px) rotate(270deg) scale(1.05); }
}

#pricing-section .container {
    position: relative;
    z-index: 2;
}

/* Заголовок секции */
#pricing-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

#pricing-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.2s forwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#pricing-section .section-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 0;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.4s forwards;
}

/* Переключатель тарифов */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.6s forwards;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.save-badge {
    background: linear-gradient(45deg, #10b981, #34d399);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

.pricing-switch {
    width: 60px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-switch.active {
    background: rgba(255, 255, 255, 0.3);
}

.pricing-switch::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pricing-switch.active::before {
    transform: translateX(28px);
}

/* Карточки тарифов */
.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.8s; }
.pricing-card:nth-child(2) { animation-delay: 1s; }
.pricing-card:nth-child(3) { animation-delay: 1.2s; }

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 1s;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
}

.pricing-card:hover::before {
    left: 100%;
}

/* Популярный тариф */
.pricing-card.popular {
    border: 2px solid #667eea;
    background: rgba(255, 255, 255, 0.98);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Заголовки тарифов */
.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

/* Цены */
.price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a5568;
    margin-right: 4px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2d3748;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* Кнопки */
.plan-button {
    width: 100%;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.plan-button.primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.plan-button.secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.plan-button:hover {
    transform: translateY(-3px);
}

.plan-button.primary:hover {
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
    color: white;
}

.plan-button.secondary:hover {
    background: #667eea;
    color: white;
}

/* Список функций */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #4a5568;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Sparkles */
.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: sparkle 6s infinite;
}

.sparkle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 30%; right: 15%; animation-delay: 2s; }
.sparkle:nth-child(3) { bottom: 25%; left: 20%; animation-delay: 4s; }
.sparkle:nth-child(4) { top: 70%; right: 10%; animation-delay: 1s; }
.sparkle:nth-child(5) { bottom: 40%; right: 30%; animation-delay: 3s; }
.sparkle:nth-child(6) { top: 50%; left: 5%; animation-delay: 5s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* CTA секция */
#cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Декоративные элементы */
.decorative-triangle {
    position: absolute;
    top: 20px;
    left: 60px;
    color: #f59e0b;
    opacity: 0.7;
    animation: float 8s ease-in-out infinite;
}

.decorative-circle {
    position: absolute;
    bottom: 40px;
    right: 60px;
    color: #10b981;
    opacity: 0.7;
    animation: float 8s ease-in-out infinite reverse;
}

#cta-section .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

#cta-section .cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.3;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.2s forwards;
}

#cta-section .cta-button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.4s forwards;
}

#cta-section .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

#cta-section .cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
    color: white;
}

#cta-section .cta-button:hover::before {
    left: 100%;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Адаптивность */
@media (max-width: 1024px) {
    #pricing-section .section-title {
        font-size: 2.8rem;
    }

    #cta-section .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    #pricing-section {
        padding: 80px 0;
    }

    #pricing-section .section-title {
        font-size: 2.2rem;
    }

    #cta-section {
        padding: 80px 0;
    }

    #cta-section .cta-title {
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: 32px 24px;
        margin-bottom: 20px;
    }

    .pricing-card.popular {
        transform: scale(1);
        margin-top: 0;
        margin-bottom: 20px;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    #pricing-section .section-title {
        font-size: 1.8rem;
    }

    #cta-section .cta-title {
        font-size: 1.5rem;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .decorative-triangle {
        left: 20px;
        top: 10px;
    }

    .decorative-circle {
        right: 20px;
        bottom: 20px;
    }
}



/* Современная секция тарифов */
#pricing-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    min-height: 100vh;
}

/* Анимированный фон */
#pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="pricing-gradient" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:white;stop-opacity:0.15"/><stop offset="100%" style="stop-color:white;stop-opacity:0.05"/></radialGradient><pattern id="pricing-grain" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="60" cy="40" r="1" fill="white" opacity="0.08"/><circle cx="40" cy="60" r="1" fill="white" opacity="0.12"/><circle cx="10" cy="50" r="1" fill="white" opacity="0.06"/></pattern></defs><rect width="1000" height="1000" fill="url(%23pricing-grain)"/><rect width="1000" height="1000" fill="url(%23pricing-gradient)"/></svg>');
    pointer-events: none;
    animation: shimmer 12s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Floating orbs */
#pricing-section .floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

#pricing-section .orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    animation: floatOrb 25s infinite linear;
}

#pricing-section .orb:nth-child(1) {
    width: 180px;
    height: 180px;
    top: 10%;
    left: -90px;
    animation-delay: 0s;
}

#pricing-section .orb:nth-child(2) {
    width: 140px;
    height: 140px;
    top: 70%;
    right: -70px;
    animation-delay: -8s;
}

#pricing-section .orb:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -16s;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    25% { transform: translateY(-60px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-30px) rotate(180deg) scale(0.9); }
    75% { transform: translateY(-45px) rotate(270deg) scale(1.05); }
}

#pricing-section .container {
    position: relative;
    z-index: 2;
}

/* Заголовок секции */
#pricing-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

#pricing-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.2s forwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#pricing-section .section-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 0;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.4s forwards;
}

/* Переключатель тарифов */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.6s forwards;
}

.toggle-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.toggle-label.active {
    color: white;
    font-weight: 700;
}

.save-badge {
    background: linear-gradient(45deg, #10b981, #34d399);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 8px;
    animation: pulse 2s infinite;
}

.pricing-switch {
    width: 70px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-switch.active {
    background: rgba(255, 255, 255, 0.3);
}

.pricing-switch::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    transition: transform 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-switch.active::before {
    transform: translateX(34px);
}

/* Карточки тарифов */
.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.8s; }
.pricing-card:nth-child(2) { animation-delay: 1s; }
.pricing-card:nth-child(3) { animation-delay: 1.2s; }

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 1s;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
}

.pricing-card:hover::before {
    left: 100%;
}

/* Популярный тариф */
.pricing-card.popular {
    border: 2px solid #667eea;
    background: rgba(255, 255, 255, 0.98);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Заголовки тарифов */
.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

/* Цены */
.price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a5568;
    margin-right: 4px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2d3748;
    line-height: 1;
    transition: all 0.4s ease;
}

.period {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

/* Кнопки */
.plan-button {
    width: 100%;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.plan-button.primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.plan-button.secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.plan-button:hover {
    transform: translateY(-3px);
}

.plan-button.primary:hover {
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
    color: white;
}

.plan-button.secondary:hover {
    background: #667eea;
    color: white;
}

/* Список функций */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #4a5568;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Sparkles */
.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: sparkle 6s infinite;
}

.sparkle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 30%; right: 15%; animation-delay: 2s; }
.sparkle:nth-child(3) { bottom: 25%; left: 20%; animation-delay: 4s; }
.sparkle:nth-child(4) { top: 70%; right: 10%; animation-delay: 1s; }
.sparkle:nth-child(5) { bottom: 40%; right: 30%; animation-delay: 3s; }
.sparkle:nth-child(6) { top: 50%; left: 5%; animation-delay: 5s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Адаптивность */
@media (max-width: 1024px) {
    #pricing-section .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    #pricing-section {
        padding: 80px 0;
    }

    #pricing-section .section-title {
        font-size: 2.2rem;
    }

    .pricing-card {
        padding: 32px 24px;
        margin-bottom: 20px;
    }

    .pricing-card.popular {
        transform: scale(1);
        margin-top: 0;
        margin-bottom: 20px;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    #pricing-section .section-title {
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: 28px 20px;
    }
}

/* Анимация изменения цен */
.price-change {
    animation: priceChange 0.6s ease-in-out;
}

@keyframes priceChange {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

