

.features-section {
    max-width: 1200px;
    margin: 0 auto 120px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.5;
    transition: 0.4s;
}

.feature-card:hover {
    background: rgba(20, 20, 20, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.5);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.6),
        inset 0 0 20px rgba(var(--primary-rgb), 0.15);
}

.feat-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.feat-icon-box i {
    color: var(--primary);
    opacity: 0.9;
}

.feat-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.feat-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 25px; }
}