/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

.grecaptcha-badge {
    visibility: hidden !important;
}

.dp-header-btn {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Dimensions figées pour bloquer le CLS */
    height: 40px;
    padding: 0 20px;
    line-height: 1;
    white-space: nowrap; /* Interdit au texte de passer sur 2 lignes */
    border-radius: 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    will-change: transform;
    transform: translateZ(0); /* Accélération matérielle */
}

/* Bouton E85 (Contour Vert) */
.dp-btn-green-outline {
    background-color: rgba(16, 185, 129, 0.09); /* Fond très légèrement teinté */
    color: #10b981; /* Vert E85 */
    border: 1px solid #10b981;
}

.dp-btn-green-outline:hover {
    background-color: #10b981;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

/* Bouton Stage 1 (Plein Orange) */
.dp-btn-orange-solid {
    background-color: #FF4D24; /* Orange Dieze */
    color: #ffffff;
    border: 1px solid #FF4D24; /* Bordure identique pour garder la même taille exacte */
}

.dp-btn-orange-solid:hover {
    background-color: #e63e1c;
    border-color: #e63e1c;
    box-shadow: 0 5px 15px rgba(255, 77, 36, 0.3);
    transform: translateY(-2px);
}

/* Responsive Mobile : Cacher les textes ou réduire le bouton si l'espace manque dans le header */
@media (max-width: 992px) {
    .dp-header-actions {
        display: none; /* Souvent masqué sur mobile pour laisser place au menu hamburger */
    }
}

.hero-halo-top-right, .pulse-dot::after {
    will-change: transform, opacity;
    transform: translateZ(0);
}

.hero-bg-img {
    will-change: transform;
    transform: translateZ(0);
}

@media (max-width: 768px) {
  .br-desktop {
    display: none;
  }
}

/* par défaut (sur pc), le retour à la ligne est masqué */
.br-mobile {
    display: none;
}

/* sur mobile (écrans jusqu'à 768px), le retour à la ligne s'active */
@media (max-width: 768px) {
    .br-mobile {
        display: block;
    }
}

:root {
    --bg-main: #161616;
    --accent: #FF4D24;
    --gray: #888888;
    --black: #000000;
    --white: #FFFFFF;
}

/* Styles globaux limités à la section hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-main);
    overflow: hidden;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

/* Conteneur picture pour l'image LCP */
.hero-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* On ajuste la classe de l'image qui se trouve à l'intérieur + Zoom Lent */
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: slow-zoom 20s infinite alternate ease-in-out;
}

@keyframes slow-zoom {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1.15);
    }
}

.hero p, .hero .subtitle {
    font-family: 'Archivo Narrow', sans-serif;
}

/* Overlay PC */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 200px, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

/* Halo PC */
.hero-halo {
    position: absolute;
    top: 50%;
    left: 0;
    width: 50vw;
    height: 50vw;
    min-width: 400px;
    min-height: 400px;
    background: radial-gradient(ellipse at center, rgba(255, 77, 36, 0.18) 0%, rgba(255, 77, 36, 0) 65%);
    transform: translateY(-50%) rotate(45deg) scaleX(0.6);
    z-index: 1;
    pointer-events: none;
}

/* Nouveau Halo en haut à droite avec Pulsation lente */
.hero-halo-top-right {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 77, 36, 0.5) 0%, rgba(255, 77, 36, 0) 70%);
    z-index: 1;
    pointer-events: none;
    animation: slow-pulse 8s infinite alternate ease-in-out;
}

@keyframes slow-pulse {
    from {
        opacity: 0.6;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Panneau technique gauche */
.left-tech-panel {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
    opacity: 0.5;
}

/* Texte vertical creux avec animation néon */
.vertical-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    gap: 0.1rem;
    font-family: 'Archivo Black', sans-serif;
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.vertical-brand span {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent);
    display: block;
    text-align: center;
    filter: drop-shadow(0 0 4px rgba(255, 77, 36, 0.5));
    animation: neon-flicker 5s infinite;
}

.vertical-brand span:nth-child(2) { animation-delay: 0.2s; }
.vertical-brand span:nth-child(5) { animation-delay: 1.5s; }
.vertical-brand span:nth-child(8) { animation-delay: 0.8s; }

@keyframes neon-flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        -webkit-text-stroke: 2px #FF7A4D; 
        filter: 
            drop-shadow(0 0 2px rgba(255, 255, 255, 0.8))
            drop-shadow(0 0 8px #FF4D24) 
            drop-shadow(0 0 20px #FF4D24)
            drop-shadow(0 0 40px rgba(255, 77, 36, 0.8));
    }
    20%, 24%, 55% {
        -webkit-text-stroke: 1.5px rgba(255, 77, 36, 0.2);
        filter: none;
    }
}

/* Texte technique style cockpit */
.cockpit-data {
    font-family: monospace;
    font-size: 9px;
    color: var(--accent);
    opacity: 0.8;
    letter-spacing: 1.5px;
    line-height: 1.6;
    padding-left: 0;
    text-align: center;
    width: fit-content;
    text-transform: uppercase;
}

/* Contenu principal et mise en page responsive */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    padding: 2rem;
    transition: transform 0.5s ease;
}

.badge-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

/* Typographie des titres */
.hero-title {
    font-family: 'Archivo Black', sans-serif;
    line-height: 1.1;
    font-size: 1.875rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    word-break: break-word;
}

.dynamic-word {
    background: linear-gradient(to right, var(--accent) 0%, var(--white) 25%, var(--gray) 50%, var(--black) 75%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 8s linear infinite;
    display: inline-block;
    max-width: 100%;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.location-text {
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.15em;
    line-height: 1.2;
    white-space: nowrap;
    display: block;
    margin-top: 1rem;
    font-size: 1.25rem;
}

/* Paragraphe descriptif */
.hero-subtitle-container {
    margin-bottom: 3rem;
}

.subtitle-glass {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 2rem;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.hero-subtitle-text {
    font-size: 1rem;
    color: #e5e7eb;
    max-width: 36rem;
    line-height: 1.625;
    margin: 0;
}

/* Liste à puces pour le Hero - Mise en grille 2x2 resserrée */
.hero-check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0; /* J'ai réduit l'espace avec la boîte au-dessus (au lieu de 2rem) */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem; /* Le 1er chiffre gère l'espace haut/bas, le 2ème l'espace gauche/droite */
    max-width: 900px;
}

.hero-check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #e5e7eb;
    text-align: left;
    font-family: 'Inter', sans-serif;
}

.hero-check-list li svg {
    flex-shrink: 0;
}

/* On repasse sur 1 colonne sur petit écran pour éviter d'écraser le texte */
@media (max-width: 768px) {
    .hero-check-list {
        grid-template-columns: 1fr;
    }
}

/* Boutons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.btn-primary, .btn-secondary {
    padding: 1.25rem 2.5rem;
    border-radius: 4px;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-4px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-4px);
}

/* Media Queries pour le responsive */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .location-text {
        font-size: 1.875rem;
    }
    .hero-subtitle-text,
    .hero-check-list li {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        margin-left: 300px;
        margin-right: auto;
    }
    .hero-title {
        font-size: 4.5rem;
    }
}

/* AJUSTEMENTS MOBILE GLOBAUX */
@media (max-width: 1023px) {
    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 1.5rem;
        padding-top: 100px;
    }
    
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
    }

    .hero-halo {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg) scaleX(0.7);
        opacity: 0.7;
    }
    
    .hero-halo-top-right {
        top: -50px;
        right: -50px;
        width: 250px;
        height: 250px;
        opacity: 0.4;
    }

    .location-text {
        white-space: normal;
    }
    
    .left-tech-panel {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 6.5vw, 2.2rem);
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        margin-bottom: 2rem;
        line-height: 1.1em;
    }

    .dynamic-word {
        display: inline-block; 
        max-width: 100%;
    }
    
    .subtitle-glass {
        padding: 1.25rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

:root {
    --motorperf-orange: #FF6D00; /* Orange vif Motorperf */
    --motorperf-dark: #0A0A0A;   /* Noir profond */
    --motorperf-gray: #1A1A1A;   /* Gris anthracite pour les cartes */
    --motorperf-white: #FFFFFF;
}

.motorperf-bandeau {
    background-color: var(--motorperf-dark);
    padding: 60px 20px;
    color: var(--motorperf-white);
    font-family: 'Inter', sans-serif;
}

.motorperf-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    border-bottom: 3px solid var(--motorperf-orange);
    display: inline-block;
}

.motorperf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.motorperf-card {
    background: var(--motorperf-gray);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

/* L'animation de bordure adaptée */
.border-animation::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(90deg, var(--motorperf-orange), transparent, var(--motorperf-orange));
    background-size: 200% 200%;
    z-index: -1;
    animation: borderRotate 4s linear infinite;
    border-radius: 14px;
}

@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.motorperf-button {
    display: inline-block;
    background-color: var(--motorperf-orange);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.motorperf-button:hover {
    transform: scale(1.05);
    background-color: #e65c00;
}

@media screen and (min-width: 1025px) and (max-width: 1600px) {
    
    /* Gère l'espace au-dessus du bloc gauche MOTORPERF */
    .left-tech-panel {
        top: 10% !important; /* Modifie ce pourcentage (ex: 15% pour monter, 35% pour descendre) */
    }

    /* Gère l'espace au-dessus du titre (Descend ou remonte le bloc) */
    .hero-content {
        padding-top: 12vh !important;
    }

    /* Gère la taille du H1 sur PC portable */
    .hero-title {
        font-size: clamp(1.9rem, 4vw, 3rem) !important;
        line-height: 1.15;
    }

    /* Gère la taille de MOTORPERF vertical sur PC portable */
    .vertical-brand {
        font-size: 4rem !important; 
    }
}

/* --- SECTION SERVICES (MISE À JOUR BACKGROUND) --- */
.services-section {
    position: relative;
    background-color: #0a0a0c; /* Noir profond identique au réseau */
    background-image: 
        radial-gradient(circle at 75% 50%, rgba(255, 77, 36, 0.08) 0%, transparent 60%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 60px 60px, 60px 60px;
    padding: 4rem 2rem;
    color: var(--white);
    overflow: hidden;
}

/* Le canvas d'animation JS des néons */
#grid-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Se place au-dessus du fond CSS */
    pointer-events: none; /* Ne bloque pas la souris */
    background: transparent !important; /* Laisse apparaître la grille CSS en dessous */
}

/* On force le contenu à passer au premier plan, au-dessus des néons */
.services-header, 
.services-grid {
    position: relative;
    z-index: 2;
}

.services-grid {
    position: relative;
    z-index: 1;
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

/* Design Bento Glassmorphism Dark */
.service-card {
    background: rgba(255, 255, 255, 0.03); /* Verre fumé ultra léger */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 32px;
    padding: 4rem 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 77, 36, 0.4); /* Bordure qui s'allume en orange */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 77, 36, 0.1);
}

/* L'icône en haut à gauche de la carte */
.service-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(255, 77, 36, 0.08);
    color: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    box-shadow: inset 0 0 0 1px rgba(255, 77, 36, 0.2);
}

.service-card h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.service-text {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Structure de la liste de bénéfices */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 500;
    color: #e5e7eb; /* Gris très clair pour un contraste parfait */
}

/* Point orange fluo */
.benefit-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 1.2rem;
    box-shadow: 0 0 12px rgba(255, 77, 36, 0.6);
    flex-shrink: 0;
}

/* Optimisation Mobile */
@media (max-width: 768px) {
    .services-section {
        padding: 5rem 1.5rem;
    }
    .service-card {
        padding: 2.5rem 2rem;
        border-radius: 24px;
    }
}

/* --- EN-TÊTE DE LA SECTION SERVICES --- */
.services-header {
    position: relative;
    z-index: 1; /* Reste au-dessus des étincelles */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.services-header h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Modifie le H3 pour garder le style de ton ancien H2 */
.service-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

/* Style de la phrase d'accroche en bas de carte */
.service-footer-text {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e5e7eb;
    line-height: 1.5;
}

/* --- SECTION POURQUOI CHOISIR (PREMIUM LIGHT MODE) --- */
.why-section {
    background-color: var(--white);
    color: var(--black);
    padding: 8rem 2rem;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

/* Grille d'images et Badge Glassmorphism */
.why-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
}

.why-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px; /* Bords plus ronds pour l'aspect premium */
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.why-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-img-wrapper:hover img {
    transform: scale(1.05);
}

.why-img-large {
    grid-row: span 2;
    height: 600px;
}

.why-img-small {
    height: 292px;
}

/* Le fameux badge flottant - Centré */
.glass-badge {
    position: absolute;
    bottom: 2rem;
    left: 50%; /* On place le début du badge au centre */
    transform: translateX(-50%); /* On le recule de la moitié de sa propre taille pour un centrage parfait */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 10;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
    white-space: nowrap; /* Empêche le texte de se couper ou d'aller à la ligne */
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
}

/* Contenu texte principal */
.marketing-brief h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.7rem, 4vw, 3rem);
    margin-bottom: 2.5rem;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Ajout d'une lueur (glow) sur la bordure gauche */
.marketing-card {
    border-left: 3px solid var(--accent);
    padding: 2rem 2rem 2rem 3rem;
    margin-bottom: 3rem;
    box-shadow: -6px 0 15px -6px rgba(255, 77, 36, 0.4);
}

.marketing-text {
    font-size: 1.15rem;
    color: #444444;
    line-height: 1.7;
    margin: 0;
}

/* Grille des caractéristiques en style "Mini-Bento" */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem; /* Gap réduit car les cartes ont du padding */
}

.feature-item {
    background: #fbfbfd; /* Gris ultra clair */
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    background: var(--white);
}

.feature-item h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.feature-item p {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.5;
    margin: 0;
}

/* Animations responsive */
@media (max-width: 1023px) {
    .why-section {
        padding: 5rem 1.5rem;
    }
    .why-container { 
        grid-template-columns: 1fr; 
        gap: 4rem; 
    }
    .marketing-brief { 
        order: 1; 
        text-align: left;
    }
    .why-image-grid { 
        order: 2; 
        padding-right: 1.5rem; /* Espace pour le badge qui déborde */
    }
    .glass-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: 1rem;
    }
    .marketing-card {
        border-left: none;
        padding-left: 5px;
        padding-right: 5px;
        border-top: 3px solid var(--accent);
        padding-top: 1rem;
        padding-bottom: 2rem;
        box-shadow: 0 -6px 15px -6px rgba(255, 77, 36, 0.4);
    }
    .feature-grid { 
        grid-template-columns: 1fr; 
    }
}

/* =========================================
   SECTION RÉSEAU & CARTES (LEAFLET)
   ========================================= */

.network-section {
    padding: 80px 0;
    background-color: #0a0a0c;
    color: #ffffff;
    overflow: hidden;
}

.network-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- TEXTES --- */
.network-text h2 { 
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem); 
    color: #ffffff; 
    line-height: 1.1; 
    margin-bottom: 25px; 
}

.title-light { font-family: 'Inter', sans-serif; font-weight: 300; }
.dynamic-word { color: var(--theme-palette-color-1, #FF4D24); }

.network-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #a1a1aa;
    margin-bottom: 35px;
}

.network-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.network-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: #e5e7eb;
}

.network-dot {
    width: 8px; height: 8px;
    background-color: var(--theme-palette-color-1, #FF4D24);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- CARTES --- */
.network-maps-col {
    display: flex;
    flex-direction: column;
    gap: 45px; 
}

.map-box {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.map-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--theme-palette-color-1, #FF4D24);
    font-family: 'Archivo Black', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-label svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
}

/* L'enveloppe avec bords arrondis SANS FILTRE INVERT */
.network-map-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 60%; 
    height: 0;
    border-radius: 16px; 
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    background-color: #1a1a1d; /* Fond en attendant le chargement */
    -webkit-mask-image: -webkit-radial-gradient(white, black); /* Coins arrondis Safari */
}

/* La carte Leaflet */
.leaflet-custom-map {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    z-index: 1;
}

/* Masquer les crédits Leaflet pour un design ultra pur */
.leaflet-control-attribution {
    display: none !important;
}

/* --- RESPONSIVE --- */
@media (max-width: 1023px) {
    .network-container { grid-template-columns: 1fr; gap: 50px; }
    .network-text { text-align: center; }
    .network-list li { justify-content: center; text-align: left; }
}

/* =========================================
   SECTION CARTE INTERACTIVE FRANCE (IMAGE FIXE)
   ========================================= */

.network-section {
    padding: 80px 0;
    background-color: #0a0a0c;
    color: #ffffff;
    overflow: hidden;
}

.network-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Donne un poil plus de place à la carte */
    gap: 60px;
    align-items: center;
}

/* --- COLONNE TEXTE (GAUCHE) --- */
.network-text h2 { 
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem); 
    color: #ffffff; 
    line-height: 1.1; 
    margin-bottom: 25px; 
}

.title-light { font-family: 'Inter', sans-serif; font-weight: 300; }
.dynamic-word { color: var(--theme-palette-color-1, #FF4D24); }

.network-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #a1a1aa;
    margin-bottom: 35px;
}

.network-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.network-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: #e5e7eb;
}

.network-dot {
    width: 8px; height: 8px;
    background-color: var(--theme-palette-color-1, #FF4D24);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- COLONNE CARTE (DROITE) --- */
.network-maps-col { 
    position: relative; 
    width: 100%;
}

.mp-map-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    background: #000000;
    border: 1px solid rgba(255,255,255,0.05);
    height: auto;
    display: block;
    line-height: 0;
}

.mp-map-bg {
    width: 100%; 
    height: auto;
    display: block;
    opacity: 0.7;
    transition: opacity 0.5s;
    filter: saturate(0.9) contrast(1.1);
}

.mp-map-frame:hover .mp-map-bg { 
    opacity: 1; 
    filter: saturate(1); 
}

/* Overlays sombres pour profondeur */
.mp-map-overlay-black {
    position: absolute; inset: 0; 
    background-color: rgba(0, 0, 0, 0.4); 
    pointer-events: none; z-index: 1; 
    transition: background-color 0.5s ease;
}

.mp-map-frame:hover .mp-map-overlay-black { 
    background-color: rgba(0, 0, 0, 0.2); 
}

.mp-map-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(10, 10, 12, 0.8) 100%);
    pointer-events: none; z-index: 1;
}

/* Conteneur des points */
.mp-map-wrapper { 
    position: absolute; inset: 0; z-index: 2; 
}

/* Le Point individuel */
.mp-m-point {
    position: absolute; 
    width: 30px; height: 30px; 
    transform: translate(-50%, -50%);
    cursor: pointer; z-index: 10;
}

.mp-m-marker {
    position: relative; width: 100%; height: 100%;
    display: flex; justify-content: center; align-items: center;
}

/* Image (le logo favicon) */
.mp-m-marker img {
    width: 20px; height: auto; z-index: 2; /* Taille ajustée pour ne pas surcharger la carte */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.8));
    transition: transform 0.3s;
}

/* L'onde radar (ping orange) */
.mp-m-ping {
    position: absolute; width: 100%; height: 100%;
    background-color: var(--theme-palette-color-1, #FF4D24); 
    border-radius: 50%;
    opacity: 0.6; 
    animation: mp-ping 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: 1;
}

/* Animations au survol */
.mp-m-point:hover .mp-m-marker img, 
.mp-m-point.is-active .mp-m-marker img { 
    transform: scale(1.4) translateY(-4px); 
}

.mp-m-point:hover .mp-m-ping, 
.mp-m-point.is-active .mp-m-ping { 
    background-color: #ffffff; animation-duration: 1s; 
}

@keyframes mp-ping { 
    75%, 100% { transform: scale(2.5); opacity: 0; } 
}

/* Tooltip (Nom de la ville) */
.mp-m-tooltip {
    position: absolute; bottom: 120%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.95); color: #fff;
    padding: 6px 12px; border-radius: 6px; font-size: 0.85rem; font-weight: 700;
    white-space: nowrap; opacity: 0; visibility: hidden;
    transition: all 0.2s; pointer-events: none; z-index: 20;
    border: 1px solid var(--theme-palette-color-1, #FF4D24); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    font-family: 'Inter', sans-serif;
}

.mp-m-point:hover .mp-m-tooltip, 
.mp-m-point.always-visible .mp-m-tooltip { 
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); 
}

/* Badge en bas à droite */
.mp-map-badge {
    position: absolute; bottom: 15px; right: 15px;
    background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(4px);
    padding: 6px 12px; border-radius: 30px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase;
    color: var(--theme-palette-color-1, #FF4D24);
    border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 5px; z-index: 5;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 1023px) {
    .mp-m-point { pointer-events: none; } 
    .network-container { grid-template-columns: 1fr; gap: 40px; }
    .network-text { text-align: center; }
    
    /* Transforme la liste en bloc ajusté à son contenu, centré par le parent */
    .network-list { 
        display: inline-flex !important; 
        align-items: flex-start !important; /* Force l'alignement des puces à gauche dans le bloc */
        margin: 0 auto;
    }
    
    /* Maintient le texte à gauche */
    .network-list li { 
        justify-content: flex-start; 
        text-align: left; 
    }
    
    .network-maps-col { width: 100%; }
}

/* =========================================
   SECTION CTA FINAL V2 (STRUCTURE COMMUNE)
   ========================================= */

.cta-urgence-final-v2 {
    position: relative;
    padding: 80px 0;
    overflow: hidden; 
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Taille de la grille commune */
    background-size: 50px 50px; 
    background-position: center;
}

.cta-urgence-final-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1; 
    pointer-events: none;
}

/* --- BANDEAUX DÉFILANTS --- */
.mp-ticker-box {
    max-width: 1050px; 
    width: 90%;
    border-radius: 100px;
    padding: 12px 20px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
}

.ticker-top { margin-bottom: 50px; }
.ticker-bottom { margin-top: 50px; }

.mp-ticker-track { display: flex; gap: 60px; width: max-content; animation: mpScrollTickerBox 35s linear infinite; }
.reverse-track { animation: mpScrollTickerReverseBox 35s linear infinite; }

.ticker-item { display: flex; align-items: center; gap: 10px; }
.ticker-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.ticker-item span { font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.05em; white-space: nowrap; }

@keyframes mpScrollTickerBox { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes mpScrollTickerReverseBox { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* --- LE BLOC CENTRAL (CTA BOX) --- */
.cta-box-v2 {
    max-width: 1100px; width: 90%; border-radius: 24px; display: flex; align-items: stretch; position: relative; z-index: 5;
}
.cta-content-v2 { flex: 1; padding: 60px 50px; display: flex; flex-direction: column; justify-content: center; }
.badge-v2 { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; width: fit-content; margin-bottom: 25px; }
.dot-v2 { width: 8px; height: 8px; background: var(--theme-palette-color-1, #FF4D24); border-radius: 50%; box-shadow: 0 0 10px rgba(255, 77, 36, 0.8); }
.title-v2 { font-family: 'Archivo Black', sans-serif; font-size: clamp(2.2rem, 3.5vw, 3rem); line-height: 1.1; font-weight: 900; margin-bottom: 20px; }
.title-v2 .title-light { font-family: 'Inter', sans-serif; font-weight: 300; display: block; margin-top: 5px; }
.price-v2-box { margin-bottom: 35px; border-left: 4px solid var(--theme-palette-color-1, #FF4D24); padding-left: 20px; }
.desc-v2 { font-size: 1.1rem; line-height: 1.5; font-weight: 600; margin-bottom: 10px; }
.note-v2 { font-size: 0.85rem; font-style: italic; margin-top: 15px; }
.action-v2-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-v2 { padding: 16px 28px; border-radius: 12px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; text-align: center; }
.btn-primary-v2 { background: var(--theme-palette-color-1, #FF4D24); color: white; box-shadow: 0 10px 20px rgba(255, 77, 36, 0.3); }
.btn-primary-v2:hover { background: #e63e15; transform: translateY(-3px); box-shadow: 0 15px 25px rgba(255, 77, 36, 0.4); color: white; }
.cta-img-v2 { flex: 0.8; position: relative; min-height: 400px; }
.img-v2-pop { position: absolute; bottom: 0; right: -20px; max-height: 120%; width: auto; object-fit: contain; z-index: 10; filter: drop-shadow(-10px 10px 25px rgba(0,0,0,0.3)); pointer-events: none; }


/* =========================================
   THÈME 1 : LIGHT MODE (.cta-light)
   ========================================= */

.cta-light {
    background-color: #f8fafc;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}
.cta-light::before { background: radial-gradient(circle at center, rgba(255, 77, 36, 0.05) 0%, rgba(255, 255, 255, 0) 60%); }

.cta-light .mp-ticker-box { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.05); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03); }
.cta-light .ticker-item { color: #4b5563; }

.cta-light .cta-box-v2 { background: #ffffff; border: 1px solid #e5e7eb; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05); }
.cta-light .badge-v2 { background: #fef2f2; color: #111827; border: 1px solid #fecaca; }
.cta-light .title-v2 { color: #111827; }
.cta-light .title-v2 .title-light { color: #4b5563; }
.cta-light .desc-v2 { color: #1f2937; }
.cta-light .note-v2 { color: #9ca3af; }
.cta-light .btn-secondary-v2 { background: #f3f4f6; color: #111827; border: 2px solid transparent; }
.cta-light .btn-secondary-v2:hover { background: #e5e7eb; border-color: #d1d5db; transform: translateY(-3px); }


/* =========================================
   THÈME 2 : DARK MODE (.cta-dark)
   ========================================= */

.cta-dark {
    background-color: #050505;
    /* Grille technique inversée en blanc subtil */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}
.cta-dark::before { background: radial-gradient(circle at center, rgba(255, 77, 36, 0.08) 0%, transparent 60%); }

.cta-dark .mp-ticker-box { background: #000; border: 1px solid rgba(255, 255, 255, 0.05); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }
.cta-dark .ticker-item { color: #d1d5db; }

.cta-dark .cta-box-v2 { background: linear-gradient(135deg, rgba(20, 22, 25, 0.95) 0%, rgba(10, 10, 12, 0.98) 100%); border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6); }
.cta-dark .badge-v2 { background: rgba(255, 77, 36, 0.15); color: #ffffff; border: 1px solid rgba(255, 77, 36, 0.3); }
.cta-dark .title-v2 { color: #ffffff; }
.cta-dark .title-v2 .title-light { color: #9ca3af; }
.cta-dark .desc-v2 { color: #e5e7eb; }
.cta-dark .note-v2 { color: #6b7280; }
.cta-dark .btn-secondary-v2 { background: transparent; color: #ffffff; border: 2px solid rgba(255, 255, 255, 0.2); }
.cta-dark .btn-secondary-v2:hover { background: rgba(255, 255, 255, 0.05); border-color: #ffffff; transform: translateY(-3px); }


/* =========================================
   RESPONSIVE COMMUN
   ========================================= */
@media (max-width: 900px) {
    .cta-urgence-final-v2 { padding: 60px 0; }
    .ticker-top { margin-bottom: 30px; }
    .ticker-bottom { display: none; }
    
    .cta-box-v2 { flex-direction: column; overflow: hidden; border-radius: 20px; }
    .cta-content-v2 { padding: 40px 30px; }
    .action-v2-buttons { flex-direction: column; width: 100%; }
    .btn-v2 { width: 100%; }
    
    .cta-img-v2 { min-height: 300px; display: flex; align-items: flex-end; justify-content: center; background: rgba(0,0,0,0.02); }
    .img-v2-pop { position: relative; bottom: -10px; right: 0; max-height: 320px; filter: drop-shadow(0 -10px 20px rgba(0,0,0,0.1)); }
}


/* =========================================
   BOÎTE CENTRALE CTA (LIGHT)
   ========================================= */
.cta-box-v2 {
    max-width: 1050px;
    width: 90%;
    /* Fond blanc éclatant */
    background: linear-gradient(145deg, #ffffff 0%, #f3f4f6 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    display: flex;
    position: relative;
    z-index: 20;
    /* Ombre plus diffuse et claire que sur le dark mode */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.cta-content-v2 {
    padding: 50px 60px;
    flex: 1;
    position: relative;
    z-index: 2;
}

/* Badge (Gris clair) */
.badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    color: #374151; /* Texte foncé */
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
}

.dot-v2 { width: 8px; height: 8px; background: #16a34a; border-radius: 50%; display: inline-block; position: relative; }
.dot-v2::after { content: ''; position: absolute; inset: 0; background: #16a34a; border-radius: 50%; animation: pulse-green-light 1.5s infinite; }
@keyframes pulse-green-light { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(3.5); opacity: 0; } }

/* Textes */
.title-v2 { 
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 3.2vw, 2.6rem); 
    font-weight: 900; 
    color: #111827; /* Noir profond */
    line-height: 1.1; 
    margin-bottom: 20px; 
}
.title-v2 .title-light { font-family: 'Inter', sans-serif; font-weight: 300; color: var(--theme-palette-color-1, #FF4D24); }

.price-v2-box { margin-bottom: 30px; }
.desc-v2 { color: #4b5563; font-size: 1.15rem; margin: 0 0 8px 0; font-weight: 500; } /* Gris moyen */
.note-v2 { font-size: 0.85rem; color: #9ca3af; font-style: italic; margin-top: 15px; }

/* Boutons */
.action-v2-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-v2 {
    padding: 15px 28px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Bouton principal orange (inchangé) */
.btn-primary-v2 {
    background: var(--theme-palette-color-1, #FF4D24);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 77, 36, 0.25);
}
.btn-primary-v2:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(255, 77, 36, 0.4); }

/* Bouton secondaire (adapté au fond blanc) */
.btn-secondary-v2 {
    background: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db; /* Bordure grise */
}
.btn-secondary-v2:hover { background: #000000; border-color: #9ca3af; transform: translateY(-3px); }

/* --- IMAGE POP-OUT TECHNICIEN --- */
.cta-img-v2 {
    position: absolute;
    right: 30px;
    bottom: 0;
    width: 42%;
    height: 115%; 
    pointer-events: none;
    z-index: 3;
}

.img-v2-pop {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right; 
    filter: drop-shadow(-15px 15px 30px rgba(0,0,0,0.2)); /* Ombre plus douce sur fond clair */
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 900px) {
    .cta-urgence-final-v2 { padding: 40px 0; }
    
    .ticker-bottom { display: none; }
    .ticker-top { margin-bottom: 30px; }

    .cta-box-v2 { flex-direction: column; text-align: center; }
    .cta-content-v2 { padding: 40px 20px; align-items: center; display: flex; flex-direction: column; }
    
    .action-v2-buttons { flex-direction: column; width: 100%; gap: 10px; }
    .btn-v2 { width: 100%; }
    
    .cta-img-v2 { position: relative; right: auto; width: 100%; height: 280px; display: block; margin-top: -10px; }
    .img-v2-pop { object-position: bottom center; }
}

/* =========================================
   SECTION SIMULATEUR E85 (STRUCTURE COMMUNE)
   ========================================= */

.e85-calculator-section {
    /* 1. GESTION DE LA HAUTEUR */
    min-height: 90vh; /* 100vh = 100% de la hauteur de l'écran. Tu peux aussi mettre 800px ou auto */
    
    /* 2. GESTION DU PADDING INTERNE (Espaces vides en haut et en bas) */
    padding-top: 120px;    /* Espace sous ton menu */
    padding-bottom: 100px; /* Espace avant la section suivante */
    padding-left: 0;
    padding-right: 0;
    
    /* 3. CENTRAGE VERTICAL (Utile avec min-height) */
    display: flex;
    align-items: center; 
    
    /* Le reste de ta configuration d'origine */
    position: relative;
    z-index: 10;
    font-family: 'Inter', sans-serif;
}

.e85-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5; /* Au-dessus du halo */
    width: 100%; /* Indispensable car le parent est passé en display: flex */
}

.e85-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 80px;
    align-items: center;
}

/* --- STRUCTURE TEXTE --- */
.e85-text-col .sur-titre {
    color: var(--theme-palette-color-1, #FF4D24);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 20px;
}

.e85-text-col h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.e85-text-col h2 .title-light {
    color: var(--theme-palette-color-1, #FF4D24);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.e85-desc-main { font-size: 1.15rem; line-height: 1.6; margin-bottom: 20px; }
.e85-desc-sub { font-size: 1rem; line-height: 1.6; margin-bottom: 35px; }

.e85-benefits-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.e85-benefits-list li { display: flex; align-items: center; gap: 15px; font-weight: 600; }
.e85-check { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }

/* --- STRUCTURE WIDGET --- */
.e85-widget { border-radius: 24px; overflow: hidden; position: relative; }
.sim-header { padding: 30px 30px 20px 30px; background: transparent; }
.sim-tag { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 15px; color: var(--theme-palette-color-1, #FF4D24); }
.sim-header h3 { font-size: 1.5rem; font-weight: 800; margin: 0 0 15px 0; }
.progress-container { margin-top: 15px; }
.progress-bar-bg { width: 100%; height: 6px; border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--theme-palette-color-1, #FF4D24); width: 33%; transition: width 0.4s ease; }
.progress-text { font-size: 0.8rem; margin-top: 8px; text-align: right; font-weight: 600; }

.sim-content-area { padding: 30px; min-height: 320px; position: relative; background: transparent; }
.sim-step { display: none; animation: fadeInStep 0.4s ease; }
.sim-step.active { display: block; }

@keyframes fadeInStep { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.step-question { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; text-align: center; }
.sim-options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sim-option-btn { padding: 15px 10px; border-radius: 12px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease; }

.loading-box { text-align: center; padding-top: 20px; }
.spinner { width: 40px; height: 40px; border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 20px auto; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.loading-steps { text-align: left; max-width: 250px; margin: 0 auto; }
.l-step { font-size: 0.9rem; margin-bottom: 10px; font-weight: 500; transition: color 0.3s ease; }

.result-box { text-align: center; }
.result-card { border-radius: 16px; padding: 20px; margin-bottom: 25px; }
.res-label { font-size: 0.95rem; font-weight: 600; margin: 0 0 5px 0; text-transform: uppercase; }
.result-saving { font-size: 2.5rem; font-weight: 900; font-family: 'Archivo Black', sans-serif; line-height: 1.1; margin-bottom: 5px; }
.res-sub { font-size: 0.85rem; font-style: italic; }

.form-reveal-area { text-align: left; padding-top: 20px; margin-top: 10px; }
.form-reveal-area h4 { font-size: 1.1rem; margin-bottom: 15px; font-weight: 700; }

/* --- RESPONSIVE MOBILE COMMUN --- */
@media (max-width: 1023px) {
    .e85-calculator-section::after { display: none !important; } /* On cache le halo sur mobile */
    .e85-grid { grid-template-columns: 1fr; gap: 40px; }
    .e85-text-col { text-align: center; }
    .e85-benefits-list li { justify-content: center; }
}
@media (max-width: 480px) {
    .sim-options-grid { grid-template-columns: 1fr; }
    .sim-content-area { padding: 20px; }
}


/* =========================================
   SECTION SIMULATEUR E85 (DARK UNI + HALO)
   ========================================= */

.e85-calculator-section.e85-dark {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    font-family: 'Inter', sans-serif;
    
    /* --- 1. FOND DARK UNI --- */
    background-color: #0a0a0c; /* Couleur sombre unie sur toute la section */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden; /* Nécessaire pour contenir le halo qui dépasse */
}

/* --- 2. LE HALO ORANGE DE PROFONDEUR --- */
/* Positionné spécifiquement derrière la zone du widget (à droite) */
.e85-calculator-section.e85-dark::after {
    content: '';
    position: absolute;
    /* Largeur/hauteur et position pour cibler le widget */
    bottom: -150px; /* Descend un peu sous la section */
    right: -100px;  /* Sort un peu à droite */
    width: 700px;   /* Grand diamètre pour une diffusion douce */
    height: 700px;
    /* Radial gradient: Orange theme (#FF4D24) très diffus */
    background: radial-gradient(circle, rgba(255, 77, 36, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1; /* Derrière le container */
    pointer-events: none; /* Ne bloque pas les clics */
    filter: blur(50px); /* Accentue la douceur du halo */
}

.e85-calculator-section.e85-dark .e85-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5; /* Passe devant le halo */
}

.e85-calculator-section.e85-dark .e85-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* --- COLONNE TEXTE (GAUCHE - DARK) --- */
.e85-calculator-section.e85-dark .e85-text-col .sur-titre {
    color: var(--theme-palette-color-1, #FF4D24);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 20px;
}

.e85-calculator-section.e85-dark .e85-text-col h2 {
    color: #ffffff; /* Blanc pur */
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.e85-calculator-section.e85-dark .e85-text-col h2 .title-light {
    color: var(--theme-palette-color-1, #FF4D24);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.e85-calculator-section.e85-dark .e85-desc-main {
    color: #ffffff; /* Blanc pour contraste maximal */
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.e85-calculator-section.e85-dark .e85-desc-sub {
    color: #d1d5db; /* Gris très clair */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.e85-calculator-section.e85-dark .e85-benefits-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.e85-calculator-section.e85-dark .e85-benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-weight: 600;
}

.e85-calculator-section.e85-dark .e85-check {
    width: 30px;
    height: 30px;
    background: rgba(34, 197, 94, 0.15); /* Vert translucide */
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80; 
    flex-shrink: 0;
    font-size: 0.9rem;
}

/* --- COLONNE WIDGET (DROITE - DARK GLASSMORPHISM) --- */
/* Légèrement transparent pour laisser passer subtilement le halo */
.e85-calculator-section.e85-dark .e85-widget {
    background: linear-gradient(145deg, rgba(30, 32, 35, 0.8) 0%, rgba(10, 10, 12, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6); 
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px); /* Effet verre sur le halo orange/noir */
}

/* ... Reste du style du simulateur (sim-header, buttons, results, etc.) ... */
/* (Garder le même style sombre pour les éléments internes du widget) */

.e85-calculator-section.e85-dark .sim-header { padding: 30px 30px 20px 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.e85-calculator-section.e85-dark .sim-tag { display: inline-block; background: rgba(255, 77, 36, 0.15); color: #FF4D24; padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 15px; border: 1px solid rgba(255, 77, 36, 0.3); }
.e85-calculator-section.e85-dark .sim-header h3 { font-size: 1.5rem; font-weight: 800; color: #ffffff; margin: 0; }
.e85-calculator-section.e85-dark .progress-bar-bg { width: 100%; height: 6px; background: rgba(255, 255, 255, 0.1); border-radius: 10px; overflow: hidden; margin-top: 15px; }
.e85-calculator-section.e85-dark .progress-fill { height: 100%; background: #FF4D24; width: 33%; transition: width 0.4s ease; }
.e85-calculator-section.e85-dark .progress-text { font-size: 0.8rem; color: #9ca3af; margin-top: 8px; text-align: right; }

.e85-calculator-section.e85-dark .sim-content-area { padding: 30px; min-height: 320px; }
.e85-calculator-section.e85-dark .step-question { font-size: 1.1rem; color: #ffffff; font-weight: 700; margin-bottom: 20px; text-align: center; }
.e85-calculator-section.e85-dark .sim-options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.e85-calculator-section.e85-dark .sim-option-btn { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); padding: 15px 10px; border-radius: 12px; font-size: 0.95rem; font-weight: 600; color: #e5e7eb; cursor: pointer; transition: all 0.2s ease; text-align: center;}
.e85-calculator-section.e85-dark .sim-option-btn:hover { border-color: #FF4D24; background: rgba(255, 77, 36, 0.1); color: #ffffff; box-shadow: 0 4px 12px rgba(255, 77, 36, 0.15); }

/* --- RESPONSIVE MOBILE (DARK UNI) --- */
@media (max-width: 1023px) {
    /* Le halo est recentré ou réduit sur mobile pour rester élégant */
    .e85-calculator-section.e85-dark::after { 
        width: 500px; height: 500px;
        bottom: -50px; right: 50%;
        transform: translateX(50%); /* Centré horizontalement derrière la colonne unique */
        background: radial-gradient(circle, rgba(255, 77, 36, 0.1) 0%, transparent 70%);
    }
    
    .e85-calculator-section.e85-dark .e85-grid { grid-template-columns: 1fr; gap: 50px; }
    .e85-calculator-section.e85-dark .e85-text-col { text-align: center; }
    .e85-calculator-section.e85-dark .e85-benefits-list li { justify-content: center; }
}

/* =========================================
   THÈME 2 : LIGHT MODE (.e85-light)
   ========================================= */

.e85-light {
    background: linear-gradient(90deg, #f8fafc 0%, #f8fafc 65%, var(--theme-palette-color-1, #FF4D24) 65%, var(--theme-palette-color-1, #FF4D24) 100%);
    border-top: 1px solid #e5e7eb;
}
.e85-light::after {
    content: ''; position: absolute; top: 0; right: 0; width: 45%; height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(15, 17, 21, 0.95) 0%, rgba(15, 17, 21, 0.8) 40%, transparent 100%);
    z-index: 1; pointer-events: none;
}

.e85-light h2 { color: #111827; }
.e85-light .e85-desc-main { color: #4b5563; }
.e85-light .e85-desc-sub { color: #6b7280; }
.e85-light .e85-benefits-list li { color: #1f2937; }
.e85-light .e85-check { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: #16a34a; }

.e85-light .e85-widget {
    background: #ffffff; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.e85-light .sim-header { border-bottom: 1px solid #f3f4f6; }
.e85-light .sim-tag { background: rgba(255, 77, 36, 0.1); border: 1px solid transparent; }
.e85-light h3 { color: #111827; }
.e85-light .progress-bar-bg { background: #f3f4f6; }
.e85-light .progress-text { color: #9ca3af; }

.e85-light .step-question { color: #111827; }
.e85-light .sim-option-btn { background: #f9fafb; border: 1px solid #e5e7eb; color: #374151; }
.e85-light .sim-option-btn:hover { background: #fff; color: var(--theme-palette-color-1, #FF4D24); box-shadow: 0 4px 12px rgba(255, 77, 36, 0.1); border-color: var(--theme-palette-color-1, #FF4D24); }

.e85-light .spinner { border: 4px solid #f3f4f6; border-top: 4px solid var(--theme-palette-color-1, #FF4D24); }
.e85-light .l-step { color: #9ca3af; }
.e85-light .l-step.done { color: #16a34a; }
.e85-light #e85LoadingText { color: #111827; }

.e85-light .result-card { background: #f8fafc; border: 2px dashed #e5e7eb; }
.e85-light .res-label { color: #6b7280; }
.e85-light .result-saving { color: #16a34a; }
.e85-light .res-sub { color: #9ca3af; }
.e85-light .form-reveal-area { border-top: 1px solid #e5e7eb; }
.e85-light .form-reveal-area h4 { color: #111827; }

@media (max-width: 1023px) {
    .e85-light { background: #f8fafc; }
    .e85-light .e85-widget { box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); }
}

@media (max-width: 900px) {
    /* 1. On force le conteneur principal à prendre 100% en bloc */
    .why-container {
        display: block !important; 
        width: 100% !important;
        padding: 0 20px !important; /* Marges égales à gauche et à droite */
    }

    /* 2. On centre la grille d'images horizontalement */
    .why-image-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Centre horizontalement le contenu flex */
        width: 100% !important; 
        margin: 0 auto 40px auto !important; /* Le 'auto' centre la boîte elle-même */
        padding: 0 !important; /* Supprime le décalage parasite */
    }

    /* 3. On centre chaque boîte photo */
    .why-img-wrapper {
        width: 100% !important; 
        max-width: 500px !important;
        height: 250px !important; 
        margin: 0 auto !important; /* Force le centrage horizontal strict */
        display: block !important;
    }

    .why-img-wrapper img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; 
        border-radius: 16px; 
    }

    /* 4. On centre les textes horizontalement */
    .marketing-brief {
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    .marketing-card, .feature-grid, .feature-item {
        text-align: center !important;
        align-items: center !important;
        margin: 0 auto !important;
    }
}

/* =========================================
   SECTION ÉTAPES D'INTERVENTION (LIGHT)
   ========================================= */

.process-section {
    padding: 100px 0;
    background-color: #f8fafc;
    color: #111827;
    font-family: 'Inter', sans-serif;
    position: relative;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

/* Image en arrière-plan intégrée via HTML */
.process-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    z-index: 0;
    /* Fondu vers la droite pour s'intégrer au fond */
    -webkit-mask-image: linear-gradient(to right, black 30%, transparent 100%);
    mask-image: linear-gradient(to right, black 10%, transparent 75%);
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1; /* Place le contenu au-dessus de l'image */
    width: 100%;
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.process-header h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111827;
}

.process-header p {
    color: #4b5563;
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Grille en 4 colonnes sur PC */
.process-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    /* Fond très légèrement transparent pour laisser deviner l'image en dessous */
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(5px);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--theme-palette-color-1, #FF4D24);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 15px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    z-index: -1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 77, 36, 0.1);
    border: 1px solid rgba(255, 77, 36, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    color: var(--theme-palette-color-1, #FF4D24);
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.process-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111827;
}

.process-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.process-mobile-actions {
    margin-top: 40px;
    text-align: center;
}

.show-on-mobile {
    display: none;
}

/* --- RESPONSIVE MOBILE & TABLETTE --- */
@media (max-width: 992px) {
    .process-section {
        padding: 0 0 60px 0;
    }

    /* L'image passe au-dessus du titre sur mobile */
    .process-bg-image {
        position: relative;
        width: 100%;
        height: 350px;
        order: -1; /* Place l'image en premier visuellement */
        /* Fondu vers le bas sur mobile */
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    }

    .process-header {
        margin-top: -30px; /* Remonte légèrement le texte dans la zone fondue */
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
    }

    /* Grille en 1 colonne sur mobile */
    .process-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-card {
        background: #ffffff; /* Fond plein sur mobile pour une lisibilité parfaite */
    }

    .show-on-mobile {
        display: block;
    }
}

/* =========================================
   SECTION AVANTAGES (STYLE PROCESS LIGHT)
   ========================================= */

.advantages-section {
    padding: 100px 0;
    background-color: #f8fafc; /* Gris très clair, pleine largeur */
    color: #111827;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.adv-container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 0 20px;
}

/* --- EN-TÊTE --- */
.adv-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.adv-header h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111827;
}

.adv-header h2 .dynamic-word {
    color: var(--theme-palette-color-3, #161616);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
}

.adv-header p {
    color: #4b5563;
    font-size: 1.15rem;
    line-height: 1.6;
}

/* --- GRILLE --- */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

/* --- CARTES (Reprise exacte du style Process) --- */
/* --- CARTES (Sans overflow: hidden pour autoriser le débordement) --- */
.adv-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    /* ⚠️ Ligne overflow: hidden; supprimée ici ! */
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--theme-palette-color-1, #FF4D24);
}

/* --- LE GROS CHIFFRE QUI DÉBORDE --- */
.adv-number {
    position: absolute;
    top: -45px; /* Déborde largement par le haut */
    right: -20px; /* Déborde légèrement sur la droite */
    font-family: 'Archivo Black', sans-serif;
    font-size: 7rem; /* On l'agrandit pour plus d'impact */
    line-height: 1;
    z-index: -1; /* Reste bien en arrière-plan */
    
    /* Effet couleur dynamique en mode "Stroke" (contour) */
    color: transparent;
    -webkit-text-stroke: 2px var(--theme-palette-color-1, #FF4D24);
    opacity: 0.2; /* Discret au repos */
    
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animation fluide avec effet de rebond */
    pointer-events: none; /* Empêche le chiffre de gêner la souris */
}

/* Animation du chiffre au survol de la carte */
.adv-card:hover .adv-number {
    opacity: 0.6; /* Devient bien éclatant */
    transform: translateY(-10px) rotate(4deg); /* Léger soulèvement dynamique */
}

/* Le gros chiffre en filigrane */
.adv-number {
    position: absolute;
    top: -20px;
    right: 15px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.03); /* Chiffre géant gris très clair */
    line-height: 1;
    z-index: -1;
    transition: color 0.3s ease;
}

.adv-card:hover .adv-number {
    color: rgba(255, 77, 36, 0.05); /* Se teinte légèrement d'orange au survol */
}

.adv-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 77, 36, 0.1);
    border: 1px solid rgba(255, 77, 36, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    color: var(--theme-palette-color-1, #FF4D24);
    transition: background 0.3s ease, color 0.3s ease;
}

.adv-card:hover .adv-icon {
    background: var(--theme-palette-color-1, #FF4D24);
    color: #ffffff;
}

.adv-icon svg {
    width: 28px;
    height: 28px;
}

.adv-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111827;
}

.adv-card p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .adv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* =========================================
   SECTION RÉASSURANCE & MAP (RÉPARÉE)
   ========================================= */

.reassurance-map-light {
    padding: 100px 0;
    background-color: #fbfbfd; 
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden; 
}

/* --- CONTENEUR ÉLARGI --- */
.rm-container {
    max-width: 1700px; 
    width: 95%; 
    margin: 50px auto;
    position: relative;
    z-index: 5; 
}

/* --- GRILLE PRINCIPALE --- */
.rm-main-grid {
    display: grid;
    grid-template-columns: 17fr 47fr 30fr;
    gap: 3vw; 
    align-items: start;
}

/* --- COLONNE 1 : TECH (Gauche) --- */
.rm-col-left {
    display: flex;
    flex-direction: column;
}

.rm-logo {
    width: 125px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.rm-est {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 75px; 
}

.rm-code-block {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #111827;
    line-height: 1.8;
    margin-bottom: 75px; 
}

.rm-code-block p {
    margin: 0;
}

.rm-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rm-btn-solid {
    background-color: var(--theme-palette-color-1, #FF4D24);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.rm-btn-solid:hover {
    background-color: #e03c15;
    transform: translateY(-2px);
}

.rm-btn-outline {
    background-color: transparent;
    color: #111827;
    padding: 14px 24px;
    border: 2px solid #111827;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.rm-btn-outline:hover {
    background-color: #111827;
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- COLONNE 2 : MILIEU --- */
.rm-col-middle {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 60px; 
}

.rm-giant-text-top {
    position: absolute;
    top: -20px;
    left: 0;
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(4rem, 6vw, 7rem); 
    color: #e5e7eb; 
    line-height: 1;
    white-space: nowrap; 
    z-index: 0;
    pointer-events: none;
    letter-spacing: -0.02em;
}

.rm-col-middle h2 {
    position: relative;
    z-index: 2; 
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.8rem, 2.2vw, 2.4rem);
    color: #1d1d1f; 
    line-height: 1.15;
    margin-bottom: 40px; 
    letter-spacing: -0.02em;
}

.rm-col-middle h2 .title-light {
    color: var(--theme-palette-color-1, #FF4D24);
    font-family: 'Inter', sans-serif;
    font-weight: 300; 
}

/* --- EFFET COMPTEUR DE VOITURE (SPEEDOMETER) --- */
.rm-speedo-cluster {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    position: relative;
    padding-top: 50px; 
    margin-top: 10px;
}

.rm-speedo-cluster::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2%;
    right: 2%;
    height: 70px;
    border-top: 3px dashed rgba(255, 77, 36, 0.4); 
    border-radius: 50% 50% 0 0 / 100% 100% 0 0; 
    z-index: 0;
}

.rm-speedo-cluster::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: var(--theme-palette-color-1, #FF4D24);
    border-radius: 4px;
    z-index: 1;
}

.rm-dial-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 15px;
    border-radius: 16px;
    text-align: center; 
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 2;
}

.rm-dial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 77, 36, 0.3);
}

.rm-dial-header {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 8px; 
    margin-bottom: 10px;
}

.rm-dial-header svg {
    width: 22px;
    height: 22px;
    color: var(--theme-palette-color-1, #FF4D24);
    flex-shrink: 0; 
}

.rm-dial-card h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1rem; 
    color: var(--theme-palette-color-1, #FF4D24);
    margin-bottom: 0; 
    line-height: 1.2;
}

.rm-dial-card p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* --- COLONNE 3 : CARTE (Droite) --- */
.rm-col-right {
    position: relative;
    height: 300px;
    max-height: 400px;
    align-self: end; 
}

.rm-map-glass {
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 24px; 
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05); 
    border: 6px solid #ffffff; 
}

.rm-map-glass iframe {
    width: 100%;
    height: 100%;
    border-radius: 18px; 
    filter: contrast(1.05) saturate(1.1); 
}

.map-floating-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1d1d1f;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #34c759; 
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #34c759;
    animation: pulseMap 2s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

@keyframes pulseMap {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* --- GESTION DES BOUTONS PC vs MOBILE --- */

/* Par défaut (sur PC), on masque les boutons "mobile" (ceux du bas) */
.show-on-mobile {
    display: none;
}

/* --- RESPONSIVE MOBILE & TABLETTE --- */
@media (max-width: 1300px) {
    .rm-speedo-cluster {
        gap: 10px;
    }
    .rm-dial-card {
        padding: 15px 10px;
    }
}

@media (max-width: 1100px) {
    .rm-main-grid {
        grid-template-columns: 1fr 1fr;
    }
    .rm-col-left {
        grid-column: span 2;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 30px;
        margin-bottom: 10px;
    }
    .rm-est, .rm-code-block {
        margin-bottom: 0;
    }
    .rm-actions.hide-on-mobile {
        flex-direction: row;
    }
}

@media (max-width: 850px) {
    .rm-main-grid {
        grid-template-columns: 1fr; 
    }
    .rm-col-left {
        grid-column: span 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    /* GESTION BOUTONS SUR MOBILE */
    .hide-on-mobile {
        display: none !important; /* Masque les boutons de la colonne de gauche */
    }
    .show-on-mobile {
        display: flex !important; /* Affiche les boutons en bas de la grille */
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }
    .show-on-mobile .rm-btn-solid,
    .show-on-mobile .rm-btn-outline {
        width: 100%;
        box-sizing: border-box;
    }

    .rm-col-middle h2, .rm-giant-text-top {
        text-align: center;
    }
    .rm-giant-text-top {
        position: relative;
        top: 0;
        margin-bottom: 20px;
        white-space: normal;
        font-size: 10vw;
    }
    .rm-col-middle {
        padding-top: 0;
    }
    .rm-col-right {
        margin-top: 0;
    }
    
    /* On désactive l'effet de compteur sur mobile car les cartes s'empilent */
    .rm-speedo-cluster {
        grid-template-columns: 1fr;
        padding-top: 0;
    }
    .rm-speedo-cluster::before, 
    .rm-speedo-cluster::after {
        display: none; 
    }
}

/* =========================================
   SECTION FAQ (DARK MODE + CONTOUR STATIQUE)
   ========================================= */

.faq-section-dark {
    padding: 100px 0;
    background-color: #050505;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden; 
}

/* --- LE TEXTE GÉANT MOTORPERF 83 : TRANSPARENCE ET CONTOUR ORANGE --- */
.faq-section-dark::before {
    content: 'DIEZEPERF 83';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Archivo Black', sans-serif;
    font-size: 11vw; 
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    
    /* Intérieur 100% transparent */
    color: transparent;
    
    /* Bordure orange nette, sans animation lumineuse */
    -webkit-text-stroke: 2px var(--theme-palette-color-1, #FF4D24);
    
    /* Opacité fixe pour ne pas gêner la lecture */
    opacity: 0.2; 
}

.faq-container {
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5; 
}

/* --- EN-TÊTE --- */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header .sur-titre {
    color: var(--theme-palette-color-1, #FF4D24);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.faq-header h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.faq-header h2 .title-light {
    color: #9ca3af;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.faq-header p {
    color: #9ca3af;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* --- ACCORDÉON FAQ (GRILLE 2 COLONNES) --- */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start; 
}

.faq-item {
    background: linear-gradient(145deg, rgba(30, 32, 35, 0.65) 0%, rgba(10, 10, 12, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    backdrop-filter: blur(8px); 
}

.faq-item:hover {
    border-color: rgba(255, 77, 36, 0.4);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 25px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--theme-palette-color-1, #FF4D24);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0; 
    margin-left: 15px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    padding: 0 30px;
}

.faq-answer p {
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 25px;
    font-size: 0.95rem;
}

/* --- CLASSES ACTIVES POUR LE JAVASCRIPT --- */
.faq-item.active .faq-answer {
    max-height: 400px; 
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --- RESPONSIVE MOBILE & TABLETTE --- */
@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr; 
    }
    
    .faq-section-dark::before {
        font-size: 14vw; 
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-answer p {
        padding-bottom: 20px;
    }
}

/* --- BOUTONS SECTIONS ÉTAPES (AFFICHAGE MOBILE UNIQUEMENT) --- */

.process-mobile-actions {
    display: none; /* Masqué sur ordinateur */
}

/* On cible les écrans mobiles et tablettes */
@media (max-width: 850px) {
    .process-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 40px; /* Espace avec la dernière carte */
        width: 100%;
    }

    /* On s'assure que les boutons prennent toute la largeur sur mobile */
    .process-mobile-actions .rm-btn-solid,
    .process-mobile-actions .rm-btn-outline {
        width: 100%;
        box-sizing: border-box;
    }
}

/* --- grille des 4 étapes isolée --- */
.process-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

/* la ligne en pointillés qui relie les étapes */
.process-grid-4::before {
    content: '';
    position: absolute;
    top: 50px; /* à ajuster selon la hauteur de l'icône */
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed rgba(255, 77, 36, 0.4);
    z-index: 0;
}

/* le responsive indépendant pour cette section */
@media (max-width: 1100px) {
    .process-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .process-grid-4::before {
        display: none; /* on cache la ligne quand on passe sur deux rangées */
    }
}

@media (max-width: 768px) {
    .process-grid-4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* =========================================
   SECTION 1 : NAVIGATION BAS DE PAGE
   ========================================= */

.bottom-nav-metallic {
    background-color: #111111;
    padding: 0;
}

.bottom-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.nav-card {
    position: relative;
    height: 350px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    text-decoration: none;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-card:last-child {
    border-right: none;
}

.nav-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.nav-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Dégradé sombre pour laisser le texte lisible */
    background: linear-gradient(to top, rgba(15, 15, 17, 0.95) 0%, rgba(15, 15, 17, 0.4) 50%, rgba(15, 15, 17, 0.1) 100%);
    z-index: 2;
    transition: background 0.5s ease;
}

.nav-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.nav-subtitle {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--theme-palette-color-1, #FF4D24);
    margin-bottom: 10px;
    font-weight: 600;
}

.nav-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}

.nav-cta .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: var(--theme-palette-color-1, #FF4D24);
}

/* Animations au survol */
.nav-card:hover .nav-bg {
    transform: scale(1.05);
}

.nav-card:hover .nav-overlay {
    background: linear-gradient(to top, rgba(15, 15, 17, 0.98) 0%, rgba(15, 15, 17, 0.6) 60%, rgba(15, 15, 17, 0.2) 100%);
}

.nav-card:hover .nav-content {
    transform: translateY(0);
}

.nav-card:hover .nav-cta .arrow {
    transform: translateX(5px);
}

/* =========================================
   SECTION 2 : FOOTER PRINCIPAL (METALLISÉ)
   ========================================= */

.footer-motorperf-dark {
    /* L'effet carrosserie métallisée : un dégradé radial subtil sur fond carbone */
    background: radial-gradient(circle at 50% 0%, #2a2a2d 0%, #151517 40%, #0d0d0f 100%);
    color: #e5e7eb;
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    /* Liseré orange sportif en haut du footer */
    border-top: 3px solid var(--theme-palette-color-1, #FF4D24);
}

/* Reflets de lumière type "néon" sous la carrosserie */
.footer-halo {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.halo-orange {
    width: 400px;
    height: 400px;
    background: var(--theme-palette-color-1, #FF4D24);
    top: -200px;
    left: -100px;
}

.halo-metal {
    width: 500px;
    height: 500px;
    background: #ffffff;
    bottom: -250px;
    right: -150px;
    opacity: 0.05;
}

.footer-container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    width: 200px; /* Plus grand pour bien voir le logo */
    margin-bottom: 25px;
}

.footer-desc {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 400px;
}

.footer-coords p {
    color: #d1d5db;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-title {
    color: #ffffff;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--theme-palette-color-1, #FF4D24);
    transform: translateX(5px);
}

.highlight-link {
    color: #ffffff !important;
    font-weight: 600;
}

.highlight-link:hover {
    color: var(--theme-palette-color-1, #FF4D24) !important;
}

.mt-small {
    margin-top: 40px;
}

/* Footer Bottom (Copyrights) */
.footer-bottom {
    text-align: center;
    padding: 25px 20px;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.8;
}

.agency-link {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.agency-link:hover {
    color: #ffffff;
}

.mobile-break {
    display: none;
}

/* =========================================
   RESPONSIVE FOOTER
   ========================================= */

@media (max-width: 1024px) {
    .bottom-nav-grid {
        grid-template-columns: 1fr;
    }
    .nav-card {
        height: 300px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-content {
        transform: translateY(0); /* Affiche toujours le contenu sur tablette/mobile */
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .footer-brand {
        grid-column: span 2;
    }
    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .mt-small {
        margin-top: 30px;
    }
    .mobile-break {
        display: block;
    }
}

/* --- Correction du contraste pour le résultat final E85 (Thème Sombre) --- */

.e85-dark .result-box,
.e85-dark .res-label,
.e85-dark .res-sub,
.e85-dark .form-reveal-area h4 {
    color: #ffffff !important;
}

/* Le gros montant calculé (Tu peux aussi remplacer #ffffff par #FF4D24 si tu veux qu'il ressorte en orange) */
.e85-dark .result-saving {
    color: #ffffff !important; 
}

/* -------------------------------------- */
/* CSS SIMULATEUR STAGE 1 - ISOLÉ         */
/* -------------------------------------- */

.stg1-calculator-section.stg1-dark {
  background-color: #111111 !important; 
  color: #ffffff;
  padding: 180px 0px 80px 0px; 
  position: relative;
  overflow: hidden;
  min-height: 90vh; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
}

/* Halo orange à gauche */
.stg1-halo-orange {
  position: absolute;
  top: 30%; 
  left: 10%;
  width: 600px; 
  height: 600px;
  background: radial-gradient(circle, rgba(200,30,0,0.30) 0%, transparent 60%);
  z-index: 0; 
  pointer-events: none;
  filter: blur(50px);
}

/* Halo rouge à droite */
.stg1-halo-red {
  position: absolute;
  top: 30%; 
  right: 10%;
  width: 600px; 
  height: 600px;
  background: radial-gradient(circle, rgba(200,30,0,0.30) 0%, transparent 60%);
  z-index: 0; 
  pointer-events: none;
  filter: blur(50px);
}

.stg1-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.stg1-header { 
  text-align: center; 
  margin-bottom: 30px; 
}

.stg1-badge {
  display: inline-block; 
  background: rgba(255,107,0,0.1);
  color: #ff6b00; 
  padding: 5px 15px; 
  border-radius: 20px;
  font-weight: bold; 
  text-transform: uppercase;
  margin-bottom: 15px; 
  border: 1px solid rgba(255,107,0,0.3);
/* 1. Lueur rouge autour du texte lui-même */
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.6); 
  
  /* 2. Lueur rouge autour du badge entier (le contour) */
  box-shadow: 0 0 50px rgba(255, 0, 0, 0.3); 
}

.stg1-hero-h1 { 
  margin: 0 0 10px 0; 
  font-weight: 800; 
}

.stg1-highlight { color: #ff6b00; }
.stg1-header p { color: #ccc; }

/* Panneau de sélection */
.stg1-glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px; 
  padding: 30px;
}

.stg1-selects-row {
  display: flex; 
  flex-wrap: wrap; 
  gap: 15px; 
  margin-bottom: 25px;
}

.stg1-select-group { 
  flex: 1 1 200px; 
  display: flex; 
  flex-direction: column; 
}

.stg1-select-group label { 
  font-weight: bold; 
  color: #aaa; 
  margin-bottom: 8px; 
  text-transform: uppercase; 
  font-size: 0.85em;
}

/* MENUS DÉROULANTS SOMBRES */
.stg1-select-group select {
  width: 100%; 
  padding: 12px; 
  background-color: #1a1a1a; 
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2); 
  border-radius: 6px; 
  outline: none;
}

.stg1-select-group select option {
  background-color: #1a1a1a; 
  color: #fff;
}

.stg1-select-group select:disabled { 
  opacity: 0.5; 
  cursor: not-allowed; 
}

.stg1-btn-simuler {
  width: 100%; 
  padding: 15px; 
  font-weight: bold;
  text-transform: uppercase; 
  color: #fff; 
  background: #ff6b00;
  border: none; 
  border-radius: 6px; 
  cursor: pointer; 
  transition: 0.3s;
}

.stg1-btn-simuler:hover:not(:disabled) { 
  background: #e65c00; 
  box-shadow: 0 0 15px rgba(255,107,0,0.4); 
}

.stg1-btn-simuler:disabled { 
  background: #444; 
  color: #888; 
  cursor: not-allowed; 
}

/* Résultats */
.hidden { display: none !important; }
.stg1-resultats { margin-top: 40px; animation: stg1-fadeIn 0.5s ease; }
.stg1-vehicule-titre { text-align: center; font-weight: bold; color: #ff6b00; margin-bottom: 25px; font-size: 1.2em;}

.stg1-cards-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 20px; 
  margin-bottom: 30px;
}

.stg1-card {
  background: rgba(255,255,255,0.05); 
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; 
  padding: 20px; 
  text-align: center; 
  position: relative;
}

.stg1-highlight-card { 
  border: 1px solid #ff6b00; 
  background: rgba(255,107,0,0.05); 
}

.stg1-e85-yes { 
  border: 1px solid #27ae60; 
  background: rgba(39,174,96,0.05); 
}

.stg1-e85-no { opacity: 0.7; }

.stg1-card-header { 
  text-transform: uppercase; 
  color: #aaa; 
  letter-spacing: 1px; 
  margin-bottom: 15px;
  font-size: 0.85em;
}
.stg1-card-header strong { color: #fff; }

.stg1-stats-flex { 
  display: flex; 
  justify-content: space-around; 
  align-items: center; 
}

.stg1-stat-item { 
  display: flex; 
  flex-direction: column; 
}

.stg1-stat-val { 
  font-size: 2.5em; 
  font-weight: 800; 
  color: #fff; 
  line-height: 1;
  margin-bottom: 5px;
}
.stg1-stat-val.orange { color: #ff6b00; }

.stg1-stat-label { color: #888; font-size: 0.9em;}
.stg1-gain { color: #27ae60; font-weight: bold; margin-top: 5px; font-size: 0.9em;}

.stg1-e85-title { font-weight: bold; margin: 10px 0; font-size: 1.2em;}
.stg1-e85-title.yes { color: #27ae60; }
.stg1-e85-title.no { color: #e74c3c; }
.stg1-e85-desc { color: #ccc; line-height: 1.4; font-size: 0.9em;}

/* CTA */
.stg1-cta-bloc { 
  background: rgba(000,000,000,0.7); 
  padding: 25px; 
  border-radius: 10px; 
  text-align: center; 
  margin-top: 30px; 
}

/* C'est CE bloc qui gère uniquement le titre */
.stg1-cta-bloc h3 { 
  margin: 0 0 15px 0; /* Légèrement augmenté pour laisser respirer le halo */
  color: #E63E1C; /* Orange Dieze légèrement plus foncé */
  font-size: 2.5rem; /* Ajuste selon tes besoins */
  /* Effet de halo avec un orange standard et un orange plus clair */
  text-shadow: 0 0 15px rgba(255, 77, 36, 0.6), 
               0 0 30px rgba(255, 122, 77, 0.3); 
}

/* C'est CE bloc qui gère le petit texte en dessous */
.stg1-cta-bloc p { 
  color: #bbb; 
  margin-bottom: 20px; 
  font-size: 0.95em;
}
.stg1-cta-buttons { 
  display: flex; 
  justify-content: center; 
  gap: 15px; 
  flex-wrap: wrap; 
}

.stg1-btn-appel, .stg1-btn-devis {
  padding: 12px 25px; 
  border-radius: 6px; 
  font-weight: bold; 
  text-decoration: none; 
  display: flex; 
  align-items: center; 
  gap: 8px;
}

.stg1-btn-appel { background: #ff6b00; color: #fff; }
.stg1-btn-devis { background: transparent; color: #fff; border: 1px solid #fff; }

.stg1-disclaimer { 
  color: #666; 
  text-align: center; 
  margin-top: 20px; 
  opacity: 0.8; 
  font-size: 0.8em;
}

@keyframes stg1-fadeIn { 
  from { opacity: 0; transform: translateY(15px); } 
  to { opacity: 1; transform: translateY(0); } 
}

/* =========================================
   SECTION 5 : LES 5 AVANTAGES ROADMAP (DARK MODE)
   ========================================= */

.advantages-roadmap-dark {
    padding: 100px 0;
    background-color: #050505; /* Thème dark profond */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.advantages-roadmap-dark .adv-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* --- EN-TÊTE --- */
.advantages-roadmap-dark .process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

/* Badge Néon Orange inspiré du simulateur */
.advantages-roadmap-dark .neon-badge-orange {
  display: inline-block; 
  background: rgba(255, 77, 36, 0.1);
  color: var(--theme-palette-color-1, #FF4D24); 
  padding: 6px 16px; 
  border-radius: 20px;
  font-weight: 800; 
  text-transform: uppercase;
  margin-bottom: 20px; 
  border: 1px solid rgba(255, 77, 36, 0.3);
  text-shadow: 0 0 10px rgba(255, 77, 36, 0.6); 
  box-shadow: 0 0 40px rgba(255, 77, 36, 0.2); 
}

.advantages-roadmap-dark .process-header h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.advantages-roadmap-dark .process-header p {
    color: #9ca3af;
    font-size: 1.1rem;
    line-height: 1.6;
}

.process-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    position: relative; /* Verrouille la ligne à l'intérieur */
    z-index: 2;
}

/* --- LIGNE DE ROADMAP (CENTRE PARFAIT) --- */
.roadmap-visual-container {
    position: absolute;
    top: 25px; /* Exactement la moitié du marqueur de 50px */
    left: 10%;
    right: 10%;
    height: 4px;
    transform: translateY(-50%); /* Ajustement chirurgical */
    z-index: 0;
}

.roadmap-line-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

/* Ligne Néon */
.roadmap-line-fill {
    position: absolute;
    top: 0; left: 0;
    width: 0%; 
    height: 100%;
    background-color: var(--theme-palette-color-1, #FF4D24);
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(255, 77, 36, 1),
                0 0 10px rgba(255, 77, 36, 0.8),
                0 0 20px rgba(255, 77, 36, 0.6),
                0 0 30px rgba(255, 77, 36, 0.4);
    transition: width 0.3s ease-out, height 0.3s ease-out;
}

/* --- SURVOL SOURIS (HOVER) POUR ALLUMER LES CHIFFRES --- */
/* Pour éviter les bugs tactiles, on réserve le survol aux grands écrans */
@media (min-width: 1100px) {
    .roadmap-item-wrapper:hover .roadmap-marker {
        background-color: var(--theme-palette-color-1, #FF4D24);
        border-color: var(--theme-palette-color-1, #FF4D24);
        color: #ffffff;
        box-shadow: 0 0 20px rgba(255, 77, 36, 0.6),
                    0 0 30px rgba(255, 77, 36, 0.4);
        transform: scale(1.15) translateY(-5px);
    }
}

/* --- RESPONSIVE MOBILE (LIGNE VERTICALE) --- */
@media (max-width: 1099px) {
    .process-grid-5 {
        grid-template-columns: 1fr;
        gap: 60px; /* On écarte plus les cartes pour voir la ligne descendre */
    }
    
    .roadmap-visual-container {
        display: block; /* On force l'affichage sur mobile */
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 4px;
        height: 100%;
        transform: translateX(-50%); /* Centrage horizontal parfait */
    }

    .roadmap-line-fill {
        width: 100%;
        height: 0%; /* C'est la hauteur qui sera animée sur mobile */
    }
    
    /* Sur mobile, on allume le chiffre quand il passe à l'écran via la classe .is-active (géré par le JS) */
    .roadmap-item-wrapper.is-active .roadmap-marker {
        background-color: var(--theme-palette-color-1, #FF4D24);
        border-color: var(--theme-palette-color-1, #FF4D24);
        color: #ffffff;
        box-shadow: 0 0 20px rgba(255, 77, 36, 0.6);
    }
}

/* --- GRILLE DES 5 AVANTAGES --- */
.process-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

/* Wrapper de la colonne entière (gère l'UX du survol) */
.roadmap-item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer; /* Indique l'interactivité */
}

/* --- LE CHIFFRE (MARKER) --- */
.roadmap-marker-box {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.roadmap-marker {
    width: 50px;
    height: 50px;
    background-color: #111111; /* Fond sombre par défaut */
    border: 2px solid rgba(255, 255, 255, 0.15); /* Bordure dim */
    color: #6b7280; /* Texte grisé par défaut */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

/* Allumage intensif au passage de la souris sur la COLONNE entière */
.roadmap-item-wrapper:hover .roadmap-marker {
    background-color: var(--theme-palette-color-1, #FF4D24);
    border-color: var(--theme-palette-color-1, #FF4D24);
    color: #ffffff; /* Texte blanc pur */
    
    /* Effet NÉON sur le chiffre */
    box-shadow: 0 0 20px rgba(255, 77, 36, 0.6),
                0 0 30px rgba(255, 77, 36, 0.4);
    transform: scale(1.15) translateY(-5px); /* Léger grossissement et soulèvement */
}

/* --- CARTES (STYLE VERRE FUMÉ) --- */
.advantages-roadmap-dark .adv-card {
    background: linear-gradient(145deg, rgba(30, 32, 35, 0.65) 0%, rgba(10, 10, 12, 0.85) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Légère illumination de la carte au survol de la colonne */
.roadmap-item-wrapper:hover .adv-card {
    transform: translateY(-5px);
    border-color: rgba(255, 77, 36, 0.3);
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.6);
}

.advantages-roadmap-dark .adv-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 77, 36, 0.05);
    border: 1px solid rgba(255, 77, 36, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--theme-palette-color-1, #FF4D24);
    transition: all 0.3s ease;
}

/* Icône qui s'allume au survol de la colonne */
.roadmap-item-wrapper:hover .adv-icon {
    background: var(--theme-palette-color-1, #FF4D24);
    color: #ffffff;
    border-color: var(--theme-palette-color-1, #FF4D24);
    box-shadow: 0 0 15px rgba(255, 77, 36, 0.5);
}

.advantages-roadmap-dark .adv-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.advantages-roadmap-dark .adv-card p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* --- RESPONSIVE DESKTOP VS MOBILE --- */
@media (min-width: 1100px) {
    /* Affiche la ligne directrice sur grand écran */
    .roadmap-visual-container {
        display: block;
    }
}

@media (max-width: 1099px) {
    /* Tablette : 2 ou 3 colonnes */
    .process-grid-5 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
    }
    
    /* La ligne horizontale n'a plus de sens si les cartes s'empilent */
    .roadmap-visual-container {
        display: none;
    }
    
    /* On désactive les effets hover complexes sur tactile */
    .roadmap-item-wrapper:hover .roadmap-marker,
    .roadmap-item-wrapper:hover .adv-card,
    .roadmap-item-wrapper:hover .adv-icon {
        transform: none;
    }
}

@media (max-width: 768px) {
    /* Mobile : 1 seule colonne */
    .process-grid-5 {
        grid-template-columns: 1fr;
    }
    
    .advantages-roadmap-dark .adv-card {
        padding: 30px 20px;
    }
}

/* --- MARGE MOBILE POUR LA SECTION COMMENT ÇA MARCHE --- */
@media (max-width: 992px) {
    .process-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important; /* J'ajoute le bas aussi pour l'équilibre */
    }
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --- HERO SECTION E85 (ISOLÉE) --- */
.e85-hero-section {
    position: relative;
    overflow: hidden;
    background-color: #050505;
    color: #ffffff;
    padding: 150px 0 80px 0;
    font-family: 'Inter', sans-serif;
}

/* Halos lumineux d'ambiance */
.e85-hero-halo-orange {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 77, 36, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.e85-hero-halo-red {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(200, 30, 30, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.e85-hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

/* Grille principale (Texte + Widget) */
.e85-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
    align-items: center;
}

/* --- COLONNE GAUCHE (TEXTE DE VENTE) --- */
.e85-hero-badge {
    display: inline-block;
    background: rgba(255, 77, 36, 0.1);
    color: var(--theme-palette-color-1, #FF4D24);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 77, 36, 0.3);
}

.e85-hero-h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.e85-hero-text-accent {
    color: var(--theme-palette-color-1, #FF4D24);
}

.e85-hero-desc-lead {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 40px;
}

.e85-hero-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #e5e7eb;
}

.e85-hero-benefits-list li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 15px;
}

.e85-hero-check {
    background: rgba(255, 77, 36, 0.2);
    color: var(--theme-palette-color-1, #FF4D24);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* --- COLONNE DROITE (WIDGET SIMULATEUR E85) --- */
.e85-hero-glass-panel {
    background: rgba(30, 32, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Badge de prix flottant */
.e85-hero-price-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--theme-palette-color-1, #FF4D24);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(255, 77, 36, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    z-index: 10;
}

.e85-hero-price-badge .price-from {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.e85-hero-price-badge .price-amount {
    font-size: 1.4rem;
}

.e85-hero-price-badge .price-ttc {
    font-size: 0.7rem;
    margin-left: 2px;
}

.sim-header {
    margin-bottom: 30px;
    text-align: center;
}

.sim-header h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.progress-container {
    position: relative;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    width: 33%;
    height: 100%;
    background: var(--theme-palette-color-1, #FF4D24);
    transition: width 0.4s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: #9ca3af;
}

.step-question {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.sim-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

/* Boutons de sélection du simulateur */
.sim-option-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-weight: bold;
}

.sim-option-btn:hover {
    border-color: var(--theme-palette-color-1, #FF4D24);
    background: rgba(255, 77, 36, 0.1);
}

/* État d'affichage des étapes JS */
.hidden-step {
    display: none;
}

/* Écran de chargement JS */
.loading-box {
    text-align: center;
    padding: 40px 0;
}

.loading-box h4 {
    margin-bottom: 20px;
}

.loading-steps {
    color: #9ca3af;
    font-size: 0.95rem;
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
}

.l-step {
    margin-bottom: 10px;
}

.l-step.done {
    color: #4ade80;
}

/* Résultat final */
.result-box {
    text-align: center;
}

.result-card {
    background: rgba(255, 77, 36, 0.1);
    border: 1px solid rgba(255, 77, 36, 0.3);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.res-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #d1d5db;
}

.result-saving {
    font-size: 3rem;
    font-family: 'Archivo Black', sans-serif;
    color: var(--theme-palette-color-1, #FF4D24);
    line-height: 1;
}

.res-sub {
    font-size: 0.9rem;
    margin-top: 10px;
    color: #9ca3af;
}

/* Nouvel encart de précision */
.e85-hero-precision-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.precision-text {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 15px;
    line-height: 1.4;
}

.e85-hero-btn-outline {
    display: inline-block;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.e85-hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Formulaire Contact FluentForm intégré */
.form-reveal-area h4 {
    margin-bottom: 20px;
}

.wpforms-container-mockup {
    background: #111111;
    padding: 20px;
    border-radius: 8px;
}

/* --- BOUTON PRINCIPAL HERO --- */
.e85-hero-actions {
    margin-top: 35px;
}

.e85-hero-btn-main {
    display: inline-block;
    background-color: var(--theme-palette-color-1, #FF4D24);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.05rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 77, 36, 0.3);
}

.e85-hero-btn-main:hover {
    background-color: #e63e1c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 77, 36, 0.5);
    color: #ffffff;
}

/* =========================================
   RESPONSIVE MOBILE : SECTION HERO E85
   ========================================= */

/* Empêcher tout débordement horizontal sur la section entière */
.e85-hero-section {
    overflow-x: hidden !important; 
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    /* Réduire les espacements pour le mobile */
    .e85-hero-section {
        padding: 100px 0 40px 0;
    }

    /* CORRECTION DU HORS ÉCRAN : Forcer 1 seule colonne 100% */
    .e85-grid {
        grid-template-columns: 1fr !important; 
        gap: 40px; 
        width: 100%;
    }

    /* Sécuriser le wrapper pour qu'il ne dépasse pas */
    .stg1-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    /* Centrer le texte sur mobile */
    .e85-text-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Forcer le titre à s'adapter et éviter les mots coupés */
    .stg1-hero-h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem); 
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Aligner la liste des bénéfices à gauche, mais centrer le bloc */
    .e85-benefits-list {
        text-align: left;
        display: inline-block;
        margin: 0 auto 30px auto;
        width: 100%;
        max-width: 350px;
    }

    /* Aligner l'icone ✓ au début du texte si ça passe sur 2 lignes */
    .e85-benefits-list li {
        font-size: 0.95rem;
        align-items: flex-start;
        line-height: 1.4;
    }

    .e85-check {
        margin-top: 2px;
    }

    /* Bouton pleine largeur */
    .e85-hero-actions {
        width: 100%;
    }

    .e85-btn-hero {
        display: block;
        width: 100%;
        text-align: center;
        max-width: 320px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    /* Réduire le padding du widget pour qu'il rentre dans l'écran */
    .stg1-glass-panel {
        padding: 25px 15px;
        margin: 0; 
        width: 100%;
        box-sizing: border-box;
    }

    .sim-option-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* --- RESPONSIVE MOBILE & TABLETTE --- */
@media (max-width: 992px) {
    .hide-on-mobile {
        display: none !important;
    }
    
    /* Optionnel : S'assurer que l'image restante prend bien toute la largeur sur mobile */
    .why-image-grid {
        display: block; 
    }
    
    .why-img-wrapper.why-img-small:not(.hide-on-mobile) {
        width: 100%;
        max-width: 100%;
    }
}

/* =========================================
   HERO STAGE 1 - GESTION IMAGE ET PRIX
   ========================================= */

/* Conteneur de l'image (colonne droite) */
#hero-stage1 .stg1-img-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Style de l'image pour visibilité totale avec arrondi */
#hero-stage1 .stg1-hero-img {
    width: 100%;
    height: auto;
    max-width: 550px; 
    border-radius: 20px; 
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    display: block;
}

/* Style de la pastille Prix */
#hero-stage1 .stg1-price-badge {
    position: absolute;
    bottom: 30px; 
    right: 20px;
    background-color: var(--theme-palette-color-1, #FF4D24);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(255, 77, 36, 0.5);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #ffffff;
}

/* Détails textes dans la pastille */
#hero-stage1 .stg1-price-badge .price-from {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2px;
}

#hero-stage1 .stg1-price-badge .price-amount {
    font-size: 1.8rem;
    letter-spacing: -1px;
}

#hero-stage1 .stg1-price-badge .price-ttc {
    font-size: 0.7rem;
    font-weight: 400;
    margin-left: 3px;
    vertical-align: super;
    font-family: 'Inter', sans-serif;
}

/* Responsive : Ajustements pour mobile */
@media (max-width: 991px) {
    #hero-stage1 .stg1-img-container {
        margin-top: 40px;
    }
    
    #hero-stage1 .stg1-price-badge {
        bottom: 15px;
        right: 10px;
        padding: 8px 15px;
    }
    
    #hero-stage1 .stg1-price-badge .price-amount {
        font-size: 1.4rem;
    }
}

/* =========================================
   PASTILLE PRIX - CONVERSION E85
   ========================================= */

/* Conteneur parent en relatif pour fixer la pastille */
#simulateur .stg1-img-container {
    position: relative;
}

/* Design de la pastille */
#simulateur .stg1-price-badge {
    position: absolute;
    top: -20px; /* Fait légèrement déborder la pastille vers le haut */
    right: 20px; /* Aligné sur la droite du simulateur */
    background-color: var(--theme-palette-color-1, #FF4D24);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(255, 77, 36, 0.5);
    z-index: 10; /* Passe au-dessus du simulateur */
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #ffffff;
}

/* Textes de la pastille */
#simulateur .stg1-price-badge .price-from {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2px;
}

#simulateur .stg1-price-badge .price-amount {
    font-size: 1.8rem;
    letter-spacing: -1px;
}

#simulateur .stg1-price-badge .price-ttc {
    font-size: 0.7rem;
    font-weight: 400;
    margin-left: 3px;
    vertical-align: super;
    font-family: 'Inter', sans-serif;
}

/* Ajustements pour mobile */
@media (max-width: 991px) {
    #simulateur .stg1-price-badge {
        top: -15px;
        right: 10px;
        padding: 8px 15px;
    }
    
    #simulateur .stg1-price-badge .price-amount {
        font-size: 1.4rem;
    }
}

/* -------------------------------------- */
/* CSS SIMULATEUR E85 - ISOLÉ             */
/* -------------------------------------- */

.e85sim-calculator-section.e85sim-dark {
  background-color: #111111 !important; 
  color: #ffffff;
  padding: 120px 0px 80px 0px; 
  position: relative;
  overflow: hidden;
  min-height: 90vh; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
}

/* Halos verts et bleus pour le côté "Eco" */
.e85sim-halo-green {
  position: absolute;
  top: 20%; 
  left: 5%;
  width: 600px; 
  height: 600px;
  background: radial-gradient(circle, rgba(39, 174, 96, 0.25) 0%, transparent 60%);
  z-index: 0; 
  pointer-events: none;
  filter: blur(60px);
}

.e85sim-halo-blue {
  position: absolute;
  top: 40%; 
  right: 5%;
  width: 500px; 
  height: 500px;
  background: radial-gradient(circle, rgba(41, 128, 185, 0.2) 0%, transparent 60%);
  z-index: 0; 
  pointer-events: none;
  filter: blur(60px);
}

.e85sim-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 20px;
}

.e85sim-header { 
  text-align: center; 
  margin-bottom: 40px; 
}

.e85sim-badge {
  display: inline-block; 
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60; 
  padding: 6px 18px; 
  border-radius: 30px;
  font-weight: 800; 
  text-transform: uppercase;
  margin-bottom: 20px; 
  border: 1px solid rgba(39, 174, 96, 0.3);
  box-shadow: 0 0 30px rgba(39, 174, 96, 0.2); 
}

.e85sim-hero-h1 { 
  margin: 0 0 15px 0; 
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
}

.e85sim-header p { color: #d1d5db; line-height: 1.6; font-size: 1.1rem; }

/* -------------------------------------- */
/* CSS SIMULATEUR E85 - ISOLÉ             */
/* -------------------------------------- */

.e85sim-calculator-section.e85sim-dark {
  background-color: #111111 !important; 
  color: #ffffff;
  padding: 120px 0px 80px 0px; 
  position: relative;
  overflow: hidden;
  min-height: 90vh; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
}

/* Halos verts et bleus pour le côté "Eco" */
.e85sim-halo-green {
  position: absolute;
  top: 20%; 
  left: 5%;
  width: 600px; 
  height: 600px;
  background: radial-gradient(circle, rgba(39, 174, 96, 0.25) 0%, transparent 60%);
  z-index: 0; 
  pointer-events: none;
  filter: blur(60px);
}

.e85sim-halo-blue {
  position: absolute;
  top: 40%; 
  right: 5%;
  width: 500px; 
  height: 500px;
  background: radial-gradient(circle, rgba(41, 128, 185, 0.2) 0%, transparent 60%);
  z-index: 0; 
  pointer-events: none;
  filter: blur(60px);
}

.e85sim-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 20px;
}

.e85sim-header { 
  text-align: center; 
  margin-bottom: 40px; 
}

.e85sim-badge {
  display: inline-block; 
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60; 
  padding: 6px 18px; 
  border-radius: 30px;
  font-weight: 800; 
  text-transform: uppercase;
  margin-bottom: 20px; 
  border: 1px solid rgba(39, 174, 96, 0.3);
  box-shadow: 0 0 30px rgba(39, 174, 96, 0.2); 
}

.e85sim-hero-h1 { 
  margin: 0 0 15px 0; 
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
}

.e85sim-header p { color: #d1d5db; line-height: 1.6; font-size: 1.1rem; }

/* Panneau de sélection */
.e85sim-glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px; 
  padding: 40px;
}

/* Nouvel alignement en Grid pour corriger le bug des hauteurs */
.e85sim-selects-grid {
  display: grid;
  gap: 20px;
}

.e85sim-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.e85sim-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.e85sim-select-group { 
  display: flex; 
  flex-direction: column; 
  /* Cette ligne force les inputs à s'aligner en bas, même si les labels n'ont pas la même hauteur */
  justify-content: flex-end; 
}

.e85sim-select-group label { 
  font-weight: 700; 
  color: #9ca3af; 
  margin-bottom: 10px; 
  text-transform: uppercase; 
  font-size: 0.85em;
  letter-spacing: 0.5px;
  /* Laisse le label prendre l'espace disponible en haut */
  margin-top: auto; 
}

/* Forcer la couleur blanche sur les champs même avec le thème WP */
.e85sim-select-group input,
.e85sim-select-group select {
    color: #ffffff !important; 
}

/* Forcer le fond sombre et le texte blanc dans la liste déroulante */
.e85sim-select-group select option {
    background-color: #1a1c20 !important;
    color: #ffffff !important;
}

/* Corriger le bug d'autocomplétion/clic de Chrome (qui met un fond blanc et texte noir) */
.e85sim-select-group input:-webkit-autofill,
.e85sim-select-group input:-webkit-autofill:hover, 
.e85sim-select-group input:-webkit-autofill:focus, 
.e85sim-select-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #1a1c20 inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Couleur du texte quand on le sélectionne à la souris */
.e85sim-select-group input::selection {
    background-color: #27ae60;
    color: #ffffff;
}

/* Bouton Calculer */
.e85sim-btn-simuler {
  width: 100%; 
  padding: 18px; 
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase; 
  color: #fff; 
  background: #27ae60;
  border: none; 
  border-radius: 8px; 
  cursor: pointer; 
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
}

.e85sim-btn-simuler:hover { 
  background: #219653; 
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(39, 174, 96, 0.4); 
}

/* Résultats */
.hidden { display: none !important; }
.e85sim-resultats { margin-top: 50px; animation: e85sim-fadeIn 0.6s ease; }
.e85sim-vehicule-titre { text-align: center; font-weight: 800; color: #fff; margin-bottom: 30px; font-size: 1.4em;}

.e85sim-cards-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 25px; 
  margin-bottom: 40px;
}

.e85sim-card {
  background: rgba(255,255,255,0.03); 
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; 
  padding: 30px 20px; 
  text-align: center; 
}

.e85sim-highlight-card { 
  border-color: rgba(39, 174, 96, 0.5); 
  background: rgba(39, 174, 96, 0.05); 
}

.e85sim-eco-card { 
  border-color: rgba(41, 128, 185, 0.5); 
  background: rgba(41, 128, 185, 0.05); 
}

.e85sim-card-header { 
  text-transform: uppercase; 
  color: #9ca3af; 
  letter-spacing: 1px; 
  margin-bottom: 20px;
  font-size: 0.9em;
  font-weight: 700;
}

.e85sim-stats-flex { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
}

.e85sim-stat-item { 
  display: flex; 
  flex-direction: column; 
}

.e85sim-stat-val { 
  font-size: 3rem; 
  font-weight: 900; 
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Archivo Black', sans-serif;
}
.green-text { color: #2ecc71; }
.blue-text { color: #3498db; }

.e85sim-stat-label { color: #d1d5db; font-size: 1rem;}
.e85sim-gain { color: #2ecc71; font-weight: bold; margin-top: 15px; font-size: 0.95em;}
.e85sim-e85-desc { color: #9ca3af; line-height: 1.5; font-size: 0.9em;}

/* CTA */
.e85sim-cta-bloc { 
  background: rgba(0,0,0,0.4); 
  padding: 35px 25px; 
  border-radius: 12px; 
  text-align: center; 
  border: 1px solid rgba(255,255,255,0.05);
}
.e85sim-cta-bloc h3 { margin: 0 0 15px 0; color: #fff; font-size: 1.5rem; }
.e85sim-cta-bloc p { color: #9ca3af; margin-bottom: 25px; font-size: 1rem;}

.e85sim-cta-buttons { 
  display: flex; 
  justify-content: center; 
  gap: 15px; 
  flex-wrap: wrap; 
}

.e85sim-btn-appel, .e85sim-btn-devis {
  padding: 14px 28px; 
  border-radius: 8px; 
  font-weight: 700; 
  text-decoration: none; 
  display: flex; 
  align-items: center; 
  gap: 10px;
  transition: 0.3s;
}

.e85sim-btn-appel { background: var(--theme-palette-color-1, #FF4D24); color: #fff; }
.e85sim-btn-appel:hover { background: #e63e15; }

.e85sim-btn-devis { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.e85sim-btn-devis:hover { background: rgba(255,255,255,0.1); }

.e85sim-disclaimer { 
  color: #6b7280; 
  text-align: center; 
  margin-top: 25px; 
  font-size: 0.85em;
}

@keyframes e85sim-fadeIn { 
  from { opacity: 0; transform: translateY(20px); } 
  to { opacity: 1; transform: translateY(0); } 
}

/* Responsive pour passer sur 1 colonne sur mobile */
@media (max-width: 768px) {
  .e85sim-glass-panel { padding: 20px; }
  .e85sim-stat-val { font-size: 2.5rem; }
  .e85sim-info-bar { display: flex; flex-direction: column; gap: 5px; }
  .e85sim-info-bar .dot-separator { display: none; }
  
  /* Les grilles passent sur 1 colonne */
  .e85sim-grid-3, .e85sim-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   --- TABLEAU COMPARATIF E85 STYLE APPLE 2026 (GLASSMORPHISM) ---
   ============================================================ */

/* Conteneur principal qui gère l'arrondi et le scroll mobile */
.e85-glass-table-container {
    max-width: 1000px;
    margin: 60px auto 30px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Wrapper pour le défilement horizontal sur mobile sans casser l'arrondi */
.e85-table-wrapper {
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.03); /* Fond très légèrement transparent */
    backdrop-filter: blur(20px); /* Effet verre dépoli */
    -webkit-backdrop-filter: blur(20px);
    border-radius: 18px; /* Grands arrondis style Apple */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Bordure transparente subtile */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5); /* Ombre portée douce */
}

/* Masquer la barre de défilement mais garder le scroll */
.e85-table-wrapper::-webkit-scrollbar {
    height: 3px;
    background: transparent;
}
.e85-table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* La table elle-même */
.e85-apple-table {
    width: 100%;
    border-collapse: separate; /* Obligatoire pour les arrondis sur thead/tr */
    border-spacing: 0;
    color: #ffffff;
    min-width: 650px; /* Force le scroll sur mobile */
}

/* --- THEAD (En-tête) --- */

.e85-apple-table thead th {
    padding: 25px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7); /* Texte légèrement grisé */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Centrer le contenu des colonnes de données */
.e85-apple-table th:not(.th-criterion),
.e85-apple-table td:not(.td-criterion) {
    text-align: center;
}

/* Alignement des icônes/badges dans l'en-tête */
.th-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Colonne E85 dans l'en-tête avec une bordure néon en haut */
.th-e85 {
    color: #2ecc71 !important; /* Vert E85 */
    border-top: 2px solid #2ecc71;
    border-radius: 18px 18px 0 0; /* Arrondi juste en haut */
}

/* Badge E85 stilisé */
.badge-e85 {
    background-color: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

/* --- TBODY (Corps) --- */

.e85-apple-table tbody tr {
    transition: background-color 0.3s ease;
}

/* Effet de survol sur la ligne entière */
.e85-apple-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.e85-apple-table tbody td {
    padding: 20px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Retirer la bordure de la dernière ligne pour ne pas casser l'arrondi du wrapper */
.e85-apple-table tbody tr:last-child td {
    border-bottom: none;
}

/* Titres des lignes (critères) */
.td-criterion {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Mise en valeur des victoires E85 (Néon Vert) */
.td-e85-win {
    font-weight: 700;
    color: #2ecc71;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

/* Mise en valeur Ecologie (Néon Bleu) */
.td-eco-win {
    font-weight: 700;
    color: #3498db;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

/* Indicateurs oui/non stilisés */
.td-yes { color: #2ecc71; }
.td-no { color: #e74c3c; }

/* Disclaimer stylisé sous le tableau */
.table-disclaimer-stilisé {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.e85-img-combo {
    width: 100%;
    max-width: 550px;
    aspect-ratio: 4 / 3;
    object-fit: cover; /* Empêche l'image de s'écraser ou se déformer */
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- CORRECTIONS MOBILE POUR LE HERO E85 --- */
@media (max-width: 768px) {
    
    /* 1. Règle le padding top/bottom sur mobile */
    .e85-hero-section {
        padding-top: 10px !important; /* Modifie cette valeur pour gérer l'espace sous le menu */
        padding-bottom: 40px !important;
        overflow-x: hidden !important; /* Sécurité anti-débordement */
    }

    /* 2. Force la grille sur 1 seule colonne 100% (corrige le hors écran) */
    .e85-hero-grid {
        grid-template-columns: 1fr !important; 
        gap: 40px; 
        width: 100% !important;
    }

    /* 3. Adapte le panneau du simulateur à la largeur de l'écran */
    .e85-hero-glass-panel {
        padding: 25px 15px !important; /* Réduit les marges internes pour gagner de la place */
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

    /* 4. Gère la disposition de la pastille 420€ pour éviter qu'elle ne sorte de l'écran */
    .e85-hero-price-badge {
        top: -15px !important; /* La remonte un peu moins */
        right: 10px !important; /* La colle un peu plus vers l'intérieur */
        padding: 8px 15px !important;
        transform: scale(0.9); /* La réduit à 90% pour un meilleur rendu mobile */
    }
    
    .e85-hero-price-badge .price-amount {
        font-size: 1.4rem !important;
    }
}

/* =========================================
   CORRECTIONS MOBILE - HERO SECTION E85
   ========================================= */
@media (max-width: 768px) {

    /* 1. RÉGLAGE DU PADDING TOP (Espace sous le menu) */
    .e85-hero-section {
        padding-top: 120px !important; /* ⬅️ Modifie cette valeur (ex: 80px, 120px...) */
        padding-bottom: 50px !important;
        overflow-x: hidden !important; /* Coupe tout ce qui dépasse sur les côtés */
    }

    /* 2. CORRECTION DU HORS-ÉCRAN (Le simulateur s'adapte à 100%) */
    .e85-hero-wrapper {
        padding: 0 15px !important; /* Garde une marge de 15px de chaque côté de l'écran */
        box-sizing: border-box !important;
        width: 100% !important;
    }
    
    .e85-hero-grid {
        display: flex !important;
        flex-direction: column !important; /* Empile le texte puis le simulateur */
        gap: 40px !important;
        width: 100% !important;
    }

    .e85-hero-glass-panel {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 30px 15px !important; /* Réduit l'espace vide à l'intérieur du cadre */
        margin: 0 !important;
    }

    /* 3. POSITION DE LA PASTILLE 420€ */
    .e85-hero-price-badge {
        top: -40px !important;    /* ⬅️ Hauteur (chiffre négatif = monte, positif = descend) */
        right: 10px !important;   /* ⬅️ Écart avec le bord droit (augmente pour la pousser à gauche) */
        transform: scale(0.85) !important; /* Réduit sa taille à 85% pour le téléphone */
        transform-origin: top right !important; /* S'assure qu'elle se réduit depuis le coin */
    }
    
    /* On recentre un peu le texte de présentation au passage */
    .e85-hero-text-col {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .e85-hero-benefits-list {
        display: inline-block;
        text-align: left;
    }
}

/* --- CSS TYPE "QUALITOITURE" ADAPTÉ POUR DIEZE PERFORMANCE --- */

/* 1. CONTENEUR PRINCIPAL */
.glb-box {
    padding: 60px 50px;
    max-width: 1100px;
    margin: 40px auto;
    border-radius: 24px;
    width: 100%;
    box-sizing: border-box;
    background: #ffffff; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
    color: #334155; 
    line-height: 1.6; 
    border: 1px solid #f1f5f9;
}

/* Image de mise en avant */
.glb-featured-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* 2. GRILLES */
.glb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.glb-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* 3. CARTES (TYPE CARTE MOBILE) */
.glb-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: flex-start;
    text-align: center;     
    height: 100%;
    width: 100%;
}
.glb-card-mobile-fix {
    background: #f8fafc; 
    border: 1px solid #e2e8f0; 
    border-radius: 16px; 
    padding: 25px 20px;
    transition: transform 0.3s;
}
.glb-card-mobile-fix:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #FF4D24;
}

/* 4. BOUTON ACTION (Orange Dieze) */
.glb-btn {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    background: #FF4D24; 
    color: #fff; 
    padding: 15px 40px; 
    border-radius: 50px; 
    font-weight: 800; 
    font-size: 1.1rem; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    box-shadow: 0 10px 20px rgba(255, 77, 36, 0.3);
}
.glb-btn:hover { transform: scale(1.05); background: #1f2937; color:#fff;}

.glb-btn-outline {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    background: transparent; 
    color: #1f2937; 
    padding: 15px 40px; 
    border-radius: 50px; 
    font-weight: 800; 
    font-size: 1.1rem; 
    text-decoration: none; 
    transition: all 0.3s ease; 
    border: 2px solid #e2e8f0;
}
.glb-btn-outline:hover { border-color: #FF4D24; color: #FF4D24; }

/* Liens SEO internes (dans le texte et fin de section) */
.glb-text-link {
    color: #FF4D24;
    font-weight: 600;
    text-decoration: none;
}
.glb-text-link:hover { text-decoration: underline; }

.glb-internal-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    border-bottom: 2px solid #FF4D24;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}
.glb-internal-link:hover { color: #FF4D24; }

/* 5. TABLEAUX (Scroll Mobile) */
.table-scroll-wrapper {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 30px;
    background-color: #ffffff;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 600px;
    background-color: #ffffff;
}
thead { background: #1f2937; color: #fff; }
th { padding: 15px; text-align: left; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; }
td { padding: 12px 15px; border-bottom: 1px solid #e2e8f0; }
.glb-price { font-weight: 800; color: #FF4D24; }

/* Étoiles pour le tableau */
.stars { color: #FF4D24; font-size: 1.1rem; letter-spacing: 2px;}

/* Box Mise en situation / Scénario */
.scenario-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
    border-left: 5px solid #FF4D24;
}
.scenario-box.adblue { border-left-color: #3498db; }
.scenario-box.fap { border-left-color: #10b981; }

/* --- SECTION FAQ --- */
.glb-faq-section {
    margin-top: 60px;
    margin-bottom: 50px;
}
.glb-section-title {
    font-size: 1.5rem;
    color: #1f2937;
    font-weight: 800;
    margin-bottom: 20px;
    border-left: 4px solid #FF4D24;
    padding-left: 15px;
}
.glb-faq-item {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    transition: border-color 0.3s ease;
}
.glb-faq-item:hover {
    border-color: rgba(255, 77, 36, 0.5);
}
.glb-faq-summary {
    font-weight: 700;
    color: #1f2937;
    outline: none;
}
.glb-faq-text {
    margin-top: 10px;
    padding-left: 20px;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- SECTION CTA FINAL --- */
.glb-cta-section {
    margin: 50px 0 0 0;
}
.glb-cta-box {
    background: #fff;
    border: 2px solid #FF4D24;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 77, 36, 0.15);
}
.glb-cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 10px 0;
}
.glb-cta-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 25px;
}
.glb-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}
.glb-cta-footer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #64748b;
}

/* 6. MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .glb-box { padding: 30px 15px; border-radius: 0; box-shadow: none; border: none; margin: 0; }
    .glb-title-main { font-size: 2rem !important; line-height: 1.2 !important; }
    .glb-grid, .glb-grid-2 { grid-template-columns: 1fr; gap: 20px; }
    .glb-btn, .glb-btn-outline { width: 100%; }
}

/* --- STYLE WPFORMS : THÈME SOMBRE HAUT CONTRASTE (DIEZE PERFORMANCE) --- */

.form-reveal-area {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-reveal-area h4 {
    color: #ffffff;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.wpforms-container-mockup {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

/* 1. Labels des champs */
.wpforms-container-mockup .wpforms-field-label {
    color: #e5e7eb !important; /* Blanc cassé pour ne pas agresser l'œil */
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    margin-bottom: 8px !important;
}

/* Astérisque (Champ requis) en Orange */
.wpforms-container-mockup .wpforms-required-label {
    color: #FF4D24 !important;
    font-weight: 900 !important;
}

/* 2. Champs de saisie (Inputs) */
.wpforms-container-mockup input[type="text"],
.wpforms-container-mockup input[type="email"],
.wpforms-container-mockup input[type="tel"] {
    background-color: #0a0a0c !important; /* Noir profond */
    color: #ffffff !important; /* Texte blanc pur */
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    padding: 14px 15px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

/* 3. Focus sur les champs (Quand on clique dedans) */
.wpforms-container-mockup input[type="text"]:focus,
.wpforms-container-mockup input[type="email"]:focus,
.wpforms-container-mockup input[type="tel"]:focus {
    border-color: #FF4D24 !important; /* Bordure Orange Dieze */
    box-shadow: 0 0 0 3px rgba(255, 77, 36, 0.2) !important;
    outline: none !important;
}

/* 4. ANTI-BUG CHROME : Maintien du fond noir lors de l'autocomplétion */
.wpforms-container-mockup input:-webkit-autofill,
.wpforms-container-mockup input:-webkit-autofill:hover, 
.wpforms-container-mockup input:-webkit-autofill:focus, 
.wpforms-container-mockup input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #0a0a0c inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* 5. Checkbox RGPD */
.wpforms-container-mockup .wpforms-field-checkbox label {
    color: #9ca3af !important; /* Gris moyen pour hiérarchie visuelle */
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
}

.wpforms-container-mockup input[type="checkbox"] {
    accent-color: #FF4D24 !important; /* Coche orange sur les navigateurs modernes */
    transform: scale(1.1); /* Lègèrement plus grand pour le mobile */
    margin-right: 10px !important;
}

/* 6. Bouton d'envoi */
.wpforms-container-mockup .wpforms-submit {
    background-color: #FF4D24 !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    padding: 16px 30px !important;
    border-radius: 8px !important;
    border: none !important;
    width: 100% !important; /* Largeur totale pour plus d'impact */
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 20px rgba(255, 77, 36, 0.25) !important;
    margin-top: 10px !important;
}

.wpforms-container-mockup .wpforms-submit:hover {
    background-color: #e63e1c !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 25px rgba(255, 77, 36, 0.4) !important;
}

/* 7. Messages d'erreur en rouge clair (Contraste Dark Mode) */
.wpforms-container-mockup .wpforms-error {
    color: #f87171 !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    margin-top: 5px !important;
}

/* 8. Ajustement Mobile */
@media (max-width: 768px) {
    .wpforms-container-mockup {
        padding: 20px;
    }
}

/* =========================================
   PAGE CONTACT - DIEZE PERFORMANCE (V2)
   ========================================= */

/* --- CONFIGURATION GLOBALE HERO --- */
#dp-contact-hero {
    position: relative;
    background-color: #0a0a0c; /* NOIR DIEZE */
    font-family: 'Inter', sans-serif;
    padding-top: 10rem; 
    padding-bottom: 12rem; /* Beaucoup d'espace en bas pour le chevauchement */
    overflow: hidden;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dp-contact-hero * {
    box-sizing: border-box;
}

/* --- EFFETS DE FOND (GRILLE & GLOW) --- */
#dp-contact-hero .dp-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), 
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

#dp-contact-hero .dp-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

#dp-contact-hero .glow-top-right {
    top: -20%;
    right: -10%;
    background-color: #FF4D24; /* ORANGE DIEZE */
}

#dp-contact-hero .glow-bottom-left {
    bottom: -20%;
    left: -10%;
    background-color: rgba(255, 255, 255, 0.1); 
}

/* --- CONTENU HERO --- */
#dp-contact-hero .dp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    width: 100%;
}

#dp-contact-hero .dp-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* --- BADGE --- */
#dp-contact-hero .dp-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    margin-bottom: 2rem;
}

#dp-contact-hero .dp-pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #FF4D24;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 10px #FF4D24;
    animation: dpPulse 2s infinite;
}

#dp-contact-hero .dp-badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d1d5db;
}

@keyframes dpPulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* --- TITRES --- */
#dp-contact-hero h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
}

#dp-contact-hero .dp-hero-subtitle {
    font-size: 1.15rem;
    color: #9CA3AF;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* --- SECTION GRILLE CONTACT (CHEVAUCHEMENT) --- */
.dieze-contact-wrapper {
    background-color: #0a0a0c;
    padding: 0 20px 80px 20px;
    font-family: 'Inter', sans-serif;
}

.dp-contact-split {
    max-width: 1200px;
    /* Le margin négatif crée le chevauchement avec le hero */
    margin: -140px auto 0 auto; 
    position: relative;
    z-index: 20; 
    display: grid;
    /* Inversion ici : 1.3fr pour la 1ère col (formulaire), 1fr pour la 2ème (infos) */
    grid-template-columns: 1.3fr 1fr; 
    gap: 40px;
    align-items: start;
}

/* --- COLONNE GAUCHE (FORMULAIRE) --- */
.dp-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(16px); /* Fort effet de verre sur le chevauchement */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.dp-form-header {
    text-align: left;
    margin-bottom: 30px;
}

.dp-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dp-status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.dp-form-header h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.dp-form-header p {
    color: #9ca3af;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.wpforms-container-mockup {
    /* Retrait du fond de la mockup car le wrapper fait déjà l'effet de cadre */
    background: transparent;
    padding: 0;
}

/* --- COLONNE DROITE (WIDGETS INFO) --- */
.dp-info-wrapper {
    display: flex;
    flex-direction: column;
}

.dp-info-title-block {
    margin-bottom: 30px;
    background: rgba(10, 10, 12, 0.6); /* Petit fond fumé pour la lisibilité sur la grille */
    backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dp-info-title-block h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.dp-info-title-block p {
    color: #9ca3af;
    font-size: 1.05rem;
    margin: 0;
}

.dp-widget-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dp-info-widget-clean {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px); /* Effet verre sur le chevauchement */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

a.dp-info-widget-clean:hover {
    background: rgba(255, 77, 36, 0.05);
    border-color: rgba(255, 77, 36, 0.3);
    transform: translateX(10px);
}

.dp-w-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FF4D24;
    margin-bottom: 8px;
}

.dp-w-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

/* --- RESPONSIVE MOBILE & TABLETTE --- */
@media (max-width: 992px) {
    .dp-contact-split {
        grid-template-columns: 1fr;
        margin-top: -60px; /* On réduit le chevauchement sur mobile */
        gap: 40px;
    }
    
    .dp-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    #dp-contact-hero {
        padding-top: 8rem;
        padding-bottom: 8rem; 
    }
    #dp-contact-hero h1 {
        font-size: 2.2rem;
    }
}

/* =========================================
   CORRECTION WPFORMS (ID 2766) - DARK MODE
   ========================================= */

/* 1. Espacement global entre les champs */
#wpforms-2766 .wpforms-field {
    margin-bottom: 0 !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
}

/* 2. Titres des champs (Labels) */
#wpforms-2766 .wpforms-field-label {
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    margin-bottom: 10px !important;
    display: block !important;
}

/* Astérisque rouge/orange */
#wpforms-2766 .wpforms-required-label {
    color: #FF4D24 !important;
    font-weight: 900 !important;
}

/* 3. Contraste des champs de saisie (Inputs & Textarea) */
#wpforms-2766 input[type="text"],
#wpforms-2766 input[type="email"],
#wpforms-2766 input[type="tel"],
#wpforms-2766 textarea {
    background-color: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 15px !important;
    width: 100% !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important;
}

/* Effet au clic (Focus) */
#wpforms-2766 input[type="text"]:focus,
#wpforms-2766 input[type="email"]:focus,
#wpforms-2766 input[type="tel"]:focus,
#wpforms-2766 textarea:focus {
    border-color: #FF4D24 !important;
    background-color: rgba(255, 255, 255, 0.09) !important;
    box-shadow: 0 0 0 3px rgba(255, 77, 36, 0.2) !important;
    outline: none !important;
}

/* Suppression des puces pour tous les formulaires */
.wpforms-container-mockup .wpforms-field-checkbox ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.wpforms-container-mockup .wpforms-field-checkbox li {
    list-style-type: none !important;
    margin-bottom: 12px !important;
    display: flex !important;
    align-items: flex-start !important;
}

/* Sécurité pour bloquer le point forcé par le thème du site Web */
.wpforms-container-mockup .wpforms-field-checkbox li::before {
    display: none !important;
    content: none !important;
}

/* Case à cocher avec contour blanc et fond transparent */
.wpforms-container-mockup .wpforms-field-checkbox input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    margin-top: 4px !important;
    margin-right: 12px !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #ffffff !important; /* la bordure passe en blanc */
    background-color: transparent !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
}

/* Coche orange Dieze Performance au clic */
.wpforms-container-mockup .wpforms-field-checkbox input[type="checkbox"]:checked {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4D24' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-size: 80% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-color: #FF4D24 !important;
}

/* 5. Bouton d'envoi */
#wpforms-2766 .wpforms-submit {
    background-color: #FF4D24 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 18px 30px !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    border-radius: 8px !important;
    width: 100% !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 15px !important;
    box-shadow: 0 10px 20px rgba(255, 77, 36, 0.25) !important;
}

#wpforms-2766 .wpforms-submit:hover {
    background-color: #e63e1c !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 25px rgba(255, 77, 36, 0.4) !important;
}

/* 6. Fix anti-fond blanc pour l'autocomplétion Chrome */
#wpforms-2766 input:-webkit-autofill,
#wpforms-2766 input:-webkit-autofill:hover, 
#wpforms-2766 input:-webkit-autofill:focus, 
#wpforms-2766 input:-webkit-autofill:active,
#wpforms-2766 textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #1a1a1d inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* 7. Mentions légales reCAPTCHA */
.texte-gris-bleu {
    color: #778899 !important;
}

.texte-gris-bleu a {
    color: #778899 !important;
    text-decoration: underline !important;
}

/* =========================================
   BOUTON FLOTTANT WHATSAPP DIEZE PERFORMANCE
   ========================================= */
.dp-whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px; 
    left: auto !important; 
    width: max-content; /* Stoppe l'étirement */
    max-width: 100%;
    white-space: nowrap; /* Garde le texte sur une seule ligne */
    background-color: #25D366; 
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 99999;
    transition: all 0.3s ease;
}

.dp-whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
    color: #ffffff;
}

/* Effet de pulsation (Halo vert) */
.dp-whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50px;
    border: 2px solid #25D366;
    animation: pulse-whatsapp 2s infinite;
    z-index: -1;
}

@keyframes pulse-whatsapp {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* Responsive Mobile : on masque le texte pour n'avoir qu'une bulle ronde */
@media (max-width: 768px) {
    .dp-whatsapp-float {
        bottom: 20px;
        left: 20px;
        padding: 12px; /* Transforme le bouton en cercle parfait */
        border-radius: 50%;
    }
    
    .dp-whatsapp-float span {
        display: none; /* Disparition du texte "Contact WhatsApp" */
    }
    
    .dp-whatsapp-float::before {
        border-radius: 50%;
    }
}

/* 7. Mentions légales reCAPTCHA en blanc */
.dp-recaptcha-legal {
    color: #ffffff !important;
}

.dp-recaptcha-legal a {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.ct-back-to-top {
    position: fixed !important;
    bottom: 20px !important; /* positionnement en bas */
    left: 20px !important;   /* positionnement à gauche */
    top: auto !important;    /* annule la position en haut */
    right: auto !important;  /* annule la position à droite */
    z-index: 10 !important;
}

/* Variables de couleurs pour les catégories (à adapter selon votre charte graphique) */
:root {
    --color-adblue: #3b82f6; /* Bleu */
    --color-fap: #f97316;    /* Orange */
    --color-reprog: #ff4d24; /* Rouge/Orange Dieze Performance */
}

/* Conteneur principal */
.annexes-section {
    padding: 80px 20px;
    background-color: #050505; /* Fond sombre pour correspondre au reste de votre site */
    font-family: 'Inter', sans-serif;
}

.annexes-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* En-tête de la section */
.annexes-header {
    text-align: center;
    margin-bottom: 50px;
}

.annexes-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.annexes-header p {
    color: #9ca3af;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Gestion du saut de ligne responsive */
.hide-on-desktop {
    display: none;
}

@media (max-width: 768px) {
    .hide-on-desktop {
        display: block;
    }
}

/* Grille des cartes */
.annexes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Style individuel des cartes */
.annexe-card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 3 / 4; /* Conserve les proportions des images 600x800 */
    border: 2px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #111; /* Couleur de fond de secours */
}

.annexe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Images avec effet de zoom au survol */
.annexe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.annexe-card:hover .annexe-img {
    transform: scale(1.08);
}

/* Voile dégradé noir pour la lisibilité du texte */
.annexe-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Contenu textuel positionné en bas */
.annexe-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.annexe-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* Liens stylisés avec animation de la flèche */
.annexe-link-text {
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: padding-left 0.3s ease;
}

.annexe-card:hover .annexe-link-text {
    padding-left: 5px; /* Décale légèrement le texte au survol */
}

/* Modificateurs de couleurs par catégorie */
.border-adblue:hover { border-color: var(--color-adblue); }
.text-adblue { color: var(--color-adblue); }

.border-fap:hover { border-color: var(--color-fap); }
.text-fap { color: var(--color-fap); }

.border-reprog:hover { border-color: var(--color-reprog); }
.text-reprog { color: var(--color-reprog); }

/* Animation d'apparition globale (si la classe reveal-fade-up est gérée en JS, sinon voici le fallback CSS) */
.reveal-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Suppression du fond blanc sur le conteneur */
.e85-glass-table-container,
.e85-table-wrapper,
.table-scroll-wrapper {
    background-color: transparent !important;
    background: transparent !important;
}

/* Transparence totale sur la table, les lignes et les cellules */
table.e85-apple-table,
.e85-apple-table tr,
.e85-apple-table th,
.e85-apple-table td {
    background-color: transparent !important;
    background: transparent !important;
}

/* Optionnel : si un effet rayé (zebra) était actif, on le désactive pour garder la transparence */
.e85-apple-table tr:nth-child(even) {
    background-color: transparent !important;
}

/* =========================================
   BOUTON STICKY MOBILE - DIEZE PERFORMANCE
   ========================================= */

.dp-sticky-mobile {
    position: fixed;
    bottom: -100px; /* Masqué par défaut (hors de l'écran en bas) */
    left: 0;
    width: 100%;
    z-index: 99998; /* Juste en dessous du bouton WhatsApp (s'il est à 99999) */
    padding: 0 15px; /* Espacement latéral uniquement */
    background: transparent; /* Fond supprimé */
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animation d'apparition avec effet rebond */
    display: none; /* Masqué sur PC */
    box-sizing: border-box;
}

/* Classe ajoutée par le JS pour faire apparaître le bouton au scroll */
.dp-sticky-mobile.is-visible {
    bottom: 10px; /* Marge de 10px pour l'effet flottant */
}

.dp-sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background-color: var(--theme-palette-color-1, #FF4D24); /* Orange Dieze */
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 77, 36, 0.4);
    transition: background-color 0.3s, transform 0.2s;
}

.dp-sticky-btn:active {
    transform: scale(0.98); /* Léger effet d'enfoncement au clic (tactile) */
    background-color: #e63e1c;
}

.dp-sticky-btn svg {
    transition: transform 0.3s;
}

/* Sur mobile (max-width: 768px), on affiche le conteneur */
@media (max-width: 768px) {
    .dp-sticky-mobile {
        display: block;
    }
}