/* ============================================================
   0. VARIABLES & RESET
============================================================ */
:root {
    --gold: #c5a059;
    --gold-dim: rgba(197, 160, 89, 0.7);
    --gold-glow: rgba(197, 160, 89, 0.3);
    --gold-gradient: linear-gradient(135deg, #c5a059 0%, #e6cd98 100%);
    
    --bg-dark: #050505;
    --glass-bg: rgba(20, 20, 20, 0.45);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    
    --text-main: #f0f0f0;
    --text-dim: #999;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin:0; padding:0; box-sizing:border-box; }

body { 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
    font-family: 'Inter', sans-serif; 
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

html { scroll-behavior: smooth; /* Améliore le rendu des polices pendant le mouvement */ text-rendering: optimizeLegibility;}

/* ============================================================
   1. AMBIANCE & GLASSMORPHISM
============================================================ */
.ambient-glow {
    position: absolute; border-radius: 50%; filter: blur(140px); z-index: -1; pointer-events: none; opacity: 0.5;
}
.glow-1 { top: 5%; left: -15%; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(197,160,89,0.12) 0%, transparent 70%); }
.glow-2 { top: 50%; right: -15%; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%); }

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(197, 160, 89, 0.7);
    box-shadow: var(--glass-shadow);
    border-radius: 24px;
	will-change: transform, opacity;
    /* Empêche le scintillement sur certains navigateurs */
    backface-visibility: hidden;
}

/* ============================================================
   2. HEADER & NAV
============================================================ */
.minimal-nav {
    position: fixed; width: 100%; top: 0; left: 0; height: 80px; 
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; z-index: 1000; 
    border-radius: 0; border-top: none; border-left: none; border-right: none;
}
.logo { font-family: 'Playfair Display'; font-size: 1.2rem; letter-spacing: 4px; color: white; text-decoration: none; font-weight: 600; z-index: 1001; }
.logo span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.nav-links { display: flex; align-items: center; gap: 25px; }
.nav-links a { text-decoration: none; color: #ccc; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; }
.nav-links a:hover { color: white; text-shadow: 0 0 10px var(--gold-glow); }

.cta-btn {
    background: var(--gold-gradient); color: #000 !important; padding: 10px 24px; border-radius: 30px; 
    font-weight: 600; transition: transform 0.3s, box-shadow 0.3s; border: none; cursor: pointer;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px var(--gold-glow); }

.menu-toggle { display: none; flex-direction: column; justify-content: space-between; width: 30px; height: 20px; background: transparent; border: none; cursor: pointer; z-index: 1001; }
.menu-toggle span { width: 100%; height: 2px; background-color: var(--gold); transition: 0.3s; }

/* ============================================================
   3. HERO SECTION
============================================================ */
.hero-clean { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-video { position: absolute; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; mix-blend-mode: luminosity; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3), #00000038); }
.hero-inner { position: relative; text-align: center; z-index: 2; padding: 0 20px; }
.eyebrow { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 6px; color: var(--gold); display: block; margin-bottom: 20px; }
.glow-text { text-shadow: 0 0 20px rgba(197, 160, 89, 0.4); }
h1 { font-family: 'Playfair Display'; font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; font-weight: 500; }
h1 em { font-style: italic; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.scroll-indicator { position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%); }
.mouse { width: 24px; height: 36px; border: 2px solid rgba(197, 160, 89, 0.7); border-radius: 12px; position: relative; }
.mouse::before { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; background: var(--gold); border-radius: 50%; animation: scroll 2s infinite; }
.scroll-indicator:hover { cursor: pointer; }
@keyframes scroll { 0% { top: 6px; opacity: 1; } 100% { top: 20px; opacity: 0; } }

/* ============================================================
   4. LAYOUT GLOBAL
============================================================ */
.container-premium { max-width: 1200px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 2; }
.section-box { margin-bottom: 200px; padding-top: 80px; }
.num { font-family: 'Playfair Display'; font-size: 1.2rem; color: var(--gold); display: block; margin-bottom: 15px; opacity: 0.8; }
.section-title { font-family: 'Playfair Display'; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; font-weight: 400; line-height: 1.2; }
.section-title span { font-style: italic; color: #c5a059; }
.center-head { text-align: center; margin-bottom: 60px; display: flex; flex-direction: column; align-items: center; margin-top: 80px; }
.center-head-process { text-align: center; margin-bottom: 60px; display: flex; flex-direction: column; align-items: center; margin-top: 40px; }
.center-head-faq { text-align: center; margin-bottom: 200px; display: flex; flex-direction: column; align-items: center; margin-top: 60px; }


/* ============================================================
   5. EXPERTISE GRID (01)
============================================================ */
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 170px; }
.desc { color: #e1e1e1; line-height: 1.8; margin-bottom: 35px; font-size: 1.05rem; }
.check-list { list-style: none; color: #e1e1e1; }
.check-list li { margin-bottom: 15px; position: relative; padding-left: 30px; font-weight: 300; }
.check-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; top: 3px; }
.img-frame { position: relative; padding: 12px; }
.img-frame img { width: 100%; display: block; border-radius: 16px; position: relative; z-index: 2; }
.frame-glow { position: absolute; inset: -5px; background: var(--gold-gradient); filter: blur(25px); opacity: 0.15; z-index: 1; border-radius: 24px; transition: 0.5s; }
.img-frame:hover .frame-glow { opacity: 0.70; }

/* ============================================================
   6. BENTO GRID PRESTATIONS (02)
============================================================ */
.bento-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    grid-auto-rows: 280px; 
    gap: 24px; 
}

.bento-item { 
    position: relative; padding: 40px; overflow: hidden; transition: all 0.5s var(--ease); 
    display: flex; flex-direction: column; justify-content: flex-end;
}
.bento-item::before { content: ''; position: absolute; inset: 0; background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),  rgb(197 160 89 / 64%), transparent 40%); opacity: 0; transition: opacity 0.5s; z-index: 0; pointer-events: none; }
.bento-item:hover::before { opacity: 1; }
.bento-item:hover { transform: translateY(-10px); border-color: rgba(197, 160, 89, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.1); z-index: 10; }

.bento-item.ppf { grid-column: span 2; grid-row: span 2; background: linear-gradient(45deg, #c5a05942, #151515); }
.bento-item.covering { grid-column: span 2; grid-row: span 1; background: linear-gradient(45deg, #c5a05942, #151515); }
.bento-item.ceramic { grid-column: span 2; grid-row: span 1; background: linear-gradient(45deg, #c5a05942, #151515); }
.bento-item.detailing { grid-column: span 2; grid-row: span 1; background: linear-gradient(45deg, #c5a05942, #151515); }
.bento-item.tint { grid-column: span 1; grid-row: span 1; background: linear-gradient(45deg, #c5a05942, #151515); }
.bento-item.ad { grid-column: span 1; grid-row: span 1; background: linear-gradient(45deg, #c5a05942, #151515); }



.bento-content { position: relative; z-index: 2; }
.bento-tag { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: #000; background: var(--gold-gradient); padding: 6px 14px; border-radius: 20px; width: fit-content; margin-bottom: 20px; display: block; font-weight: 600; }
.bento-item h3 { font-family: 'Playfair Display'; font-size: clamp(1.3rem, 2vw, 2rem); margin-bottom: 10px; font-weight: 400; line-height: 1.2; }
.bento-item p { color: #e1e1e1; line-height: 1.5; font-size: 0.95rem; }

.bento-details { max-height: 0; opacity: 0; overflow: hidden; transition: 0.5s var(--ease); display: flex; flex-direction: column; align-items: flex-start; }
.bento-item:hover .bento-details { max-height: 250px; opacity: 1; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.bento-number { position: absolute; top: 20px; right: 25px; font-size: 6rem; opacity: 0.03; font-family: 'Playfair Display'; transition: 0.5s; z-index: 1; pointer-events: none; }
.bento-item:hover .bento-number { opacity: 0.08; color: var(--gold); transform: scale(1.1); }

/* NOUVEAU BOUTON BENTO */
.bento-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 24px;
    border: 1px solid var(--gold);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.3);
}
.bento-btn:hover {
    background: var(--gold);
    color: #000;
}

/* ============================================================
   7. PROCESSUS ATELIER & EXPERTISE (03 & 04)
============================================================ */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.p-step { position: relative; padding: 40px 30px; text-align: center; transition: 0.4s; overflow: hidden; }
.p-step::before { content: ''; position: absolute; inset: 0; background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),  rgb(197 160 89 / 64%), transparent 40%); opacity: 0; transition: opacity 0.5s; z-index: 0; pointer-events: none; }
.p-step:hover::before { opacity: 1; }
.p-step:hover { transform: translateY(-10px); border-color: rgba(197, 160, 89, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.1); z-index: 10; }
.p-num { font-family: 'Playfair Display'; font-size: 4rem; color: var(--gold); position: absolute; top: -10px; left: 20px; opacity: 0.1; line-height: 1; pointer-events: none; }
.p-step h3 { font-style : italic; font-family: 'Playfair Display'; font-size: 1.3rem; margin-bottom: 15px; color: #c5a059; position: relative; z-index: 2; }
.p-step p { color: #e1e1e1; font-size: 0.9rem; line-height: 1.6; position: relative; z-index: 2; }

.services-flex { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.s-card { padding: 50px 40px; position: relative; overflow: hidden; transition: 0.5s var(--ease); }
.s-card:hover { transform: translateY(-10px) scale(1.02); border-color: rgba(197, 160, 89, 0.4); }
.s-icon { color: var(--gold); font-size: 0.8rem; letter-spacing: 4px; margin-bottom: 25px; font-weight: 600; display: inline-block; }
.s-card h3 { font-family: 'Playfair Display'; font-size: 1.6rem; margin-bottom: 20px; font-weight: 400; color: #fff; }
.s-card p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; }
.card-glow { position: absolute; bottom: -50px; right: -50px; width: 150px; height: 150px; background: var(--gold); filter: blur(80px); opacity: 0; transition: 0.5s; pointer-events: none; }
.s-card:hover .card-glow { opacity: 0.2; }

/* ============================================================
   8. PORTFOLIO CAROUSEL (05)
============================================================ */
.box-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; margin-top: 150px; }
.modern-filters { display: flex; align-items: center; }
.filter-btn { background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 0.75rem; letter-spacing: 2px; transition: 0.3s; font-weight: 500; text-transform: uppercase; font-family: 'Inter', sans-serif; }
.filter-btn.active, .filter-btn:hover { color: var(--gold); text-shadow: 0 0 10px rgba(197,160,89,0.5); }
.sep { color: var(--glass-border); margin: 0 15px; }

.modern-carousel-wrapper { height: 450px; display: flex; gap: 20px; width: 100%; }
.modern-track { display: flex; width: 100%; gap: 20px; height: 100%; }
.m-slide { flex: 1; position: relative; overflow: hidden; transition: all 0.8s var(--ease); cursor: pointer; min-width: 0; }
.m-slide.expanded { flex: 4; box-shadow: 0 20px 50px rgba(0,0,0,0.8); border-color: var(--gold-glow); }
.m-slide img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.8) brightness(0.5); transition: 0.8s; }
.m-slide.expanded img { filter: grayscale(0) brightness(1); transform: scale(1.05); }
.m-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%); opacity: 0; transition: 0.5s; }
.m-slide.expanded .m-overlay { opacity: 1; }

.m-content { position: absolute; bottom: 0; left: 0; padding: 40px; transform: translateY(40px); opacity: 0; transition: 0.6s var(--ease); width: 100%; }
.m-slide.expanded .m-content { transform: translateY(0); opacity: 1; }
.m-content h3 { font-family: 'Playfair Display'; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 5px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-content p { color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 25px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.m-btn { display: inline-block; padding: 10px 24px; border: 1px solid var(--gold); color: white; text-decoration: none; font-size: 0.8rem; letter-spacing: 1px; border-radius: 30px; transition: 0.3s; background: rgba(0,0,0,0.3); backdrop-filter: blur(5px); }
.m-btn:hover { background: var(--gold); color: black; }

/* ============================================================
   9. FAQ ACCORDÉON (06)
============================================================ */
.faq-container { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { overflow: hidden; transition: all 0.4s var(--ease); border-left: 4px solid transparent; }
.faq-item:hover { transform: translateX(5px); border-color: rgba(255,255,255,0.1); }
.faq-item.active { border-color: var(--gold); transform: translateX(10px); box-shadow: -10px 10px 30px rgba(0,0,0,0.5); background: rgba(30,30,30,0.6); }

.faq-question { padding: 25px 30px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Playfair Display'; font-size: 1.25rem; font-weight: 400; color: #fff; user-select: none; }
.faq-question::after { content: '+'; color: var(--gold); font-size: 2rem; font-family: 'Inter', sans-serif; font-weight: 300; transition: transform 0.5s var(--ease); line-height: 1; }
.faq-item.active .faq-question::after { transform: rotate(135deg); color: #fff; }

.faq-answer { max-height: 0; padding: 0 30px; opacity: 0; transition: all 0.5s var(--ease); }
.faq-answer p { color: var(--text-dim); line-height: 1.7; padding-bottom: 25px; font-size: 0.95rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
.faq-item.active .faq-answer { max-height: 400px; opacity: 1; }

/* ============================================================
   10. TRUST GRID & SEO (07 & 08)
============================================================ */
.trust-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; }
.small-tag { margin-left : 55px;  color: var(--gold); font-size: 1rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 30px; display: block; }

.partners-block { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.logos { display: flex; gap: 30px; /*filter: grayscale(1) opacity(0.5);*/ flex-wrap: wrap; align-items: center; }
.logos img { height: 40px; object-fit: contain; transition: 0.3s; }
/*.logos img:hover { filter: grayscale(0) opacity(1); }*/
 img.imbretex { filter: brightness(10);  height: 50px; margin-top: 16px;}
  img.castore {filter: brightness(10); margin-left: 18px; height: 75px; }
  img.avery {/*filter: brightness(10)*/; margin-left: 38px; height: 50px; }
  img.troism { margin-left: 23px;  }
  img.xpel { margin-left: 35px;  }

.testimonials { padding: 50px; position: relative; display: flex; align-items: center; }
#reviews-container { width: 100%; transition: opacity 0.5s; min-height: 120px; }
.testi-item p { font-family: 'Playfair Display'; font-style: italic; font-size: clamp(1.4rem, 2vw, 1.8rem); margin-bottom: 20px; line-height: 1.4; font-weight: 300; color: #fff; }
.testi-item cite { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; font-style: normal; }

.progress-bar-container { width: 100%; height: 2px; background: var(--glass-border); position: absolute; bottom: 0; left: 0; border-radius: 0 0 24px 24px; overflow: hidden; }
#review-progress { width: 0%; height: 100%; background: var(--gold-gradient); }

/* ============================================================
   11. FOOTER & SOCIALS
============================================================ */
.footer-clean { text-align: center; padding: 40px; color: var(--text-dim); font-size: 0.85rem; }
.footer-clean a:hover { color: var(--gold) !important; }

.social-sticky { position: fixed; right: 1100px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: row; gap: 35px; z-index: 999; }
.social-sticky a { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; color: white; border-radius: 50%; transition: 0.4s var(--ease); }
.social-sticky a svg { width: 22px; height: 22px; }
.social-sticky a:hover { color: var(--gold); transform: translateX(-5px) scale(1.1); border-color: var(--gold); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }

/* ============================================================
   12. ANIMATIONS & REVEAL
============================================================ */
.reveal { opacity: 0; transform: translateY(40px) scale(0.98); transition: all 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ============================================================
   RESPONSIVE & MOBILE OPTIMIZATION
============================================================ */

@media (max-width: 950px) {
    .expertise-grid, .trust-grid { grid-template-columns: 1fr; gap: 40px; }
    .expertise-visual { order: -1; }
}

@media (max-width: 768px) {
    /* 1. Espacements globaux et typographie */
    .section-box { margin-bottom: 70px; padding-top: 60px; }
    .hero-clean { height: 80vh; }
    h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
    .section-title { font-size: 1.8rem; margin-bottom: 25px; }
    
    /* 2. Menu Mobile - Plein écran & Animation du Hamburger */
    .menu-toggle { display: flex; z-index: 1005; }
    /* Transformation du burger en croix */
    .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .nav-links { 
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh; 
        background: rgba(5,5,5,0.98); backdrop-filter: blur(20px); 
        flex-direction: column; justify-content: center; align-items: center; 
        gap: 30px; transform: translateX(100%); transition: transform 0.4s var(--ease);
        z-index: 1000;
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links a { margin: 0; font-size: 1.2rem; }

    /* 3. Portfolio Mobile */
    .box-header-row { flex-direction: column; align-items: flex-start; gap: 15px; margin-bottom: 30px; }
    .modern-filters { display: flex; overflow-x: auto; white-space: nowrap; width: 100%; gap: 10px; padding-bottom: 5px; border: none; background: transparent; padding-left: 0; }
    .modern-filters::-webkit-scrollbar { display: none; }
    .sep { display: none; }

    .modern-carousel-wrapper { 
        height: 400px; overflow-x: auto; scroll-snap-type: x mandatory; 
        scrollbar-width: none; padding-bottom: 10px;
    }
    .modern-carousel-wrapper::-webkit-scrollbar { display: none; }
    .modern-track { flex-direction: row; width: max-content; padding: 0 5vw; gap: 15px; }
    .m-slide { flex: 0 0 85vw; height: 100%; scroll-snap-align: center; transform: scale(0.95); opacity: 0.8; }
    .m-slide.expanded { transform: scale(1); opacity: 1; border-color: var(--gold); }
    .m-slide img { filter: grayscale(0%) brightness(0.8); }
    .m-overlay { opacity: 1; }
    .m-content { opacity: 1; transform: translateY(0); padding: 20px; }
    .m-content h3 { font-size: 1.3rem; white-space: normal; margin-bottom: 10px; }
    .m-content p { white-space: normal; font-size: 0.75rem; margin-bottom: 15px; }

    /* 4. Bento Mobile */
    .bento-grid {
        display: flex; flex-direction: column; gap: 15px;
        margin-top: 30px;
    }
    .bento-item, .bento-item.ppf, .bento-item.covering, .bento-item.tint, .bento-item.ad {
        height: auto !important; min-height: 180px; padding: 25px 20px; transform: none !important;
    }
    .bento-item h3 { font-size: 1.3rem; }
    .bento-item p { font-size: 0.85rem; max-width: 100%; margin-bottom: 0; }
    .bento-details { max-height: 0; opacity: 0; transition: all 0.4s var(--ease); }
    .bento-item.active .bento-details { max-height: 400px; opacity: 1; margin-top: 15px; }
    .bento-number { font-size: 3rem; top: 15px; right: 15px; opacity: 0.05; }

    /* 5. Ajustements finaux (Partenaires, Avis, Sociaux) */
    .trust-grid { padding-top: 50px; gap: 30px; margin-bottom: 60px; }
    .glass { padding: 30px 20px; }
    .logos { gap: 20px; justify-content: center; }
    .social-sticky { position: static; flex-direction: row; justify-content: center; margin: 30px 0; transform: none; }
    .footer-clean { padding: 40px 20px; }
}

/* ============================================================
   AJOUTS RESPONSIVE MOBILE + FIXES UX
============================================================ */

/* Empêche le scroll quand menu ouvert */
.no-scroll {
    overflow: hidden;
}

/* Fix overflow horizontal */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* HERO optimisation mobile (CORRIGÉ - vidéo conservée) */
@media (max-width: 768px) {

    .hero-video {
        display: block; /* on garde la vidéo */
        object-fit: cover;
        width: 100%;
        height: 100%;
        opacity: 0.5;
    }

    .hero-clean {
        height: 75vh; /* un peu plus compact mobile */
    }

    /* fallback si vidéo lente (optionnel mais pro) */
    /*	.hero-clean::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('Images/locaux.jpg') center/cover no-repeat;
        z-index: 0;
        opacity: 0.3;
    }*/

    .hero-overlay {
        z-index: 1;
    }

    .hero-inner {
        z-index: 2;
    }
}

/* Bento interaction mobile */
@media (max-width: 768px) {
    .bento-item.active .bento-details {
        max-height: 400px;
        opacity: 1;
        margin-top: 15px;
    }
}

/* Social sticky amélioré mobile */
@media (max-width: 768px) {
    .social-sticky {
        position: fixed;
        /*bottom: 15px;*/
        right: 70px;
        top: auto;
        flex-direction: row;
        gap: 10px;
    }
	
	.social-sticky a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    transition: 0.4s var(--ease);
	}
	
	.logos { display: flex; gap: 30px; /*filter: grayscale(1) opacity(0.5);*/ flex-wrap: wrap; align-items: center; }
.logos img { height: 40px; object-fit: contain; transition: 0.3s; }
/*.logos img:hover { filter: grayscale(0) opacity(1); }*/
 img.imbretex { filter: brightness(10);  height: 50px; margin-top: 16px;}
  img.castor {filter: brightness(10); margin-left: 18px; height: 75px; }
  img.avery {/*filter: brightness(10)*/; margin-left: 38px; height: 50px; }
  img.troism { margin-left: 23px;  }
  img.xpel { margin-left: -15px;  }
  .small-tag { margin-left : 65px;  color: var(--gold); font-size: 1rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 30px; display: block; }
	
}

/* Carousel mobile */
@media (max-width: 768px) {
    .m-slide {
        border-radius: 16px;
    }
}

