/* FIX DU TITRE - Suppression complète des effets néon - Design Corporate */

/* Règle de base pour tous les titres h1 dans .hero - STYLE CORPORATE */
.hero h1,
.hero h1.hero-title,
.hero-title,
h1.hero-title {
    /* Style corporate sobre */
    font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
    font-weight: 800 !important;
    margin-bottom: 24px !important;
    text-transform: none !important;
    letter-spacing: -0.02em !important;
    line-height: 1.15 !important;
    position: relative !important;
    z-index: 2 !important;
    transition: color 0.3s ease !important;
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    
    /* Couleur corporate - NO EFFECTS */
    color: var(--text-primary) !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    
    /* SUPPRESSION TOTALE DES EFFETS NEON */
    text-shadow: none !important;
    filter: none !important;
    box-shadow: none !important;
    
    /* Désactiver toutes les animations */
    animation: none !important;
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
}

/* Désactiver TOUS les effets néon sur les enfants du titre */
.hero h1 *,
.hero h1.hero-title *,
.hero-title *,
h1.hero-title * {
    animation: none !important;
    text-shadow: none !important;
    background: none !important;
    filter: none !important;
}

/* SUPPRESSION COMPLÈTE des pseudo-éléments qui créent des effets */
.hero h1::before,
.hero h1::after,
.hero h1.hero-title::before,
.hero h1.hero-title::after,
.hero-title::before,
.hero-title::after,
h1.hero-title::before,
h1.hero-title::after {
    display: none !important;
    content: none !important;
    background: none !important;
    filter: none !important;
    text-shadow: none !important;
}

/* Exception : on garde seulement la ligne décorative corporate */
.hero-title::before {
    display: block !important;
    content: '' !important;
    position: absolute !important;
    top: -20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 4px !important;
    background: var(--primary-color) !important;
    border-radius: 2px !important;
    filter: none !important;
    opacity: 1 !important;
}

/* Désactiver les classes problématiques */
.hero h1.glitch,
.hero h1.neon-glow,
.hero h1.wave-text,
.hero-title.glitch,
.hero-title.neon-glow,
.hero-title.wave-text,
h1.hero-title.glitch,
h1.hero-title.neon-glow,
h1.hero-title.wave-text {
    text-shadow: none !important;
    background: none !important;
    filter: none !important;
    animation: none !important;
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary) !important;
}

/* Effet de survol corporate simple */
.hero h1:hover,
.hero h1.hero-title:hover,
.hero-title:hover,
h1.hero-title:hover {
    transform: none !important;
    text-shadow: none !important;
    filter: none !important;
    color: var(--primary-dark) !important;
}

/* Accent coloré sur strong */
.hero-title strong {
    color: var(--primary-color) !important;
    font-weight: 800 !important;
    text-shadow: none !important;
    background: none !important;
}
