/* Features Section Styles */

.features {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 20px;
}

.section-badge span {
    color: #4a9eff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Feature Card */
.feature-card {
    background: linear-gradient(135deg, #0a1929 0%, #1a2942 100%);
    border-radius: 12px;
    padding: 40px 25px 30px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(74, 158, 255, 0.15);
}

/* Feature Icon */
.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4a9eff, #00d9ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 16px rgba(74, 158, 255, 0.25);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(74, 158, 255, 0.35);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #4a9eff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-description {
    font-size: 14px;
    color: #c5c9d1;
    margin-bottom: 20px;
    line-height: 1.5;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.feature-list li {
    font-size: 13px;
    color: #c5c9d1;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
    text-align: left;
}

.feature-list li i {
    color: #6b7280;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 70px 0;
    }
    
    .features-container {
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 30px 20px 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .feature-card {
        max-width: 400px;
        margin: 0 auto;
    }
}