/* ============================================
   Features Section Module
   ============================================ */

.features__grid {
    margin-top: var(--space-16);
}

.features__card {
    text-align: center;
    padding: var(--space-8) var(--space-6);
}

.features__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--accent-light);
    color: var(--accent);
    margin-bottom: var(--space-5);
    transition: all var(--transition-base);
}

.features__card:hover .features__icon {
    background: var(--accent-gradient);
    color: #ffffff;
    transform: scale(1.1) rotate(-3deg);
    box-shadow: var(--shadow-glow);
}

.features__title {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.features__desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-normal);
}

/* "See all" link */
.features__more {
    text-align: center;
    margin-top: var(--space-12);
}

