:root {
    --primary: #D32F2F;
    --primary-dark: #B71C1C;
    --dark: #0A0A0A;
    --dark-muted: #1E1E1E;
    --light: #FFFFFF;
    --silver: #F1F5F9;
    --border: rgba(0,0,0,0.08);
    --text: #334155;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; color: var(--dark); font-weight: 700; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

/* --- TOP BAR --- */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 500;
    border-bottom: none;
}
.top-info span { margin-right: 25px; }
.top-info a { color: inherit; text-decoration: none; transition: 0.3s; }
.top-info a:hover { color: var(--primary); }

/* --- HEADER --- */
header {
    height: 100px;
    display: flex;
    align-items: center;
    background: #E2E8F0; /* Le Menu Principal en Argent */
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
header.scrolled {
    height: 75px;
    background: rgba(226, 232, 240, 0.95); /* Reste Argent mais légèrement transparent au scroll */
    backdrop-filter: blur(10px); /* Glassmorphism sur l'argent */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
nav { width: 100%; display: flex; justify-content: space-between; align-items: center; }

/* Logo "Écusson" Premium & Texte */
.logo { display: flex; align-items: center; gap: 15px; flex: 1; }

.badge-container {
    height: 80px; 
    width: 80px; 
    border-radius: 50%; 
    border: 3px solid var(--primary); 
    background: white; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
    overflow: hidden; /* C'est le secret : ça coupe tout ce qui dépasse ! */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition); 
}

.car-wheel-logo { 
    height: 100%; 
    width: 100%; 
    object-fit: cover;
    transform: scale(1.6); /* BOOM ! Zoom de 60% uniquement à l'intérieur */
    transition: var(--transition); 
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    font-style: italic;
    color: var(--dark);
    letter-spacing: 1px;
    transition: var(--transition);
}
.logo-text .text-red { color: var(--primary); }
.logo-text .text-white { color: white; }

/* Comportement au scroll */
header.scrolled .badge-container { height: 55px; width: 55px; border-width: 2px; }
header.scrolled .logo-text { font-size: 1.6rem; }

/* Masquer le logo mobile par défaut sur PC */
.mobile-logo-item { display: none; }

.nav-links { display: flex; list-style: none; align-items: center; justify-content: flex-end; flex: 2; }
.nav-links li { margin-left: 35px; }
.nav-links li:last-child { margin-left: 50px; } 
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.nav-links a:not(.btn-cta):hover { color: var(--primary); }

.hamburger { display: none; cursor: pointer; background: transparent; border: 0; padding: 8px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--dark); margin: 6px 0; }
.hamburger:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

.btn-cta {
    background: var(--primary);
    color: white !important;
    padding: 12px 25px;
    border-radius: 4px;
    transition: var(--transition) !important;
    display: inline-block;
}
.btn-cta:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* --- HERO --- */
.hero {
    height: 85vh;
    min-height: 600px;
    background: url('assets/devanture.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 100%);
}
.hero-content { position: relative; z-index: 1; color: white; padding-left: 20px; }
.hero-tag {
    display: inline-block;
    background: var(--primary);
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-radius: 2px;
    opacity: 0; animation: fadeInUp 1s forwards; animation-delay: 0.1s;
}
.hero h1 {
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 25px;
    color: white;
    opacity: 0; animation: fadeInUp 1s forwards; animation-delay: 0.3s;
}
.hero h1 .highlight { color: var(--primary); }
.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0;
    font-weight: 300;
    animation: fadeInUp 1s forwards; animation-delay: 0.5s;
}

.hero-btns { opacity: 0; animation: fadeInUp 1s forwards; animation-delay: 0.7s; }
.hero-btns a {
    text-decoration: none; padding: 20px 40px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; border-radius: 4px;
    display: inline-block; margin-right: 20px; transition: var(--transition);
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-5px); box-shadow: 0 15px 30px rgba(211,47,47,0.3); }
.btn-secondary { background: white; color: var(--dark); }
.btn-secondary:hover { transform: translateY(-5px); }

/* --- TRUST BAR --- */
.trust-bar { background: #F8FAFC; padding: 40px 0; border-bottom: 1px solid var(--border); }
.trust-item { text-align: center; font-size: 0.95rem; border-right: 1px solid var(--border); color: var(--dark); font-weight: 500; }
.trust-item:last-child { border: none; }
.trust-item strong { display: block; font-size: 1.5rem; color: var(--primary); font-family: 'Outfit'; }

/* --- SERVICES (ARGENT MÉTALLISÉ) --- */
.services { 
    padding: 120px 0; 
    background: #E2E8F0; /* Argent Atelier plus marqué */
}
.section-header { margin-bottom: 80px; text-align: center; }
.pre-title {
    color: var(--primary); font-weight: 700; font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 3px; display: block; margin-bottom: 15px;
}
.section-title { font-size: 3.5rem; line-height: 1.1; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
/* Animations d'apparition en cascade pour les cartes */
.service-card {
    background: var(--light);
    padding: 60px 45px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Transition pour le HOVER uniquement */
    position: relative;
    overflow: hidden;
    z-index: 1;
    
    /* Configuration d'apparition initiale */
    opacity: 0;
}

/* Animation Keyframe pour l'arrivée de la carte */
@keyframes cardPop {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Quand l'observer ajoute is-visible, on lance l'animation */
.service-card.is-visible {
    animation: cardPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered Delays pour le lancement de l'animation (ne touche pas au hover) */
.service-card:nth-child(1).is-visible { animation-delay: 0.1s; }
.service-card:nth-child(2).is-visible { animation-delay: 0.2s; }
.service-card:nth-child(3).is-visible { animation-delay: 0.3s; }
.service-card:nth-child(4).is-visible { animation-delay: 0.4s; }
.service-card:nth-child(5).is-visible { animation-delay: 0.5s; }
.service-card:nth-child(6).is-visible { animation-delay: 0.6s; }

/* --- HOVER EFFET ROUGE --- */
@media (hover: hover) {
    .service-card:hover {
        background: var(--primary);
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(211, 47, 47, 0.2);
        border-color: var(--primary);
    }

    /* Changement de couleur du texte au hover */
    .service-card:hover h3,
    .service-card:hover p,
    .service-card:hover .learn-more {
        color: white !important;
    }

    /* Inversion parfaite pour l'icône au hover */
    .service-card:hover .card-icon {
        background: white; /* Le cercle devient blanc pur */
        color: var(--primary); /* L'icône/emoji à l'intérieur devient rouge */
        transform: rotate(360deg) scale(1.1); /* Animation "Roue" maintenue */
        box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Petite ombre pour détacher la pastille blanche du fond rouge */
    }

    /* Ajustement du numéro en arrière-plan au hover */
    .service-card:hover::after {
        color: white;
        opacity: 0.1;
    }
}
.card-icon {
    width: 60px; height: 60px;
    background: var(--silver);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; border-radius: 50%;
    margin-bottom: 30px; 
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); /* Transition pour la rotation */
}
.service-card h3 { margin-bottom: 15px; font-size: 1.5rem; }
.service-card p { color: #64748b; font-size: 0.95rem; margin-bottom: 25px; }
.learn-more { color: var(--primary); text-decoration: none; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }

/* --- SPLIT SECTIONS --- */
.split-section { padding: 120px 0; background: #F8FAFC; }
.split-section.reverse { background: #F8FAFC; }
.split-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-img { position: relative; border-radius: 12px; overflow: hidden; height: 500px; box-shadow: 0 40px 80px rgba(0,0,0,0.15); }
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: 1.5s; }
.split-wrapper:hover img { transform: scale(1.05); }
.img-badge { position: absolute; top: 30px; left: 30px; background: var(--primary); color: white; padding: 10px 20px; font-weight: 700; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 1px; border-radius: 4px; }

.split-text h2 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 30px; }
.split-text p { font-size: 1.2rem; margin-bottom: 35px; }
.check-list { list-style: none; margin-bottom: 40px; }
.check-list li { margin-bottom: 12px; font-weight: 600; display: flex; align-items: center; gap: 10px; color: var(--dark); }
.check-list li::before { content: '✓'; color: var(--primary); font-weight: 900; }

.btn-outline-premium {
    display: inline-block;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 18px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-outline-premium::before {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0;
    background: var(--primary); z-index: -1; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-outline-premium:hover { color: white; }
.btn-outline-premium:hover::before { height: 100%; }

/* --- REVIEWS --- */
.reviews-section { padding: 120px 0; background: #E2E8F0; color: var(--dark); overflow: hidden;}
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.google-badge { display: flex; align-items: center; gap: 15px; }
.badge-text { font-family: 'Outfit'; font-weight: 700; font-size: 1.5rem; color: var(--dark); }
.rating-summary { text-align: right; }
.rating-summary h3 { font-size: 3rem; line-height: 1; margin-bottom: 5px; color: var(--dark); }
.rating-summary .stars { color: #FBBC04; letter-spacing: 2px; font-size: 1.2rem; }
.rating-summary p { font-size: 0.9rem; color: var(--text); margin-top: 5px; }

.reviews-slider-container { width: 100%; overflow: hidden; padding: 20px 0 40px; }
.reviews-track { display: flex; flex-wrap: nowrap; gap: 30px; width: max-content; animation: scrollInfinite 40s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes scrollInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.review-card {
    background: var(--light); /* Carte Blanche */
    padding: 40px;
    border-radius: 12px;
    width: 450px;
    min-width: 450px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(255,255,255,0.8);
    transition: transform 0.3s ease;
    white-space: normal;
    color: var(--dark);
}
.review-meta { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.reviewer-info { display: flex; align-items: center; gap: 15px; }
.avatar { width: 45px; height: 45px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; }
.reviewer-name { font-weight: 700; color: var(--dark); font-size: 1rem; }
.local-guide { font-size: 0.7rem; color: var(--text); border: 1px solid var(--border); padding: 2px 6px; border-radius: 10px; margin-left: 5px; }
.review-date { font-size: 0.85rem; color: var(--text); margin-top: 2px; }
.review-stars { color: #FBBC04; font-size: 0.9rem; }
.review-text { font-size: 1rem; line-height: 1.7; color: var(--text); font-style: italic; }
.review-footer { text-align: center; margin-top: 20px; }

/* --- APPOINTMENT --- */
.appointment { padding: 120px 0; background: #E2E8F0; } 
.appointment-box { background: var(--light); border-radius: 12px; overflow: hidden; box-shadow: 0 50px 100px rgba(0,0,0,0.1); }
.rdv-grid { display: grid; grid-template-columns: 1fr 1.5fr; }
.rdv-info { background: #1E293B; color: white; padding: 80px 60px; position: relative; overflow: hidden; }
.rdv-info::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 100%; background: radial-gradient(circle at top right, rgba(211, 47, 47, 0.1), transparent 50%); }
.rdv-info h2 { color: white; font-size: 3rem; margin-bottom: 30px; position: relative; z-index: 1; }
.team-contacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 15px; margin: 30px 0; position: relative; z-index: 1; }
.team-member { background: rgba(255,255,255,0.05); padding: 15px; border-radius: 4px; border-left: 3px solid var(--primary); }
.team-member span { display: block; font-size: 0.75rem; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 5px; }
.team-member a { color: white; text-decoration: none; font-weight: 700; font-size: 0.9rem; }

.rdv-form-wrapper { padding: 80px 60px; }
.rdv-form-wrapper form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 20px; }
input, select, textarea { width: 100%; padding: 18px; border: 1px solid var(--border); background: var(--silver); border-radius: 6px; font-family: inherit; font-size: 1rem; transition: 0.3s; }
input:focus, select:focus, textarea:focus { border-color: var(--primary); outline: none; background: white; }
.btn-submit { background: var(--primary); color: white; border: none; padding: 20px; border-radius: 6px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--primary-dark); box-shadow: 0 10px 20px rgba(211,47,47,0.2); }

/* --- MOBILE STICKY CTA (Par défaut caché sur Desktop) --- */
.mobile-cta { display: none; }

/* --- FOOTER --- */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 80px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 80px; margin-bottom: 60px; align-items: flex-start; }

.footer-logo { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.footer-badge-box { height: 60px; width: 60px; border-width: 2px; } /* Plus petit dans le footer */
.footer-logo .logo-text { color: white; font-size: 1.6rem; }
.footer-desc { font-size: 0.95rem; line-height: 1.8; max-width: 400px; }

.footer h4 { color: white; font-size: 1.1rem; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 2px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; font-size: 0.9rem; transition: 0.3s; }
.footer a { color: inherit; text-decoration: none; transition: 0.3s; display: inline-block; }
.footer a:hover { color: var(--primary); transform: translateX(5px); }

.footer-legal .vat { margin-top: 15px; font-weight: 700; color: rgba(255,255,255,0.3); }
.footer-legal .hours { color: var(--primary); font-weight: 600; margin-top: 5px; }

.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.05); 
    padding-top: 30px; 
    display: flex; 
    justify-content: space-between; 
    font-size: 0.8rem; 
    letter-spacing: 0.5px;
}
.footer-bottom a { color: white; font-weight: 700; text-decoration: none; }
.footer-bottom a:hover { color: var(--primary); }

/* --- ANIMATIONS --- */
.reveal-on-scroll { opacity: 0; transform: translateY(50px); transition: 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* --- ACCESSIBILITÉ & SÉCURITÉ FORMULAIRE --- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 9999;
    transition: top 0.2s ease;
    border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; outline: 2px solid #fff; outline-offset: -4px; }

.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Honeypot — visible des bots, invisible aux humains */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: auto;
    width: 1px; height: 1px;
    overflow: hidden;
}

.form-field { width: 100%; }

.consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}
.consent input[type="checkbox"] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin: 3px 0 0 0;
    padding: 0;
    background: var(--silver);
    accent-color: var(--primary);
    cursor: pointer;
}
.consent a { color: var(--primary); font-weight: 600; }
.consent a:hover { text-decoration: underline; }

.form-feedback {
    margin-top: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    line-height: 1.5;
}
.form-feedback:empty { display: none; }
.form-feedback.success {
    background: #DCFCE7;
    color: #14532D;
    padding: 14px 18px;
    border-left: 4px solid #16A34A;
}
.form-feedback.error {
    background: #FEE2E2;
    color: #991B1B;
    padding: 14px 18px;
    border-left: 4px solid #DC2626;
}
.form-feedback a { color: inherit; font-weight: 700; }

.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* --- PAGES LÉGALES --- */
.legal-page { padding: 80px 0 120px; background: #F8FAFC; min-height: 70vh; }
.legal-page .container { max-width: 900px; }
.legal-page h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 20px; }
.legal-page .pre-title { margin-bottom: 20px; }
.legal-intro { font-size: 1rem; color: var(--text); margin-bottom: 50px; padding-bottom: 30px; border-bottom: 1px solid var(--border); }
.legal-section { margin-bottom: 45px; }
.legal-section h2 { font-size: 1.3rem; margin-bottom: 18px; color: var(--dark); border-left: 3px solid var(--primary); padding-left: 14px; }
.legal-section p { margin-bottom: 12px; line-height: 1.7; color: var(--text); }
.legal-section a { color: var(--primary); text-decoration: none; font-weight: 600; }
.legal-section a:hover { text-decoration: underline; }
.legal-section strong { color: var(--dark); font-weight: 700; }

.legal-card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 22px 26px; margin-bottom: 12px; box-shadow: 0 4px 12px rgba(15,23,42,0.04); }
.legal-card p { margin-bottom: 6px; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.legal-card-row .legal-name { font-weight: 800; color: var(--dark); min-width: 110px; }
.legal-card-row .legal-role { flex: 1; color: var(--text); min-width: 200px; }
.legal-card-row .legal-loc { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1.5px; }

.legal-list { display: flex; flex-direction: column; gap: 10px; }
.legal-rights { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }

.legal-table { width: 100%; border-collapse: collapse; margin-top: 10px; background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(15,23,42,0.04); }
.legal-table th { background: var(--dark); color: white; text-align: left; padding: 14px 18px; font-family: 'Outfit', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.legal-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); color: var(--text); font-size: 0.95rem; }
.legal-table tr:last-child td { border-bottom: 0; }

.legal-update { margin-top: 60px; padding-top: 25px; border-top: 1px solid var(--border); font-size: 0.85rem; color: #94A3B8; font-style: italic; }

@media (max-width: 768px) {
    .legal-page h1 { font-size: 2rem; }
    .legal-section h2 { font-size: 1.1rem; }
    .legal-card-row { flex-direction: column; align-items: flex-start; gap: 6px; }
    .legal-table { font-size: 0.85rem; }
    .legal-table th, .legal-table td { padding: 10px 12px; }
}

/* Préférences de mouvement réduit — respect des paramètres système */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* --- MOBILE --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .split-wrapper { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .split-section.reverse .split-wrapper { flex-direction: column-reverse; display: flex; }
    .rdv-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    header { height: 75px; }
    
    /* LOGO MOBILE */
    .badge-container { height: 45px; width: 45px; border-width: 2px; }
    .logo-text { font-size: 1.4rem; }
    .logo { gap: 10px; }

    /* HAMBURGER MENU */
    .hamburger { display: block; z-index: 2001; }
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .hamburger span { transition: var(--transition); }
    
    .nav-links { 
        display: flex; flex-direction: column; justify-content: center; align-items: center;
        position: fixed; top: 0; left: -100%; width: 100%; height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        transition: var(--transition); z-index: 2000;
    }
    .nav-links.active { left: 0; }
    .mobile-logo-item { display: block !important; margin-bottom: 40px !important; }
    .mobile-logo-item .logo { justify-content: center; }
    .nav-links li { margin: 20px 0 !important; }
    .nav-links a { font-size: 1.5rem; }

    /* HERO CLUTTER FIX */
    .hero { min-height: 500px; height: 85vh; } /* Augmenté pour repousser la trust-bar hors écran */
    .hero h1 { font-size: 2.2rem; margin-bottom: 15px; }
    .hero p { font-size: 1rem; margin-bottom: 25px; }
    .hero-tag { font-size: 0.65rem; padding: 4px 10px; margin-bottom: 15px; }
    .hero-btns { display: flex; flex-direction: column; gap: 10px; }
    .hero-btns a { margin-right: 0; text-align: center; padding: 15px 20px; }

    /* GENERAL FIXES */
    .top-bar { display: none; }
    .rdv-form-wrapper { padding: 40px 20px; }
    .form-row { flex-direction: column; gap: 20px; }
    
    /* REVIEWS MOBILE FIX */
    .review-card { width: 280px; min-width: 280px; padding: 25px; }
    .reviews-header { flex-direction: column; align-items: flex-start; gap: 15px; }
    .rating-summary { text-align: left; }

    /* FOOTER FIX */
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }

    /* MOBILE CTA */
    .mobile-cta { display: flex; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 1000; background: var(--light); padding: 10px; gap: 10px; border-top: 1px solid var(--border); box-shadow: 0 -5px 20px rgba(0,0,0,0.1); }
    .mobile-cta a { flex: 1; text-align: center; text-decoration: none; padding: 15px; border-radius: 4px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }
    .cta-call { background: var(--primary); color: white; }
    .cta-map { background: var(--dark); color: white; }
}
