/* static/css/style.css */
.platform-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    margin-top: 2rem;
}

.platform-title {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.platform-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.highlight-item {
    transition: transform 0.3s ease;
}

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

.platform-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon {
    width: 32px;
    height: 32px;
}

.icon-svg {
    width: 48px;
    height: 48px;
    fill: currentColor;
}

.feature-icon-wrapper {
    margin-bottom: 1rem;
}

.hero-actions .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
}

/* Анимации */
.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Адаптивность */
@media (max-width: 768px) {
    .platform-title {
        font-size: 2rem;
    }
    
    .platform-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}