
/* Icônes SVG Néon */
.neon-icon {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    margin-right: 0.3em;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 3px currentColor);
    transition: all 0.3s ease;
}

.neon-icon:hover {
    filter: drop-shadow(0 0 8px currentColor);
}

/* Icônes dans les titres */
h1 .neon-icon, h2 .neon-icon, h3 .neon-icon {
    width: 1.5em;
    height: 1.5em;
    margin-right: 0.5em;
}

/* Icônes dans les badges */
.hero-badge .neon-icon,
.badge .neon-icon {
    width: 1em;
    height: 1em;
    margin-right: 0.25em;
}
