.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
    border-radius: var(--radius-md);
    background: white;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    transform-origin: left bottom;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: transparent;
}


.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(76, 195, 189, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon img {
    width: 32px;
    height: 32px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* --- Alternating Features --- */
.alt-feature-section {
    background: var(--bg-light);
}