/**
 * Hunik AI — Styles icônes SVG
 */

/* Base */
.ha-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

/* Icônes services */
.ha-services-grid__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(56, 84, 255, 0.15) 0%, rgba(144, 36, 245, 0.15) 100%);
    border: 1px solid rgba(56, 84, 255, 0.25);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.ha-services-grid__icon:hover {
    background: linear-gradient(135deg, rgba(56, 84, 255, 0.25) 0%, rgba(144, 36, 245, 0.25) 100%);
    border-color: rgba(56, 84, 255, 0.5);
}

.ha-services-grid__svg {
    width: 36px;
    height: 36px;
    color: #3854ff;
}

/* Icônes comparaison */
.ha-comparaison__svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.ha-comparaison__svg--success {
    color: #00d084;
}

/* Icônes FAQ */
.ha-faq__toggle-svg {
    width: 18px;
    height: 18px;
    color: #3854ff;
    transition: transform 0.3s ease;
}

.ha-faq__item.is-open .ha-faq__toggle-svg {
    transform: rotate(45deg);
}
