/* ============================================
   CIFRE ACADEMY - Features Section
   ============================================ */

.features {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-white);
    position: relative;
}

/* Top Gradient Fade */
.features::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--bg-white));
    z-index: 1;
}

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

/* Features Grid - 3 columns */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

/* Feature Cards - Clean design as per reference */
.feature-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Feature Icon - Blue square as per reference */
.feature-icon {
    width: 70px;
    height: 70px;
    background: #0066FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

/* Feature Card Content */
.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}