/* ===== Panel Features 6-Card Grid Section ===== */

.panel-features-showcase {
    padding: var(--wa-section-spacing-desktop) 0;
    background: linear-gradient(0deg, #c8e6ff 0%, #eef8ff 50%, #ffffff 100%);
    border-top: 1px solid rgba(10, 146, 221, 0.15);
    border-bottom: 1px solid rgba(10, 146, 221, 0.15);
    text-align: center;
}

.panel-features-showcase .section-header {
    margin-bottom: 56px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.panel-features-showcase .section-subtitle {
    font-size: 1.1rem;
    color: var(--wa-text-700);
    margin-top: 16px;
    line-height: 1.6;
}

.panel-features-grid-six {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 36px;
}

.panel-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    transition: all 0.3s ease;
    border-radius: var(--wa-radius-lg);
}

.panel-feature-item:hover {
    transform: translateY(-5px);
}

.feature-item-icon {
    width: 72px;
    height: 72px;
    background: rgba(10, 146, 221, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-item-icon i {
    font-size: 2rem;
    color: var(--primary-color, #0A92DD);
}

.panel-feature-item:hover .feature-item-icon {
    background: var(--primary-color, #0A92DD);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(10, 146, 221, 0.25);
}

.panel-feature-item:hover .feature-item-icon i {
    color: var(--white, #ffffff) !important;
}

.panel-feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wa-brand-900, #100f57);
    margin-bottom: 12px;
    line-height: 1.3;
}

.panel-feature-item p {
    font-size: 0.95rem;
    color: var(--wa-text-700, #34526d);
    line-height: 1.6;
    margin: 0;
}

/* Tablet (2 columns) */
@media (max-width: 991px) {
    .panel-features-grid-six {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 24px;
    }
    
    .panel-features-showcase .section-header {
        margin-bottom: 40px;
    }
}

/* Mobile (1 column) */
@media (max-width: 767px) {
    .panel-features-showcase {
        padding: 56px 0;
    }
    
    .panel-features-grid-six {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .panel-feature-item {
        padding: 12px 16px;
    }
    
    .panel-features-showcase .section-subtitle {
        font-size: 0.95rem;
    }
    
    .feature-item-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }
    
    .feature-item-icon i {
        font-size: 1.75rem;
    }
}
