/* Features Page */
.features-hero {
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center top, rgba(139, 92, 246, 0.1) 0%, rgba(5, 5, 5, 1) 40%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #9ca3af;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Features Main */
.features-main {
    padding: 80px 0;
    background: #050505;
}

/* Feature Category */
.feature-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    color: #f3f4f6;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(139, 92, 246, 0.2);
}

.category-title i {
    color: #8B5CF6;
    font-size: 1.5rem;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 25px;
}

/* Feature Item */
.feature-item {
    background: rgba(139, 92, 246, 0.03);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.06);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B5CF6, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.3rem;
}

.feature-content h3 {
    color: #f3f4f6;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-content p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tags span {
    padding: 4px 10px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 5px;
    color: #a78bfa;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
}