/* ================================================================
   DESIGN SYSTEM V6 — LOGO Enseigne
   Light theme · Brand gradient · Awwwards-level
   ================================================================ */
:root {
    --grad: linear-gradient(135deg, #B01D2C 0%, #7B1FA2 50%, #2E289D 100%);
    --grad-h: linear-gradient(90deg, #B01D2C 0%, #7B1FA2 50%, #2E289D 100%);
    --grad-anim: linear-gradient(135deg, #B01D2C 0%, #7B1FA2 40%, #2E289D 70%, #B01D2C 100%);
    --red: #B01D2C; --purple: #7B1FA2; --blue: #2E289D;
    --bg: #FFFFFF; --bg-subtle: #F8F8FA; --bg-muted: #F1F1F5;
    --bg-dark: #0A0A0F; --bg-dark-card: #151519; --bg-dark-card-h: #1C1C22;
    --text: #0A0A0F; --text-sec: #4A4A63; --text-muted: #8E8EA0;
    --text-inv: #FFFFFF; --text-inv-muted: rgba(255,255,255,0.6);
    --border: #E5E5EC; --border-light: #F0F0F6;
    --border-dark: rgba(255,255,255,0.08);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 80px rgba(0,0,0,0.10);
    --shadow-glow: 0 8px 40px rgba(176,29,44,0.15);
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Syne Mono', monospace;
    --font-body: 'Inter', system-ui, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --section-py: clamp(100px, 12vw, 160px);
    --container: 1200px;
    --container-wide: 1400px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 8px;
    --radius-pill: 9999px;
}

/* Desktop : espaces inter-sections resserrés sur la homepage */
@media (min-width: 1024px) {
    #page-accueil .section { padding-top: clamp(70px, 7vw, 100px); padding-bottom: clamp(70px, 7vw, 100px); }
    #page-accueil .featured-section { padding-top: 80px; padding-bottom: 80px; }
    #page-accueil .cta-section { padding-top: 80px; padding-bottom: 80px; }
}

/* ================================================================ HEADER TOPBAR */
.header-topbar {
    position: fixed; top: 0; left: 0; right: 0;
    background: var(--grad); color: rgba(255,255,255,0.85); font-size: 12.5px;
    padding: 6px 24px; z-index: 10002;
    transition: transform 0.45s cubic-bezier(0.7, 0, 0.2, 1), opacity 0.35s ease;
}
/* Homepage : conserver le fond sombre sur la topbar */
.page-accueil .header-topbar { background: var(--bg-dark); color: rgba(255,255,255,0.7); }
.header-topbar.header-hidden {
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
}
.header-topbar-inner {
    max-width: var(--container); margin: 0 auto;
    display: flex; align-items: center; justify-content: center; gap: 32px;
}
.topbar-hours, .topbar-phone { display: inline-flex; align-items: center; gap: 6px; }
.topbar-phone { color: rgba(255,255,255,0.9); font-weight: 500; transition: color 0.25s ease; }
.topbar-phone:hover { color: #fff; }
.topbar-badge-france {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 2px 10px; background: rgba(255,255,255,0.1); border-radius: var(--radius-pill);
    font-weight: 600; font-size: 11.5px; color: rgba(255,255,255,0.9);
}
@media (max-width: 768px) {
    .header-topbar-inner { gap: 16px; font-size: 11px; }
    .topbar-hours { display: none; }
}

/* ================================================================ RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-body); font-size: 16px; line-height: 1.7;
    color: var(--text); background: var(--bg); overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
input, textarea, select { font-family: inherit; font-size: 16px; }

/* ================================================================ CUSTOM CURSOR — REMOVED */

/* ================================================================ SCROLL PROGRESS */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px;
    background: var(--grad-h); z-index: 100001; width: 0%; will-change: width;
}

/* ================================================================ PAGE TRANSITION OVERLAY */
.page-transition-overlay {
    position: fixed; inset: 0; z-index: 100000;
    background: var(--grad); pointer-events: none;
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.6s cubic-bezier(0.77,0,0.175,1);
    opacity: 0.92;
}
.page-transition-overlay.active {
    clip-path: circle(150% at 50% 50%);
}

/* ================================================================ HEADER */
.site-header {
    position: fixed; top: 30px; left: 0; right: 0; z-index: 10001;
    padding: 0 clamp(20px, 4vw, 48px); height: 72px;
    display: flex; align-items: center;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease,
                transform 0.45s cubic-bezier(0.7, 0, 0.2, 1), opacity 0.35s ease;
}
.site-header.header-hidden {
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

/* Header transparent — homepage hero (avant scroll) */
.page-accueil .site-header:not(.scrolled) { background: transparent; }
.page-accueil .site-header:not(.scrolled) .logo-main { color: #fff; }
.page-accueil .site-header:not(.scrolled) .logo-sub { color: rgba(255,255,255,0.7); }
.page-accueil .site-header:not(.scrolled) .main-nav a { color: rgba(255,255,255,0.75); }
.page-accueil .site-header:not(.scrolled) .main-nav a:hover,
.page-accueil .site-header:not(.scrolled) .main-nav a.active { color: #fff; }
.page-accueil .site-header:not(.scrolled) .btn-cart { color: #fff; border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); }
.page-accueil .site-header:not(.scrolled) .burger-menu span { background: #fff; }
.page-accueil .site-header:not(.scrolled) .cart-text { color: #fff; }

/* Bouton "Me faire rappeler" — suit les mêmes règles que .main-nav a */
.nav-callback-link { color: var(--text); transition: color 0.3s ease; }
.nav-callback-link:hover { color: var(--red); }
.page-accueil .site-header:not(.scrolled) .nav-callback-link { color: rgba(255,255,255,0.85); }
.page-accueil .site-header:not(.scrolled) .nav-callback-link:hover { color: #fff; }

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; max-width: var(--container-wide); margin: 0 auto;
}
.logo { display: inline-flex; align-items: baseline; gap: 0; flex-shrink: 0; text-decoration: none; }
.logo-main {
    font-family: 'Libre Franklin', 'Franklin Gothic Medium', system-ui, sans-serif; font-weight: 800;
    font-size: 24px; color: var(--text); letter-spacing: -0.02em; text-transform: uppercase;
    line-height: 1;
}
.logo-sub {
    font-family: 'Libre Franklin', 'Franklin Gothic Medium', system-ui, sans-serif; font-weight: 600;
    font-size: 15px; color: var(--text-sec); margin-left: 0; letter-spacing: 0.04em;
    line-height: 1; position: relative; top: 0;
}
/* Footer — logo blanc */
.site-footer .logo-main { color: #fff; }
.site-footer .logo-sub { color: rgba(255,255,255,0.75); }
.site-footer .logo-dot { background: #fff; }
.logo-dot {
    display: inline-block; width: 8px; height: 8px;
    border-radius: 80%; background: var(--grad);
    margin: 0 7px; position: relative; top: -3px;
}

/* Nav with animated underlines */
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
    font-family: var(--font-body); font-size: 14px; font-weight: 500;
    color: var(--text-sec); transition: color 0.25s ease; position: relative;
}
.main-nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--grad-h); border-radius: 1px;
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

/* Mega Menu */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-item-dropdown > a svg { transition: transform 0.3s ease; }
.nav-item-dropdown:hover > a svg { transform: rotate(180deg); }
.mega-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
    background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
    border: 1px solid var(--border); padding: 28px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    min-width: 380px; z-index: 10000;
}
.nav-item-dropdown:hover .mega-menu {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.mega-menu-inner { display: grid; grid-template-columns: 1fr; gap: 0; }
.mega-col-highlight { display: none; }
.mega-col-title {
    font-family: var(--font-display); font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted);
    margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.mega-badge {
    padding: 2px 8px; background: var(--grad); color: #fff;
    font-size: 10px; border-radius: var(--radius-pill); font-weight: 700; letter-spacing: 0.04em;
}
.mega-item {
    display: flex; align-items: center; gap: 12px; padding: 10px 12px;
    border-radius: var(--radius); transition: background 0.2s ease; cursor: pointer;
}
.mega-item:hover { background: var(--bg-subtle); }
.mega-icon {
    width: 40px; height: 40px; border-radius: 10px; background: var(--bg-subtle);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mega-item:hover .mega-icon { background: var(--bg-muted); }
.mega-item div { display: flex; flex-direction: column; }
.mega-item strong { font-size: 14px; font-weight: 600; color: var(--text); }
.mega-item span { font-size: 12px; color: var(--text-muted); }
.mega-col-highlight {
    background: var(--bg-subtle); border-radius: var(--radius); padding: 20px;
}
.mega-col-desc { font-size: 13px; color: var(--text-sec); margin-bottom: 16px; line-height: 1.5; }
.mega-config-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 0; font-size: 13.5px; font-weight: 500; color: var(--text);
    border-bottom: 1px solid var(--border-light); transition: color 0.2s ease;
}
.mega-config-link:last-child { border-bottom: none; }
.mega-config-link:hover { color: var(--red); }
.mega-config-link svg { opacity: 0; transform: translateX(-4px); transition: all 0.2s ease; }
.mega-config-link:hover svg { opacity: 1; transform: translateX(0); }
@media (max-width: 1024px) {
    .mega-menu { display: none; }
}

.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.btn-devis {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; background: var(--bg-dark); color: var(--text-inv);
    font-size: 13.5px; font-weight: 600; border-radius: var(--radius-full);
    transition: transform 0.25s var(--ease), box-shadow 0.25s ease; white-space: nowrap;
}
.btn-devis:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-devis svg { width: 14px; height: 14px; }

.btn-whatsapp-header {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; background: #25D366; border-radius: 50%; color: #fff;
    transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.btn-whatsapp-header:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.btn-whatsapp-header svg { width: 20px; height: 20px; }

.header-phone-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13.5px; font-weight: 600; color: var(--text);
    padding: 8px 16px; border-radius: var(--radius-pill);
    border: 1px solid var(--border); transition: all 0.3s ease;
    white-space: nowrap;
}
.header-phone-link:hover { border-color: var(--red); color: var(--red); }
.header-phone-link svg { flex-shrink: 0; }
@media (max-width: 1024px) { .header-phone-link { display: none; } }

/* Hamburger / Burger Menu */
.hamburger, .burger-menu { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; cursor: pointer; }
.hamburger span, .burger-menu span {
    display: block; height: 2px; background: var(--text);
    border-radius: 1px; transition: transform 0.35s var(--ease), opacity 0.25s ease; transform-origin: center;
}
.hamburger.open span:nth-child(1), .burger-menu.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2), .burger-menu.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3), .burger-menu.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
    position: fixed; top: 0; right: 0; width: min(380px, 85vw);
    height: 100vh; height: 100dvh; background: var(--bg);
    z-index: 10001; padding: 100px 32px 40px;
    transform: translateX(100%); transition: transform 0.5s var(--ease);
    display: flex; flex-direction: column; gap: 8px;
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-header {
    display: flex; align-items: center; justify-content: flex-end;
    position: absolute; top: 0; left: 0; right: 0;
    padding: 20px 24px; z-index: 2;
}
.close-drawer {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg-muted); border: none; cursor: pointer;
    font-size: 24px; color: var(--text); line-height: 1;
    transition: background 0.3s ease, color 0.3s ease;
}
.close-drawer:hover { background: var(--red); color: #fff; }
.mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.3);
    z-index: 10000; opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-drawer a {
    font-family: var(--font-display); font-size: 22px; font-weight: 700;
    color: var(--text); padding: 12px 0; border-bottom: 1px solid var(--border-light);
    transition: color 0.25s ease;
}
.mobile-drawer a:hover { color: var(--red); }
.mobile-drawer-btns { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.mobile-drawer-btns .btn-devis { justify-content: center; padding: 14px 24px; font-size: 15px; }
.mobile-drawer-btns .btn-wa-mobile {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 24px; background: #25D366; color: #fff;
    border-radius: var(--radius-full); font-size: 15px; font-weight: 600;
}

/* Floating WhatsApp */
.whatsapp-float {
    display: flex; position: fixed; bottom: 24px; right: 24px;
    width: 56px; height: 56px; background: #25D366; border-radius: 50%;
    align-items: center; justify-content: center; color: #fff; z-index: 9999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    animation: logocom_floatPulse 2s ease-in-out infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; }
@keyframes logocom_floatPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }

@media (max-width: 1024px) {
    .main-nav { display: none; }
    .hamburger, .burger-menu { display: flex; }
    .whatsapp-float { display: flex; }
    .btn-whatsapp-header { display: none; }
}
@media (max-width: 640px) { .btn-devis-desktop { display: none; } }

/* ================================================================ CART BUTTON HEADER */
.btn-cart {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    height: 40px; padding: 0 16px;
    border-radius: var(--radius-pill); border: 1px solid var(--border);
    background: var(--bg); color: var(--text-sec);
    font-family: var(--font-body); font-size: 13px; font-weight: 600;
    transition: all 0.3s ease; cursor: pointer; white-space: nowrap;
}
@media (pointer: coarse) { .btn-cart { cursor: auto; } }
.btn-cart:hover { border-color: var(--red); color: var(--red); box-shadow: var(--shadow-md); }
.btn-cart svg { width: 18px; height: 18px; flex-shrink: 0; }
.cart-text { display: inline; }
@media (max-width: 640px) { .cart-text { display: none; } .btn-cart { width: 40px; padding: 0; border-radius: 50%; } }
.cart-badge {
    position: absolute; top: -4px; right: -4px;
    min-width: 18px; height: 18px; padding: 0 5px;
    background: var(--grad); color: #fff;
    font-family: var(--font-mono); font-size: 10px; font-weight: 700;
    border-radius: var(--radius-pill); line-height: 18px; text-align: center;
    border: 2px solid var(--bg);
    animation: logocom_cartPop 0.35s var(--ease-spring);
}
.cart-badge.empty { display: none; }
@keyframes logocom_cartPop { 0%{transform:scale(0)} 60%{transform:scale(1.2)} 100%{transform:scale(1)} }
.mobile-drawer .btn-cart-mobile {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-display); font-size: 22px; font-weight: 700;
    color: var(--text); padding: 12px 0; border-bottom: 1px solid var(--border-light);
    transition: color 0.25s ease; position: relative;
}
.mobile-drawer .btn-cart-mobile:hover { color: var(--red); }
.mobile-drawer .btn-cart-mobile svg { width: 24px; height: 24px; }
.mobile-drawer .btn-cart-mobile .cart-badge-inline {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 22px; height: 22px; padding: 0 6px;
    background: var(--grad); color: #fff;
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    border-radius: var(--radius-pill); margin-left: auto;
}

/* ================================================================ PAGE MON-DEVIS (SPA) */
.devis-page-breadcrumb {
    max-width: var(--container); margin: 0 auto;
    padding: 28px clamp(20px, 4vw, 48px) 0;
}
.devis-breadcrumb-list {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-muted);
}
.devis-breadcrumb-list a { color: var(--text-muted); transition: color 0.2s ease; }
.devis-breadcrumb-list a:hover { color: var(--text); }
.devis-breadcrumb-sep { opacity: 0.4; }
.devis-breadcrumb-current { color: var(--text); font-weight: 600; }
.devis-page-hero {
    max-width: var(--container); margin: 0 auto;
    padding: 12px clamp(20px, 4vw, 48px) 0;
}
.devis-page-hero h2 {
    font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px);
    font-weight: 800; letter-spacing: -0.03em; color: var(--text); line-height: 1.15;
}
.devis-page-hero .title-gradient { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.devis-hero-sub { font-size: 15px; color: var(--text-sec); margin-top: 6px; }
.devis-hero-sub .items-count { font-family: var(--font-mono); font-weight: 600; color: var(--text); }

/* Layout 2 colonnes */
.devis-layout {
    max-width: var(--container); margin: 0 auto;
    padding: 32px clamp(20px, 4vw, 48px) 80px;
    display: grid; grid-template-columns: 1fr 420px; gap: 32px; align-items: start;
}
@media (max-width: 1024px) { .devis-layout { grid-template-columns: 1fr; gap: 24px; } }

/* Empty state */
.devis-empty-wrap { max-width: var(--container); margin: 0 auto; padding: 32px clamp(20px, 4vw, 48px) 80px; }
#logocom-cart-empty { display: none; }
.devis-empty {
    background: var(--bg); border: 2px dashed var(--border); border-radius: var(--radius-lg);
    padding: 80px 40px; text-align: center;
}
.devis-empty-icon {
    width: 80px; height: 80px; margin: 0 auto 24px;
    background: var(--bg-muted); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.devis-empty-icon svg { width: 36px; height: 36px; color: var(--text-muted); }
.devis-empty h3 {
    font-family: var(--font-display); font-size: 22px; font-weight: 700;
    color: var(--text); margin-bottom: 8px; letter-spacing: -0.02em;
}
.devis-empty p { font-size: 15px; color: var(--text-sec); margin-bottom: 32px; max-width: 380px; margin-left: auto; margin-right: auto; }

/* Cart items */
#logocom-cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
    background: var(--bg); border-radius: var(--radius-lg); border: 1px solid var(--border-light);
    padding: 24px; display: grid; grid-template-columns: 120px 1fr auto;
    gap: 20px; align-items: start; transition: border-color 0.3s ease, box-shadow 0.3s ease; position: relative;
}
.cart-item:hover { border-color: var(--border); box-shadow: var(--shadow-md); }
.cart-item-number {
    position: absolute; top: 12px; left: 12px; width: 24px; height: 24px;
    background: var(--bg-muted); border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--text-sec);
}
.cart-item-thumb {
    width: 120px; height: 120px; border-radius: var(--radius); overflow: hidden;
    background: var(--bg-muted); flex-shrink: 0; position: relative;
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-type-badge {
    position: absolute; bottom: 8px; left: 8px; padding: 3px 10px;
    background: var(--grad); color: #fff; font-size: 10px; font-weight: 700;
    font-family: var(--font-display); border-radius: var(--radius-pill);
    letter-spacing: 0.04em; text-transform: uppercase;
}
.cart-item-details { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.cart-item-title {
    font-family: var(--font-display); font-size: 18px; font-weight: 700;
    color: var(--text); letter-spacing: -0.02em; line-height: 1.3;
}
.cart-item-text-preview {
    font-family: var(--font-mono); font-size: 13px; color: var(--purple);
    padding: 6px 12px; background: rgba(123,31,162,0.06); border-radius: var(--radius-full);
    display: inline-block; width: fit-content; letter-spacing: 0.02em;
}
.cart-item-options { display: flex; flex-wrap: wrap; gap: 8px; }
.option-badge {
    display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px;
    background: var(--bg-subtle); border: 1px solid var(--border-light);
    border-radius: var(--radius-pill); font-size: 12px; color: var(--text-sec); white-space: nowrap;
    transition: border-color 0.2s ease;
}
.option-badge:hover { border-color: var(--border); }
.option-badge-label { font-weight: 600; color: var(--text); font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; }
.option-badge-dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--border); flex-shrink: 0; }
.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; min-width: 120px; }
.cart-item-price-ht {
    font-family: var(--font-display); font-size: 22px; font-weight: 800;
    color: var(--text); letter-spacing: -0.02em; line-height: 1.2; text-align: right;
}
.cart-item-price-ttc { font-size: 13px; color: var(--text-muted); margin-top: 2px; text-align: right; }
.cart-item-price-ttc span { font-weight: 600; color: var(--text-sec); }
.btn-remove {
    display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px;
    font-size: 12px; font-weight: 500; color: var(--text-muted);
    border: 1px solid transparent; border-radius: var(--radius-full);
    transition: all 0.25s ease; cursor: pointer;
}
.btn-remove svg { width: 14px; height: 14px; }
.btn-remove:hover { color: #DC2626; background: #FEF2F2; border-color: rgba(220,38,38,0.15); }
@media (max-width: 768px) {
    .cart-item { grid-template-columns: 90px 1fr; gap: 14px; padding: 16px; }
    .cart-item-actions {
        grid-column: 1 / -1; flex-direction: row; align-items: center;
        justify-content: space-between; min-width: 0; padding-top: 12px;
        border-top: 1px solid var(--border-light);
    }
    .cart-item-thumb { width: 90px; height: 90px; }
    .cart-item-title { font-size: 16px; }
    .cart-item-price-ht { font-size: 20px; }
}
@media (max-width: 480px) {
    .cart-item { grid-template-columns: 1fr; }
    .cart-item-thumb { width: 100%; height: 160px; }
}

/* Total block */
#logocom-cart-total { background: var(--bg); border-radius: var(--radius-lg); border: 1px solid var(--border-light); padding: 24px; margin-top: 24px; }
.total-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--border-light); margin-bottom: 16px; }
.total-header-label { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-sec); text-transform: uppercase; letter-spacing: 0.06em; }
.total-header-count { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); padding: 3px 10px; background: var(--bg-muted); border-radius: var(--radius-pill); }
.total-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.total-row-label { color: var(--text-sec); }
.total-row-value { font-weight: 600; color: var(--text); font-family: var(--font-mono); font-size: 15px; }
.total-row-tva { font-size: 12px; color: var(--text-muted); }
.total-divider { height: 1px; background: var(--border-light); margin: 12px 0; }
.total-row-final { display: flex; align-items: baseline; justify-content: space-between; padding: 16px 0 4px; }
.total-row-final .total-row-label { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text); }
.total-row-final .total-row-value {
    font-family: var(--font-display); font-size: 28px; font-weight: 800; letter-spacing: -0.03em;
    background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.total-note { font-size: 12px; color: var(--text-muted); margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.total-note svg { width: 14px; height: 14px; flex-shrink: 0; color: #059669; }

/* Sidebar form (sticky) */
.devis-sidebar { position: sticky; top: 104px; }
@media (max-width: 1024px) { .devis-sidebar { position: static; } }
#logocom-checkout-form {
    background: var(--bg); border-radius: var(--radius-lg);
    border: 1px solid var(--border-light); padding: 32px 28px;
}
.devis-form-header { margin-bottom: 28px; }
.devis-form-header h3 {
    font-family: var(--font-display); font-size: 20px; font-weight: 700;
    color: var(--text); letter-spacing: -0.02em; margin-bottom: 6px;
}
.devis-form-header p { font-size: 14px; color: var(--text-sec); line-height: 1.5; }
/* Floating label — devis specific */
.devis-fg { margin-bottom: 18px; position: relative; }
.devis-fg label {
    position: absolute; left: 16px; top: 14px;
    font-size: 14px; font-weight: 400; color: var(--text-muted);
    transition: all 0.25s var(--ease); pointer-events: none;
    background: transparent; padding: 0 4px;
}
.devis-fg input:focus ~ label,
.devis-fg input:not(:placeholder-shown) ~ label,
.devis-fg textarea:focus ~ label,
.devis-fg textarea:not(:placeholder-shown) ~ label {
    top: -8px; left: 12px; font-size: 11px; font-weight: 600;
    color: var(--red); background: var(--bg);
}
.devis-fg input, .devis-fg textarea {
    width: 100%; padding: 14px 16px; border: 1.5px solid var(--border);
    border-radius: var(--radius); font-size: 16px; color: var(--text);
    background: var(--bg); transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.devis-fg input:focus, .devis-fg textarea:focus {
    outline: none; border-color: var(--red);
}
.devis-fg input:focus-visible, .devis-fg textarea:focus-visible {
    outline: 2px solid var(--red); outline-offset: 2px; border-color: transparent;
    box-shadow: 0 0 0 2px var(--red), 0 0 20px rgba(176,29,44,0.1);
}
.devis-fg textarea { resize: vertical; min-height: 100px; }
.devis-fg .input-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; padding-left: 2px; }
.devis-fg.has-error input, .devis-fg.has-error textarea { border-color: #DC2626; box-shadow: 0 0 0 2px rgba(220,38,38,0.15); }
.devis-fg .error-msg { font-size: 12px; color: #DC2626; margin-top: 4px; padding-left: 2px; display: none; }
.devis-fg.has-error .error-msg { display: block; }
.devis-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.devis-form-row .devis-fg { margin-bottom: 0; }
@media (max-width: 480px) { .devis-form-row { grid-template-columns: 1fr; gap: 18px; } }
.devis-section-label {
    font-family: var(--font-display); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted);
    margin: 24px 0 14px; display: flex; align-items: center; gap: 8px;
}
.devis-section-label::after { content: ''; flex: 1; height: 1px; background: var(--border-light); }
.devis-consent {
    display: flex; align-items: flex-start; gap: 10px;
    margin: 24px 0 20px; font-size: 13px; color: var(--text-sec); line-height: 1.5;
}
.devis-consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--red); cursor: pointer; }
.devis-consent a { color: var(--red); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.devis-consent a:hover { text-decoration-color: transparent; }
#logocom-submit-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 18px 32px; background: var(--grad); color: #fff;
    font-size: 16px; font-weight: 700; font-family: var(--font-display);
    border-radius: var(--radius); position: relative; overflow: hidden;
    transition: all 0.4s var(--ease); box-shadow: var(--shadow-glow);
    cursor: pointer; border: none; letter-spacing: -0.01em;
}
#logocom-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 60px rgba(176,29,44,0.3); }
#logocom-submit-btn:active { transform: translateY(0); }
#logocom-submit-btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    animation: logocom_shimmer 2.8s ease-in-out infinite;
}
#logocom-submit-btn svg { width: 18px; height: 18px; }
#logocom-submit-btn.is-loading { pointer-events: none; opacity: 0.85; }
#logocom-submit-btn .spinner {
    display: none; width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
    border-radius: 50%; animation: logocom_spin 0.7s linear infinite;
}
#logocom-submit-btn.is-loading .spinner { display: block; }
#logocom-submit-btn.is-loading .btn-label { display: none; }
@keyframes logocom_spin { to { transform: rotate(360deg); } }
.devis-form-trust {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-light);
}
.devis-trust-item { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text-muted); font-weight: 500; }
.devis-trust-item svg { width: 14px; height: 14px; color: #059669; }
#logocom-form-feedback {
    display: none; margin-top: 16px; padding: 16px 20px; border-radius: var(--radius);
    font-size: 14px; font-weight: 500; line-height: 1.5;
}
#logocom-form-feedback.is-success {
    display: flex; align-items: center; gap: 10px;
    background: #ECFDF5; color: #059669; border: 1px solid rgba(5,150,105,0.15);
}
#logocom-form-feedback.is-error {
    display: flex; align-items: center; gap: 10px;
    background: #FEF2F2; color: #DC2626; border: 1px solid rgba(220,38,38,0.15);
}
#logocom-form-feedback svg { width: 20px; height: 20px; flex-shrink: 0; }
/* Reassurance bar */
.devis-reassurance {
    max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px) 60px;
}
.devis-reassurance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.devis-reassurance-item {
    display: flex; align-items: center; gap: 14px; padding: 20px;
    background: var(--bg); border-radius: var(--radius);
    border: 1px solid var(--border-light); transition: border-color 0.3s ease;
}
.devis-reassurance-item:hover { border-color: var(--border); }
.devis-reassurance-icon {
    width: 44px; height: 44px; background: var(--bg-muted); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.devis-reassurance-icon svg { width: 22px; height: 22px; color: var(--purple); }
.devis-reassurance-text h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; margin-bottom: 2px; }
.devis-reassurance-text p { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
@media (max-width: 768px) { .devis-reassurance-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .devis-reassurance-grid { grid-template-columns: 1fr; } }
/* Cart item entrance */
@media (prefers-reduced-motion: no-preference) {
    .cart-item { animation: logocom_fadeSlideUp 0.5s var(--ease) both; }
    .cart-item:nth-child(1) { animation-delay: 0s; }
    .cart-item:nth-child(2) { animation-delay: 0.08s; }
    .cart-item:nth-child(3) { animation-delay: 0.16s; }
}
@keyframes logocom_fadeSlideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ================================================================ PAGES */
/* SPA rules removed — WordPress multi-page architecture, each page is always visible */
.page { display: block; min-height: 0; }

/* ================================================================ BUTTONS COMMON */
.btn-gradient {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 32px; background: var(--grad); color: #fff;
    font-size: 15px; font-weight: 600; font-family: var(--font-display);
    border-radius: var(--radius-full); position: relative; overflow: hidden;
    transition: all 0.4s var(--ease); box-shadow: var(--shadow-glow);
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 12px 50px rgba(176,29,44,0.25); }
/* Continuous shimmer */
.btn-gradient::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    animation: logocom_shimmer 2.8s ease-in-out infinite;
}
@keyframes logocom_shimmer { 0%{left:-100%} 50%{left:100%} 100%{left:100%} }
/* Ripple container */
.btn-gradient .ripple, .btn-outline .ripple, .btn-devis .ripple {
    position: absolute; border-radius: 50%; background: rgba(255,255,255,0.35);
    transform: scale(0); animation: logocom_ripple 0.6s ease-out forwards; pointer-events: none;
}
@keyframes logocom_ripple { to { transform: scale(4); opacity: 0; } }
.btn-gradient svg, .btn-outline svg { width: 16px; height: 16px; }

.btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 32px; border: 1.5px solid var(--border); color: var(--text);
    font-size: 15px; font-weight: 600; font-family: var(--font-display);
    border-radius: var(--radius-full); transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); box-shadow: var(--shadow-md); }

.btn-white {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; background: #fff; color: var(--bg-dark);
    font-size: 14.5px; font-weight: 600; border-radius: var(--radius-full);
    transition: box-shadow 0.3s ease;
}
.btn-white:hover { box-shadow: 0 8px 30px rgba(255,255,255,0.15); }

.btn-outline-white {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border: 1.5px solid rgba(255,255,255,0.2); color: #fff;
    font-size: 14.5px; font-weight: 600; border-radius: var(--radius-full);
    transition: border-color 0.3s ease;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.5); }

/* ================================================================ HERO — Expanding Accordion */
.hero-main {
    position: relative; min-height: 100vh; min-height: 100svh;
    width: 100%; display: flex; flex-direction: column; align-items: center;
    padding: 96px 24px 40px; gap: 48px;
    background: var(--bg-dark, #0A0A0F); color: #fff;
}
@media (min-width: 1024px) {
    .hero-main {
        flex-direction: row; align-items: center;
        padding: 0 40px 40px; gap: 32px;
    }
}

/* Ambient orb */
.ambient-orb {
    position: absolute; top: 30%; left: 40%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(176,29,44,0.08) 0%, rgba(123,31,162,0.04) 40%, transparent 70%);
    filter: blur(80px); pointer-events: none; z-index: 0;
    animation: logocom_orbFloat 12s ease-in-out infinite;
}
@keyframes logocom_orbFloat {
    0%,100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 20px) scale(0.95); }
}

/* Fade-up animation */
.fade-up {
    opacity: 0; transform: translateY(30px);
    animation: logocom_fadeUp 0.8s var(--ease, cubic-bezier(0.16,1,0.3,1)) forwards;
}
@keyframes logocom_fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Left content */
.hero-left { flex: 1; max-width: 100%; z-index: 10; }
@media (min-width: 1024px) { .hero-left { max-width: 560px; } }

.hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}
.hero-pill-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--red, #B01D2C);
    animation: logocom_pulse 2s ease-in-out infinite;
}
@keyframes logocom_pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

.hero-title {
    font-family: var(--font-display, 'Space Grotesk'), sans-serif;
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 800; line-height: 1.05;
    letter-spacing: -0.03em; color: #fff;
    margin-bottom: 24px;
}
.dynamic-word {
    display: inline-block;
    background: var(--grad, linear-gradient(135deg, #B01D2C, #7B1FA2, #2E289D));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    transition: opacity 0.3s ease;
}

.hero-sub {
    font-family: var(--font-body, 'Inter'), sans-serif;
    font-size: 1.1rem; color: rgba(255,255,255,0.4);
    margin-bottom: 40px; max-width: 420px; line-height: 1.7;
}

.hero-ctas { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.hero-ctas .btn-gradient {
    padding: 16px 32px; border-radius: 9999px;
    font-weight: 700; font-size: 15px; letter-spacing: 0.02em;
}

/* Trust badges */
.hero-badges {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 16px 24px; font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500;
}
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero-badge-check {
    width: 16px; height: 16px; border-radius: 50%;
    background: rgba(123,31,162,0.2);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hero-badge-check svg { width: 10px; height: 10px; }

/* Right: Showcase accordion */
.hero-right { flex: 1.5; width: 100%; z-index: 10; }

.showcase-container {
    display: flex; gap: 8px;
    height: 520px; width: 100%;
    border-radius: var(--radius, 12px);
    overflow: hidden;
}
@media (max-width: 1023px) {
    .showcase-container { height: 400px; }
}
@media (max-width: 600px) {
    .showcase-container { flex-direction: column; height: auto; gap: 6px; }
}

.showcase-item {
    position: relative; flex: 0.6;
    border-radius: var(--radius, 12px);
    overflow: hidden; cursor: pointer;
    transition: flex 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.showcase-item.active { flex: 3; }
@media (max-width: 600px) {
    .showcase-item { flex: none; height: 70px; border-radius: 10px; }
    .showcase-item.active { height: 320px; }
}

.showcase-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.showcase-item.active .showcase-bg { transform: scale(1.05); }
.showcase-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.2) 50%, rgba(10,10,15,0.1) 100%);
    z-index: 1;
}

/* Collapsed label */
.content-collapsed {
    position: absolute; inset: 0; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.35s ease;
}
.content-collapsed span {
    font-family: var(--font-display, 'Space Grotesk'), sans-serif;
    font-size: 14px; font-weight: 700; color: #fff;
    writing-mode: vertical-rl; text-orientation: mixed;
    letter-spacing: 0.08em; text-transform: uppercase;
}
@media (max-width: 600px) {
    .content-collapsed span {
        writing-mode: horizontal-tb; font-size: 13px;
    }
}
.showcase-item.active .content-collapsed { opacity: 0; pointer-events: none; }

/* Expanded content */
.content-expanded {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 32px; display: flex; flex-direction: column;
    opacity: 0; transform: translateY(15px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}
.showcase-item.active .content-expanded {
    opacity: 1; transform: translateY(0);
}
.content-expanded .sc-tag {
    font-weight: 700; letter-spacing: 0.12em; font-size: 11px;
    text-transform: uppercase; margin-bottom: 8px;
}
.content-expanded h2 {
    font-family: var(--font-display, 'Space Grotesk'), sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.875rem); font-weight: 700;
    margin-bottom: 8px; color: #fff;
}
.content-expanded p {
    font-family: var(--font-body, 'Inter'), sans-serif;
    font-size: 0.875rem; color: rgba(255,255,255,0.6);
    margin-bottom: 24px; max-width: 380px; line-height: 1.6;
}
.content-expanded .sc-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: #fff;
    text-decoration: none; width: max-content;
    transition: color 0.25s ease;
}
.sc-link:hover { color: var(--red, #B01D2C); }

/* Gradient text utility */
.text-brand-gradient {
    background: var(--grad, linear-gradient(135deg, #B01D2C, #7B1FA2, #2E289D));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ================================================================ SECTIONS COMMON */
.section { padding: var(--section-py) 24px; }
.section-dark { background: var(--bg-dark); color: var(--text-inv); }
.section-subtle { background: var(--bg-subtle); }
.container { max-width: var(--container); margin: 0 auto; }

.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--red); margin-bottom: 16px;
}
.section-dark .section-label { color: rgba(255,255,255,0.4); }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 16px;
}
.title-gradient {
    background: var(--grad-anim); background-size: 200% 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; animation: logocom_gradShift 5s ease infinite;
}
@keyframes logocom_gradShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }

.section-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--text-sec);
    max-width: 560px; line-height: 1.7;
}
.section-dark .section-sub { color: var(--text-inv-muted); }
.section-header { margin-bottom: clamp(48px, 6vw, 72px); }
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin-left: auto; margin-right: auto; }

/* Reveal */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.stagger { opacity: 0; transform: translateY(30px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.stagger.is-visible { opacity: 1; transform: translateY(0); }

/* Safety net — if JS fails, content becomes visible after 3s */
@keyframes logocom-safety-reveal {
    to { opacity: 1; transform: none; }
}
.reveal, .stagger { animation: logocom-safety-reveal 0s 3s forwards; }
.reveal.is-visible, .stagger.is-visible { animation: none; }

/* ================================================================ STATS BAR */
.stats-section { background: var(--bg-subtle); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid {
    max-width: var(--container); margin: 0 auto; padding: 56px 24px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
    content: ''; position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
    width: 1px; height: 48px; background: var(--border);
}
.stat-number {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; background: var(--grad);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1.1;
}
.stat-label { font-size: 14px; color: var(--text-sec); margin-top: 4px; }
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-item::after { display: none; }
}

/* ================================================================ PRODUCTS GRID — HOLO CARDS */
.products-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px;
    max-width: 1400px; margin: 0 auto;
}

/* Card wrapper — outer container */
.holo-card-wrap {
    position: relative; cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    will-change: transform;
}

/* Main card container with 3D perspective */
.holo-card {
    --pointer-x: 50%; --pointer-y: 50%;
    --pointer-from-center: 0;
    --pointer-from-top: 0; --pointer-from-left: 0;
    --card-opacity: 0;
    --rotate-x: 0deg; --rotate-y: 0deg;
    --background-x: 50%; --background-y: 50%;
    --card-scale: 1;
    position: relative; width: 100%;
    perspective: 600px;
}

.holo-card__rotator {
    transform-style: preserve-3d;
    transform: rotateY(var(--rotate-x)) rotateX(var(--rotate-y));
    transition: transform 0.1s ease;
}

.holo-card__front {
    position: relative;
    background: #f7f7fb;
    border: 1px solid #e8e8f0;
    border-radius: 16px; padding: 16px 16px 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 4px 16px rgba(0,0,0,0.03);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.holo-card:hover .holo-card__front {
    border-color: #d8d8e4;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 8px 32px rgba(0,0,0,0.06),
        0 20px 60px rgba(0,0,0,0.03);
}

/* The product-card class is kept for backward compatibility */
.product-card {
    position: relative;
    background: #f7f7fb;
    border: 1px solid #e8e8f0;
    border-radius: 16px; padding: 16px 16px 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    z-index: 1;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 4px 16px rgba(0,0,0,0.03);
}

.product-card:hover {
    border-color: #d8d8e4;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 8px 32px rgba(0,0,0,0.06),
        0 20px 60px rgba(0,0,0,0.03);
}

/* ---- Holographic shine overlay (V Regular style + illusion mask texture) ---- */
.holo-card__shine {
    content: '';
    position: absolute; inset: 0;
    background-image:
        url("img/illusion-mask.png"),
        url("img/grain.webp"),
        repeating-linear-gradient(0deg,
            hsl(2, 80%, 55%) calc(5% * 1),
            hsl(53, 65%, 60%) calc(5% * 2),
            hsl(93, 56%, 50%) calc(5% * 3),
            hsl(176, 54%, 49%) calc(5% * 4),
            hsl(228, 59%, 55%) calc(5% * 5),
            hsl(283, 60%, 55%) calc(5% * 6),
            hsl(2, 80%, 55%) calc(5% * 7)
        ),
        repeating-linear-gradient(
            133deg,
            #0e152e 0%,
            hsl(180, 10%, 60%) 3.8%,
            hsl(180, 29%, 66%) 4.5%,
            hsl(180, 10%, 60%) 5.2%,
            #0e152e 10%,
            #0e152e 12%
        ),
        radial-gradient(
            farthest-corner circle at var(--pointer-x) var(--pointer-y),
            hsla(0, 0%, 0%, 0.1) 12%,
            hsla(0, 0%, 0%, 0.15) 20%,
            hsla(0, 0%, 0%, 0.25) 120%
        );
    background-blend-mode: overlay, screen, hue, hard-light;
    background-size: cover, 500px 100%, 200% 700%, 300% 100%, 200% 100%;
    background-position: center, center, 0% var(--background-y), var(--background-x) var(--background-y), var(--background-x) var(--background-y);
    border-radius: 16px;
    filter: brightness(.8) contrast(2.95) saturate(.65);
    mix-blend-mode: color-dodge;
    opacity: var(--card-opacity);
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.3s ease;
}

/* ---- Glossy glare overlay (visible white halo circle at pointer) ---- */
.holo-card__glare {
    position: absolute; inset: 0;
    background-image: radial-gradient(
        farthest-corner circle at var(--pointer-x) var(--pointer-y),
        hsla(0, 0%, 100%, 0.95) 5%,
        hsla(0, 0%, 100%, 0.7) 15%,
        hsla(0, 0%, 100%, 0.3) 35%,
        hsla(0, 0%, 0%, 0.4) 80%,
        hsla(0, 0%, 0%, 0.55) 100%
    );
    border-radius: 16px;
    opacity: var(--card-opacity);
    mix-blend-mode: overlay;
    filter: brightness(1) contrast(1.5);
    pointer-events: none;
    z-index: 4;
    transition: opacity 0.3s ease;
}

/* ---- Card inner layout ---- */
.holo-card-img {
    position: relative; width: 100%; aspect-ratio: 16/10;
    border-radius: 10px; margin-bottom: 14px; overflow: hidden;
}
.holo-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: inherit;
    transition: transform 0.6s var(--ease);
}
.holo-card:hover .holo-card-img img,
.product-card:hover .holo-card-img img {
    transform: scale(1.04);
}

.product-card h3,
.holo-card__front h3 {
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    color: #0A0A0F; margin-bottom: 12px; letter-spacing: -0.01em;
    padding-bottom: 0; border-bottom: none;
    position: relative; z-index: 2;
}

/* Thin divider between title and stats */
.holo-divider {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d5d5e0 20%, #d5d5e0 80%, transparent 100%);
    margin-bottom: 12px;
    position: relative; z-index: 2;
}

/* ---- Stat bars (Minimal Luxe) ---- */
.holo-stats {
    display: flex; flex-direction: column; gap: 7px;
    margin-bottom: 16px; position: relative; z-index: 2;
}
.holo-stat-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
}
.holo-stat-label {
    font-size: 11px; font-weight: 400; color: #8E8EA0;
    min-width: 60px; font-family: var(--font-body);
    letter-spacing: 0.02em;
}
.holo-stat-bars {
    display: flex; gap: 3px; flex: 1; justify-content: flex-end;
}
.holo-stat-bar {
    width: 26px; height: 4px; border-radius: 0;
    background: #e5e5ec;
    transition: background 0.3s ease;
}
.holo-stat-bar.filled {
    background: linear-gradient(135deg, #B01D2C 0%, #7B1FA2 50%, #2E289D 100%);
}

/* ---- CTA Button (Minimal Luxe — gradient plein) ---- */
.holo-card-cta {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 11px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #B01D2C 0%, #7B1FA2 50%, #2E289D 100%);
    border: none;
    color: #fff; font-family: var(--font-body); font-size: 13px; font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.4s var(--ease);
    position: relative; z-index: 2;
    box-shadow: 0 2px 8px rgba(176,29,44,0.15);
}
.holo-card:hover .holo-card-cta,
.product-card:hover .holo-card-cta {
    box-shadow:
        0 4px 16px rgba(176,29,44,0.25),
        0 8px 32px rgba(123,31,162,0.12);
    transform: translateY(-1px);
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
}
@media (max-width: 640px) {
    .products-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
    .product-card { padding: 14px 14px 18px; }
    .holo-card__front { padding: 14px 14px 18px; }
    .holo-stat-bar { width: 26px; }
}

/* ---- Touch device overrides (hide holographic effects) ---- */
@media (pointer: coarse) {
    .holo-card__shine,
    .holo-card__glare {
        display: none;
    }
}

/* ---- Reduced motion (disable 3D transforms and shine/glare) ---- */
@media (prefers-reduced-motion: reduce) {
    .holo-card__rotator {
        transform: none;
    }
    .holo-card__shine,
    .holo-card__glare {
        display: none;
    }
}

/* ================================================================ FEATURED PRODUCTS SECTION */
.featured-section {
    padding: clamp(80px, 10vw, 140px) 24px;
    background: var(--bg, #FFFFFF);
    position: relative;
    overflow: hidden;
}

/* ═══ Grid ═══ */
.fp-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ═══ Flip Card Container ═══ */
.fp-flip-card {
    perspective: 1200px;
    height: 460px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.fp-flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s var(--ease);
    transform-style: preserve-3d;
}

.fp-flip-card:hover .fp-flip-card-inner {
    transform: rotateY(180deg);
}

/* Mobile/tablet: tap to flip */
.fp-flip-card.flipped .fp-flip-card-inner {
    transform: rotateY(180deg);
}

/* ═══ Faces communes ═══ */
.fp-flip-card-front,
.fp-flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ═══ FACE AVANT — texture aluminium anodisé noir ═══ */
.fp-flip-card-front {
    background:
        linear-gradient(115deg,
            rgba(255,255,255,0) 0%, rgba(255,255,255,0) 30%,
            rgba(255,255,255,0.07) 38%, rgba(255,255,255,0.018) 42%,
            rgba(255,255,255,0) 50%, rgba(255,255,255,0) 100%),
        linear-gradient(120deg,
            rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 20%,
            rgba(0,0,0,0.08) 45%, rgba(255,255,255,0.018) 65%,
            rgba(255,255,255,0.06) 85%, rgba(255,255,255,0.09) 100%),
        linear-gradient(180deg,
            rgba(40,38,52,1) 0%, rgba(14,12,22,1) 40%,
            rgba(10,8,18,1) 70%, rgba(20,18,30,1) 100%);
    border: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow:
        0 12px 40px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.04),
        inset 0 1px 0 rgba(255,255,255,0.12),
        inset 0 -1px 0 rgba(0,0,0,0.4);
}

/* Reflet métal haut */
.fp-flip-card-front::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(175deg,
        rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 10%,
        rgba(255,255,255,0.015) 30%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.fp-flip-card:hover .fp-flip-card-front {
    border-color: rgba(255,255,255,0.15);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.22),
        0 0 0 1px rgba(255,255,255,0.06),
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 -1px 0 rgba(0,0,0,0.4),
        0 8px 32px rgba(176,29,44,0.08);
}

/* ═══ Image area ═══ */
.fp-card-image-area {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px;
}

.fp-card-image-area::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(176,29,44,0.1) 0%, rgba(123,31,162,0.06) 40%, transparent 70%);
    z-index: 0;
    transition: transform 0.6s var(--ease);
}

.fp-flip-card:hover .fp-card-image-area::before {
    transform: scale(1.4);
}

.fp-card-image-area img {
    width: 100%; height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(176,29,44,0.1));
    transition: transform 0.5s var(--ease);
}

.fp-flip-card:hover .fp-card-image-area img {
    transform: scale(1.06);
}

/* Badge */
.fp-card-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--grad);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
    font-family: var(--font-display);
}
.fp-badge-coming {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    animation: logocom_pulse-badge 2s ease-in-out infinite;
}
@keyframes logocom_pulse-badge { 0%,100%{opacity:1;} 50%{opacity:.75;} }
.fp-coming-soon .fp-flip-card-front::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(245, 158, 11, 0.4);
    pointer-events: none;
    z-index: 3;
}

/* Flip hint */
.fp-flip-hint {
    position: absolute;
    bottom: 12px; right: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2);
    z-index: 2;
    transition: color 0.3s ease;
    font-weight: 500;
}

.fp-flip-card:hover .fp-flip-hint {
    color: rgba(176,29,44,0.7);
}

.fp-flip-hint svg {
    width: 14px; height: 14px;
    transition: transform 0.4s var(--ease);
}

.fp-flip-card:hover .fp-flip-hint svg {
    transform: rotateY(180deg);
}

/* Card front info */
.fp-card-front-info {
    padding: 0 24px 28px;
    text-align: center;
}

.fp-card-front-info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-inv);
}

.fp-card-tagline {
    font-size: 0.82rem;
    color: var(--text-inv-muted);
    line-height: 1.4;
}

/* ═══ FACE ARRIÈRE ═══ */
.fp-flip-card-back {
    background:
        linear-gradient(240deg,
            rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 20%,
            rgba(0,0,0,0.06) 45%, rgba(255,255,255,0.015) 65%,
            rgba(255,255,255,0.05) 85%, rgba(255,255,255,0.07) 100%),
        linear-gradient(180deg,
            rgba(30,28,42,1) 0%, rgba(14,12,22,1) 40%,
            rgba(10,8,18,1) 70%, rgba(22,20,34,1) 100%);
    border: 1px solid rgba(176,29,44,0.15);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow:
        0 12px 40px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.04),
        inset 0 1px 0 rgba(255,255,255,0.1),
        inset 0 -1px 0 rgba(0,0,0,0.4);
}

.fp-flip-card:hover .fp-flip-card-back {
    border-color: rgba(176,29,44,0.3);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.22),
        0 0 0 1px rgba(255,255,255,0.06),
        inset 0 1px 0 rgba(255,255,255,0.12),
        0 8px 32px rgba(176,29,44,0.12);
}

.fp-back-badge {
    display: inline-block;
    background: var(--grad);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    align-self: flex-start;
    font-family: var(--font-display);
}

.fp-back-title {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-inv);
}

.fp-back-description {
    font-size: 0.82rem;
    color: var(--text-inv-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.fp-specs-list {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.fp-specs-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.45;
}

.fp-spec-icon {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(176,29,44,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.fp-spec-icon svg {
    width: 10px; height: 10px;
    stroke: var(--red);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* CTA */
.fp-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: var(--grad);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    margin-top: 16px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
    letter-spacing: 0.01em;
    font-family: var(--font-body);
}

.fp-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.fp-card-cta svg {
    width: 16px; height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s var(--ease);
}

.fp-card-cta:hover svg {
    transform: translateX(3px);
}

/* ═══ Liseré lumineux bord supérieur ═══ */
.fp-flip-card-front::after {
    content: '';
    position: absolute;
    top: -1px; left: 5%; right: 5%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%, rgba(255,255,255,0.14) 15%,
        rgba(255,255,255,0.3) 35%, rgba(255,255,255,0.38) 50%,
        rgba(255,255,255,0.3) 65%, rgba(255,255,255,0.14) 85%,
        transparent 100%);
    border-radius: var(--radius-lg);
    pointer-events: none;
    z-index: 12;
    filter: blur(0.5px);
}

/* Liseré gradient face arrière */
.fp-flip-card-back::after {
    content: '';
    position: absolute;
    top: -1px; left: 5%; right: 5%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%, rgba(176,29,44,0.2) 15%,
        rgba(176,29,44,0.4) 35%, rgba(123,31,162,0.4) 50%,
        rgba(46,40,157,0.3) 65%, rgba(46,40,157,0.15) 85%,
        transparent 100%);
    border-radius: var(--radius-lg);
    pointer-events: none;
    z-index: 12;
    filter: blur(0.5px);
}

/* ═══ Responsive — Tablette ═══ */
@media (max-width: 1100px) {
    .fp-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 640px;
        margin: 0 auto;
    }
}

/* ═══ Carousel dots (mobile only) ═══ */
.fp-carousel-dots { display: none; }

/* ═══ Responsive — Mobile : Carousel ═══ */
@media (max-width: 600px) {
    .featured-section { padding: 60px 0; }
    .featured-section .section-header { margin-bottom: 36px; padding: 0 20px; }

    .fp-cards-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 0 20px 24px;
        max-width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .fp-cards-grid::-webkit-scrollbar { display: none; }

    .fp-flip-card {
        flex: 0 0 85vw;
        max-width: 320px;
        scroll-snap-align: center;
        height: auto;
        min-height: 0;
        perspective: none;
    }

    .fp-flip-card-inner {
        transform: none !important;
        transform-style: flat;
        height: auto;
    }

    .fp-flip-card-front,
    .fp-flip-card-back {
        position: relative;
        width: 100%;
        height: auto;
        backface-visibility: visible;
        -webkit-backface-visibility: visible;
        transform: none !important;
    }

    .fp-flip-card-front { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .fp-flip-card-back {
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        border-top: none;
        padding: 22px 20px 24px;
    }

    .fp-flip-hint { display: none; }
    .fp-back-badge { display: none; }
    .fp-card-image-area { padding: 28px 20px; }
    .fp-card-image-area img { width: 130px; height: 130px; }
    .fp-card-front-info { padding: 0 20px 20px; }
    .fp-card-front-info h3 { font-size: 1.1rem; }
    .fp-back-title { display: none; }
    .fp-back-description { font-size: 0.8rem; margin-bottom: 14px; }
    .fp-specs-list { gap: 7px; }
    .fp-specs-list li { font-size: 0.78rem; }
    .fp-card-cta { padding: 13px 16px; font-size: 0.84rem; margin-top: 14px; }
    .fp-flip-card-front::after { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
    .fp-flip-card-back::after { display: none; }

    /* Carousel dots visible */
    .fp-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding-top: 8px;
    }

    .fp-carousel-dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: #D1D1DB;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
    }

    .fp-carousel-dot.active {
        background: var(--red);
        transform: scale(1.25);
    }

    .fp-carousel-dot:focus-visible {
        outline: 2px solid var(--red);
        outline-offset: 2px;
    }
}
/* ================================================================ PROCESS — 3-phase scroll + SVG S-curve + ScrollTrigger */

/* Desktop: pinned section */
#hiw-master {
    position: relative;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark, #0A0A0F);
}
#hiw-master .hiw-bg-glow {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 45% 35% at 25% 35%, rgba(123,31,162,0.02) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 75% 65%, rgba(176,29,44,0.015) 0%, transparent 70%);
}

/* ORBIT styles */
.hiw-orbit-container {
    position: relative; width: 100%; max-width: 960px;
    aspect-ratio: 1000 / 560;
}
.hiw-orbit-svg {
    position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
    overflow: visible;
}
.hiw-orbit-dim {
    fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 2; stroke-dasharray: 8 6;
}
.hiw-orbit-glow {
    fill: none; stroke: url(#hiw-orbit-grad); stroke-width: 3;
    stroke-linecap: round;
    filter: drop-shadow(0 0 10px rgba(176,29,44,0.5)) drop-shadow(0 0 30px rgba(123,31,162,0.25));
}
/* Center element */
.hiw-orbit-center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 5;
}
.hiw-orbit-center-inner {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 18px 24px; border-radius: 16px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}
.hiw-orbit-center-inner svg { color: rgba(255,255,255,0.4); }
.hiw-orbit-center-inner span {
    font-family: var(--font-display, 'Space Grotesk'), sans-serif;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
    background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
/* Orbit steps — positioned via CSS %
   DOT is the anchor: translateX(-50%) centers horizontally on the ellipse point.
   Bottom-half steps (0,1,2): dot at top, card extends DOWN — top = dot Y position.
   Top-half steps (3,4,5): column-reverse + translateY(-100%) so dot (at bottom of flex) sits on the point. */
.hiw-orbit-step {
    position: absolute; z-index: 10; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    opacity: 0; will-change: opacity, transform;
}
.hiw-orbit-step[data-i="0"] { left: 17.1%; top: 32.1%; }
.hiw-orbit-step[data-i="1"] { left: 50%;   top: 14.3%; }
.hiw-orbit-step[data-i="2"] { left: 82.9%; top: 32.1%; }
.hiw-orbit-step[data-i="3"] { left: 82.9%; top: 67.9%; }
.hiw-orbit-step[data-i="4"] { left: 50%;   top: 85.7%; }
.hiw-orbit-step[data-i="5"] { left: 17.1%; top: 67.9%; }
/* Node (dot) */
.hiw-node {
    width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
    background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.12);
    transition: all 0.4s ease;
}
.hiw-node.is-active {
    background: #B01D2C; border-color: #B01D2C;
    box-shadow: 0 0 12px rgba(176,29,44,0.8), 0 0 30px rgba(176,29,44,0.4);
    animation: hiw-node-pulse 2s ease-in-out infinite;
}
@keyframes hiw-node-pulse { 0%,100%{ box-shadow: 0 0 12px rgba(176,29,44,0.8), 0 0 30px rgba(176,29,44,0.4); } 50%{ box-shadow: 0 0 18px rgba(176,29,44,1), 0 0 45px rgba(176,29,44,0.6); } }
/* Line (connects dot to card) */
.hiw-orbit-step .hiw-line {
    width: 2px; height: 36px;
    background: linear-gradient(to bottom, rgba(176,29,44,0.6), rgba(176,29,44,0.1));
    border-radius: 2px; transform-origin: top center;
    transform: scaleY(0); will-change: transform;
}
/* Card content */
.hiw-orbit-step .hiw-card-content {
    max-width: 175px; padding: 12px 14px; border-radius: 12px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    opacity: 0; transform: scale(0.92); will-change: opacity, transform;
}

/* Text screens */
.hiw-text-screen {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 30;
}
.hiw-text-screen h2 {
    font-family: var(--font-display, 'Space Grotesk'), sans-serif;
    font-weight: 800; text-align: center; letter-spacing: -0.025em;
}
#hiw-screen-1 h2 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    color: rgba(255,255,255,0.9);
}
#hiw-screen-1 h2 span {
    background: var(--grad, linear-gradient(135deg, #B01D2C 0%, #7B1FA2 50%, #2E289D 100%));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
#hiw-screen-2 h2 {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    color: rgba(255,255,255,0.85); line-height: 1.1;
}
#hiw-screen-2 h2 span {
    background: var(--grad, linear-gradient(135deg, #B01D2C 0%, #7B1FA2 50%, #2E289D 100%));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
#hiw-screen-2 p {
    margin-top: 20px; font-size: 1rem;
    color: rgba(255,255,255,0.25); text-align: center; max-width: 520px;
    font-family: var(--font-body, 'Inter'), sans-serif;
}
#hiw-curve-section { position: absolute; inset: 0; z-index: 10; opacity: 0; display: flex; align-items: center; justify-content: center; }

/* Orbit card row + icon + title + desc */
.hiw-orbit-step .hiw-card-row {
    display: flex; align-items: center; gap: 10px; margin-bottom: 5px;
}
.hiw-orbit-step .hiw-ic {
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,0.08); border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.025); flex-shrink: 0;
}
.hiw-orbit-step .hiw-ic svg { width: 16px; height: 16px; color: rgba(255,255,255,0.45); }
.hiw-orbit-step h3 {
    font-family: var(--font-display, 'Space Grotesk'), sans-serif;
    font-weight: 700; font-size: 0.85rem; color: #fff; line-height: 1.2;
}
.hiw-orbit-step .hiw-desc {
    font-size: 0.7rem; line-height: 1.5;
    color: rgba(255,255,255,0.3);
    font-family: var(--font-body, 'Inter'), sans-serif;
}
/* Top-half steps (0,1,2): column-reverse so dot is at bottom, translateY(-100%) anchors dot on the ellipse point */
.hiw-orbit-step[data-i="0"],
.hiw-orbit-step[data-i="1"],
.hiw-orbit-step[data-i="2"] {
    flex-direction: column-reverse;
    transform: translateX(-50%) translateY(-100%);
}
.hiw-orbit-step[data-i="0"] .hiw-line,
.hiw-orbit-step[data-i="1"] .hiw-line,
.hiw-orbit-step[data-i="2"] .hiw-line {
    background: linear-gradient(to top, rgba(176,29,44,0.6), rgba(176,29,44,0.1));
    transform-origin: bottom center;
}
/* Responsive orbit */
@media (max-width: 1199px) {
    .hiw-orbit-container { max-width: 820px; }
    .hiw-orbit-step .hiw-card-content { max-width: 155px; padding: 10px 12px; }
    .hiw-orbit-step h3 { font-size: 0.78rem; }
    .hiw-orbit-step .hiw-desc { font-size: 0.65rem; }
}
@media (max-width: 991px) {
    .hiw-orbit-container, .hiw-desktop-only { display: none !important; }
}

/* Mini label */
#hiw-mini-label { opacity: 0; }
#hiw-mini-label p {
    font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
    background: var(--grad, linear-gradient(135deg, #B01D2C 0%, #7B1FA2 50%, #2E289D 100%));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    opacity: 0.45;
}

/* ── Mobile section ── */
#hiw-mob-section {
    display: none;
    background: var(--bg-dark, #0A0A0F);
}
#hiw-mob-intro {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 0 24px;
}
#hiw-mob-intro h2 {
    font-family: var(--font-display, 'Space Grotesk'), sans-serif;
    font-size: 1.875rem; font-weight: 800; letter-spacing: -0.025em;
    text-align: center; line-height: 1.25; margin-bottom: 16px;
    color: rgba(255,255,255,0.9);
}
#hiw-mob-intro h2 span {
    background: var(--grad); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
#hiw-mob-heading {
    padding: 32px 24px 48px; text-align: center;
}
#hiw-mob-heading .hiw-mob-label {
    font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; margin-bottom: 16px;
    background: var(--grad); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text; opacity: 0.5;
}
#hiw-mob-heading h2 {
    font-family: var(--font-display, 'Space Grotesk'), sans-serif;
    font-size: 2rem; font-weight: 800; letter-spacing: -0.025em;
    margin-bottom: 12px; line-height: 1.25; color: #fff;
}
#hiw-mob-heading h2 span {
    background: var(--grad); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
#hiw-mob-heading p {
    font-size: 0.875rem; color: rgba(255,255,255,0.25);
    max-width: 280px; margin: 0 auto;
    font-family: var(--font-body, 'Inter'), sans-serif;
}
.hiw-mob-timeline {
    max-width: 340px; margin: 0 auto; padding: 0 20px 96px; position: relative;
}
.hiw-mob-timeline-line {
    position: absolute; left: 24px; top: 0; bottom: 0;
    width: 1.5px;
    background: linear-gradient(180deg, rgba(200,210,230,0.15) 0%, rgba(200,210,230,0.06) 100%);
}
.hiw-mob-step {
    position: relative; padding-left: 36px; padding-bottom: 56px;
}
.hiw-mob-step:last-child { padding-bottom: 16px; }
.hiw-mob-dot {
    position: absolute; left: 0; top: 2px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--red, #B01D2C);
    box-shadow: 0 0 8px rgba(176,29,44,0.5);
    flex-shrink: 0;
}
.hiw-mob-ic {
    width: 34px; height: 34px;
    border: 1px solid var(--border-dark, rgba(255,255,255,0.08));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.025);
}
.hiw-mob-ic svg { width: 15px; height: 15px; color: rgba(255,255,255,0.4); }
.hiw-mob-step-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.hiw-mob-step h3 {
    font-family: var(--font-display, 'Space Grotesk'), sans-serif;
    font-weight: 700; font-size: 0.95rem; color: #fff;
}
.hiw-mob-step p {
    font-size: 0.8rem; line-height: 1.65; color: rgba(255,255,255,0.3);
    font-family: var(--font-body, 'Inter'), sans-serif;
}

/* Responsive: unified #hiw-master on both, with desktop/mobile inner variants */
@media (max-width: 1023px) {
    #hiw-master { display: block; }
    #hiw-mob-section { display: none !important; }
    .hiw-desktop-only { display: none !important; }
}
@media (min-width: 1024px) {
    #hiw-mob-section { display: none; }
    .hiw-mobile-only { display: none !important; }
}

/* ── Mobile HIW — pinned timeline (matches reference) ── */
#hiw-mob-curve-section {
    position: absolute; inset: 0; z-index: 10; opacity: 0;
}
.hiw-mob-track {
    position: absolute; left: 28px; top: 15%; bottom: 15%;
    width: 2px; background: rgba(255,255,255,0.08);
    border-radius: 2px; overflow: hidden;
}
.hiw-mob-progress {
    position: absolute; top: 0; left: 0; right: 0;
    height: 0%;
    background: linear-gradient(180deg, #B01D2C 0%, #7B1FA2 50%, #2E289D 100%);
    box-shadow: 0 0 12px rgba(176,29,44,0.45);
}
.hiw-mob-curve-dot {
    position: absolute; left: 29px;
    transform: translate(-50%, -50%);
    width: 14px; height: 14px; border-radius: 50%;
    background: rgba(20,20,30,0.95);
    border: 2px solid rgba(255,255,255,0.25);
    z-index: 2;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.hiw-mob-curve-dot.is-active {
    background: var(--red, #B01D2C);
    border-color: rgba(255,255,255,0.45);
    box-shadow: 0 0 14px rgba(176,29,44,0.75), 0 0 28px rgba(123,31,162,0.35);
}
.hiw-mob-step-card {
    position: absolute; left: 55px; right: 20px;
    transform: translateY(-50%);
    padding: 14px 16px;
    background: rgba(20,20,26,0.78);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    opacity: 0;
    z-index: 3;
    will-change: transform, opacity;
}
.hiw-mob-step-card .hiw-mob-step-row {
    display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
}
.hiw-mob-step-card .hiw-mob-ic {
    width: 30px; height: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.03);
    flex-shrink: 0;
}
.hiw-mob-step-card .hiw-mob-ic svg {
    width: 14px; height: 14px; color: rgba(255,255,255,0.55);
}
.hiw-mob-step-card h3 {
    font-family: var(--font-display, 'Space Grotesk'), sans-serif;
    font-size: 0.92rem; font-weight: 700; color: #fff;
    margin: 0;
}
.hiw-mob-step-card p {
    font-size: 0.76rem; line-height: 1.55;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-body, 'Inter'), sans-serif;
    margin: 0;
}

/* ================================================================ BEFORE/AFTER SLIDER */
.ba-slider {
    position: relative; width: 100%; max-width: 900px; margin: 0 auto;
    border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 16/9; user-select: none; -webkit-user-select: none;
}
.ba-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { z-index: 1; }
.ba-after { z-index: 2; clip-path: inset(0 0 0 50%); }
.ba-handle {
    position: absolute; top: 0; bottom: 0; left: 50%; z-index: 3;
    width: 4px; margin-left: -2px; background: var(--grad); cursor: ew-resize;
}
.ba-handle::after {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.ba-handle svg {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 20px; height: 20px; color: var(--text); z-index: 4;
}
.ba-label {
    position: absolute; bottom: 16px; z-index: 5;
    font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: #fff; padding: 6px 14px;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); border-radius: var(--radius-pill);
}
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }

/* ================================================================ REALISATIONS */
.real-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 20px; }
.real-card {
    border-radius: var(--radius-lg); overflow: hidden;
    position: relative; cursor: pointer; transition: transform 0.4s var(--ease);
}
.real-card:nth-child(2), .real-card:nth-child(5) { grid-row: span 2; }
.real-card:hover { transform: scale(1.02); }
.real-card img { width: 100%; height: 100%; object-fit: cover; }
.real-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.6));
    display: flex; align-items: flex-end; justify-content: space-between;
    padding: 20px; opacity: 0; transition: opacity 0.4s ease;
}
.real-card:hover .real-card-overlay { opacity: 1; }
.real-badge {
    font-size: 11px; font-weight: 600; padding: 4px 10px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    border-radius: var(--radius-pill); color: #fff;
}
.real-location { font-size: 12px; color: rgba(255,255,255,0.7); }
@media (max-width: 768px) {
    .real-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .real-card:nth-child(2), .real-card:nth-child(5) { grid-row: span 1; }
}

/* ================================================================ TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px 28px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s ease, rotate 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.testimonial-card:hover { transform: translateY(-4px) rotate(0.5deg); box-shadow: var(--shadow-lg); }
/* Decorative quote mark */
.testimonial-card::before {
    content: '\201C'; position: absolute; top: -10px; right: 16px;
    font-family: Georgia, serif; font-size: 120px; line-height: 1;
    color: var(--bg-muted); z-index: 0; pointer-events: none;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; position: relative; z-index: 1; }
.testimonial-stars svg { width: 18px; height: 18px; color: #F59E0B; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px; border-top: 1px solid var(--border-light); position: relative; z-index: 1;
}
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--grad); display: flex; align-items: center;
    justify-content: center; font-family: var(--font-display);
    font-weight: 700; font-size: 15px; color: #fff;
}
.testimonial-info strong { display: block; font-size: 14px; font-weight: 600; }
.testimonial-info span { font-size: 12.5px; color: var(--text-muted); }
.testimonial-source { font-size: 11px; color: var(--text-muted); margin-top: 2px; display: flex; align-items: center; gap: 4px; }
.testimonial-source svg { width: 12px; height: 12px; }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ================================================================ CTA SECTION */
.cta-section {
    background: var(--grad); padding: clamp(80px, 10vw, 120px) 24px;
    text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-title {
    font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800; margin-bottom: 16px; letter-spacing: -0.025em;
}
.cta-sub { font-size: clamp(1rem, 1.8vw, 1.15rem); opacity: 0.85; max-width: 500px; margin: 0 auto 40px; line-height: 1.7; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-cta-white {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; background: #fff; color: var(--bg-dark);
    font-size: 15px; font-weight: 600; border-radius: var(--radius-full);
    transition: box-shadow 0.3s ease; position: relative; overflow: hidden;
}
.btn-cta-white:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.btn-cta-outline {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border: 2px solid rgba(255,255,255,0.4); color: #fff;
    font-size: 15px; font-weight: 600; border-radius: var(--radius-full);
    transition: border-color 0.3s ease, background 0.3s ease; position: relative; overflow: hidden;
}
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ================================================================ FOOTER */
.site-footer { background: var(--bg-dark); color: var(--text-inv); padding: 72px 24px 0; }
.footer-grid {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px; padding-bottom: 56px;
}
.footer-brand p { font-size: 14px; color: var(--text-inv-muted); margin-top: 12px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.06); display: flex;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); transition: color 0.25s ease, background 0.25s ease;
}
.footer-social a:hover { color: #fff; background: rgba(255,255,255,0.12); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-col h4 {
    font-family: var(--font-display); font-size: 14px; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    margin-bottom: 20px; color: rgba(255,255,255,0.4);
}
.footer-col a {
    display: block; font-size: 14.5px; color: rgba(255,255,255,0.65);
    padding: 5px 0; transition: color 0.25s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    max-width: var(--container); margin: 0 auto; padding: 24px 0;
    border-top: 1px solid var(--border-dark); text-align: center;
    font-size: 13px; color: rgba(255,255,255,0.3);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.25s ease; }
.footer-bottom a:hover { color: #fff; }
.footer-france-banner {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 28px; background: linear-gradient(135deg, rgba(0,35,149,0.15) 0%, rgba(237,41,57,0.15) 100%);
    border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.08);
    margin: 24px auto 0; max-width: 480px;
}
.france-flag-icon { font-size: 28px; }
.footer-france-text { display: flex; flex-direction: column; gap: 2px; }
.footer-france-text strong { font-size: 14px; color: rgba(255,255,255,0.9); font-weight: 600; }
.footer-france-text span { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-rating { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.footer-rating svg { width: 16px; height: 16px; color: #F59E0B; }
.footer-rating span { font-size: 14px; color: rgba(255,255,255,0.6); }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* Feature grid (product pages) */
.feature-grid-2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 640px) { .feature-grid-2col { grid-template-columns: 1fr; } }

/* Accordion sections */
.product-accordion-section { border-bottom: 1px solid var(--border); }
.product-accordion-toggle {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 24px 0; font-family: var(--font-display); font-size: 1.1rem;
    font-weight: 700; color: var(--text); cursor: pointer; background: none; border: none;
    text-align: left;
}
.product-accordion-toggle svg {
    width: 20px; height: 20px; color: var(--text-muted);
    transition: transform 0.3s var(--ease);
}
.product-accordion-section.open .product-accordion-toggle svg { transform: rotate(180deg); }
.product-accordion-content {
    max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease);
}
.product-accordion-section.open .product-accordion-content { max-height: 2000px; }
.product-accordion-inner { padding: 0 0 32px; }

/* ================================================================ PRODUCT PAGE (CRO) */
.product-hero-split {
    padding: 120px 24px 60px;
    display: grid; grid-template-columns: 55% 45%;
    gap: 48px; align-items: center;
    max-width: var(--container); margin: 0 auto;
}
.product-hero-left .breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.product-hero-left .breadcrumb a { color: var(--text-sec); transition: color 0.25s ease; }
.product-hero-left .breadcrumb a:hover { color: var(--red); }
.product-hero-left .badge-green {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; background: #ECFDF5; color: #059669;
    font-size: 12px; font-weight: 600; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.product-hero-left .badge-green svg { width: 8px; height: 8px; }
.product-hero-left h1 {
    font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800; letter-spacing: -0.025em; margin-bottom: 12px; line-height: 1.1;
}
.product-hero-left .tagline { font-size: 1.05rem; color: var(--text-sec); margin-bottom: 20px; }
.product-hero-left .mini-stats { display: flex; gap: 20px; margin-top: 20px; }
.product-hero-left .mini-stat {
    font-size: 13px; color: var(--text-sec); display: flex; align-items: center; gap: 6px;
}
.product-hero-left .mini-stat svg { width: 16px; height: 16px; color: var(--red); }
.product-hero-right { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.product-hero-right img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-hero-right:hover img { transform: scale(1.03); }
.product-hero-right .badge-lorraine {
    position: absolute; top: 16px; right: 16px;
    padding: 6px 14px; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
    color: #fff; font-size: 12px; font-weight: 600; border-radius: var(--radius-pill);
}
@media (max-width: 768px) { .product-hero-split { grid-template-columns: 1fr; padding-top: 100px; } }

/* Product sticky nav */
.product-sticky-nav {
    position: sticky; top: 102px; z-index: 999;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border); padding: 0 24px;
}
.product-sticky-nav-inner {
    max-width: var(--container); margin: 0 auto;
    display: flex; gap: 8px; overflow-x: auto; padding: 12px 0;
    -webkit-overflow-scrolling: touch;
}
.product-sticky-nav-inner::-webkit-scrollbar { display: none; }
.pnav-pill {
    padding: 8px 18px; border-radius: var(--radius-pill);
    font-size: 13.5px; font-weight: 500; color: var(--text-sec);
    white-space: nowrap; transition: all 0.3s ease; border: 1px solid transparent;
}
.pnav-pill:hover { color: var(--text); background: var(--bg-subtle); }
.pnav-pill.active { background: var(--grad); color: #fff; }

/* Material selector */
.material-selector { display: flex; flex-direction: column; gap: 12px; }
.material-card {
    padding: 16px; border: 2px solid var(--border); border-radius: var(--radius);
    cursor: pointer; transition: border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex; align-items: center; gap: 16px;
}
.material-card:hover { border-color: var(--text-sec); }
.material-card.active { border-color: transparent; box-shadow: 0 0 0 2px var(--red); }
.material-swatch { width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0; }
.material-card h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.material-card span { font-size: 13px; color: var(--text-sec); }

/* Configurator placeholder */
.config-zone { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.config-main {
    background: var(--bg-dark); border-radius: var(--radius-lg);
    min-height: 500px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 40px;
}
.config-main h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.config-main p { color: rgba(255,255,255,0.5); font-size: 14px; }
.config-spinner {
    width: 40px; height: 40px; border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--red); border-radius: 50%;
    animation: logocom_spin 1s linear infinite; margin-bottom: 24px;
}
@keyframes logocom_spin { to { transform: rotate(360deg); } }

.config-sidebar {
    position: sticky; top: 140px;
    background: var(--bg-subtle); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px;
}
.config-sidebar .price { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.config-sidebar .price-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.config-sidebar .sep { height: 1px; background: var(--border); margin: 20px 0; }
.config-sidebar .trust-list { display: flex; flex-direction: column; gap: 12px; }
.config-sidebar .trust-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-sec); }
.config-sidebar .trust-item svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

.product-bottom-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--bg); border-top: 1px solid var(--border);
    padding: 12px 20px; z-index: 9998;
    align-items: center; justify-content: space-between;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}
.product-bottom-bar .price-sm { font-family: var(--font-display); font-size: 18px; font-weight: 800; }
.product-bottom-bar .price-sm span { font-size: 12px; color: var(--text-muted); font-weight: 400; display: block; }
@media (max-width: 768px) {
    .config-zone { grid-template-columns: 1fr; }
    .config-sidebar { position: static; display: none; }
    .product-bottom-bar { display: flex; }
}

/* ================================================================ PRODUCT PAGE PREMIUM (Stripe/Apple) */
.config-zone-wrapper {
    background: var(--bg-subtle); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); padding: clamp(48px, 8vw, 80px) 24px;
}
.config-zone-wrapper .container { max-width: var(--container); margin: 0 auto; }
.config-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 16px;
}
.pulse-dot-green {
    width: 8px; height: 8px; border-radius: 50%; background: #059669;
    display: inline-block; animation: logocom_pulse_green 2s ease-in-out infinite;
}
@keyframes logocom_pulse_green { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.config-zone-title {
    font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px;
}
.config-zone-sub { font-size: 1rem; color: var(--text-sec); margin-bottom: 32px; max-width: 520px; }

/* Premium Accordion sections — Stripe clean */
.product-section-accordion {
    max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.product-accordion-section { border-bottom: 1px solid var(--border); }
.product-accordion-section:first-child { border-top: 1px solid var(--border); }
.product-accordion-toggle {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 28px 0; font-family: var(--font-display); font-size: 1.15rem;
    font-weight: 700; color: var(--text); cursor: pointer; background: none; border: none;
    text-align: left; transition: color 0.2s ease;
}
.product-accordion-toggle:hover { color: var(--red); }
.acc-icon {
    width: 32px; height: 32px; border-radius: 50%; background: var(--bg-subtle);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s var(--ease);
}
.product-accordion-section.open .acc-icon { background: var(--bg-muted); transform: rotate(180deg); }
.product-accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.product-accordion-section.open .product-accordion-content { max-height: 3000px; }
.product-accordion-inner { padding: 0 0 40px; }

/* Feature Bento — Apple style */
.feature-bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-bento-card {
    padding: 28px; background: var(--bg-subtle); border-radius: var(--radius-lg);
    border: 1px solid var(--border-light); transition: all 0.3s ease;
}
.feature-bento-card:hover { border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.fb-icon {
    width: 40px; height: 40px; border-radius: 12px; background: var(--grad); color: #fff;
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.fb-icon svg { width: 20px; height: 20px; }
.feature-bento-card h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.feature-bento-card p { font-size: 13.5px; color: var(--text-sec); line-height: 1.6; }
@media (max-width: 640px) { .feature-bento { grid-template-columns: 1fr; } }

/* Premium FAQ — Stripe clean */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; font-size: 15px; font-weight: 600; color: var(--text);
    cursor: pointer; background: none; border: none; text-align: left; font-family: var(--font-body);
}
.faq-q svg { width: 16px; height: 16px; color: var(--text-muted); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 0 20px; font-size: 14px; color: var(--text-sec); line-height: 1.7; }

/* Contact mini CTA */
.contact-cta-mini { text-align: center; padding: 20px 0; }
.contact-cta-mini p { font-size: 15px; color: var(--text-sec); margin-bottom: 20px; }
.contact-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; font-family: var(--font-display); font-size: 17px;
    font-weight: 600; color: var(--text); text-align: left; transition: color 0.25s ease;
}
.faq-question:hover { color: var(--red); }
.faq-chevron {
    width: 20px; height: 20px; transition: transform 0.35s var(--ease);
    flex-shrink: 0; margin-left: 16px; color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner { padding-bottom: 20px; font-size: 15px; color: var(--text-sec); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* Contact page - floating labels */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px;
}
.contact-info > p { color: var(--text-sec); margin-bottom: 40px; line-height: 1.7; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-item-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--bg-subtle); display: flex;
    align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; color: var(--red); }
.contact-item strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.contact-item span { font-size: 14px; color: var(--text-sec); }
.contact-wa-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; background: #25D366; color: #fff;
    font-size: 15px; font-weight: 600; border-radius: var(--radius-full);
    margin-top: 16px; transition: box-shadow 0.3s ease;
}
.contact-wa-btn:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.contact-wa-btn svg { width: 20px; height: 20px; }
.contact-form {
    background: var(--bg-subtle); border-radius: var(--radius-lg);
    padding: 40px 36px; border: 1px solid var(--border-light);
}
/* Response badge */
.form-response-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; background: #ECFDF5; color: #059669;
    font-size: 13px; font-weight: 600; border-radius: var(--radius-pill);
    margin-bottom: 24px;
}
.form-response-badge .pulse-green {
    width: 8px; height: 8px; border-radius: 50%; background: #10B981;
    animation: logocom_pulse 2s ease-in-out infinite;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
/* Floating label group */
.form-group { margin-bottom: 16px; position: relative; }
.form-group label {
    position: absolute; left: 16px; top: 14px;
    font-size: 14px; font-weight: 400; color: var(--text-muted);
    transition: all 0.25s var(--ease); pointer-events: none;
    background: transparent; padding: 0 4px;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group.has-value label {
    top: -8px; left: 12px; font-size: 11px; font-weight: 600;
    color: var(--red); background: var(--bg-subtle);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px; border: 1.5px solid var(--border);
    border-radius: var(--radius); font-size: 16px; color: var(--text);
    background: var(--bg); transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--red);
}
.form-group input:focus-visible, .form-group select:focus-visible, .form-group textarea:focus-visible {
    outline: 2px solid var(--red); outline-offset: 2px;
    border-color: transparent;
    box-shadow: 0 0 0 2px var(--red), 0 0 20px rgba(176,29,44,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 16px; text-align: center; }

/* Contact form feedback */
.field-error { border-color: #ef4444 !important; }
.error-msg { display: block; font-size: 12px; color: #ef4444; margin-top: 4px; }
.form-feedback { margin-top: 16px; padding: 14px 18px; border-radius: 10px; font-size: 14px; font-weight: 500; text-align: center; }
.form-feedback--success { background: rgba(34,197,94,.12); color: #16a34a; border: 1px solid rgba(34,197,94,.25); }
.form-feedback--error   { background: rgba(239,68,68,.10); color: #ef4444; border: 1px solid rgba(239,68,68,.2); }
.spinner-dots { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin .6s linear infinite; vertical-align: middle; margin-right: 6px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ================================================================ DEVIS SUCCESS */
.devis-success-wrap {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}
.devis-success {
    max-width: 540px;
    text-align: center;
}
.devis-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.devis-success-icon svg {
    width: 36px;
    height: 36px;
    stroke: #16a34a;
}
.devis-success h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 12px;
}
.devis-success-sub {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 28px;
}
.devis-success-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.devis-success-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
}
.devis-success-info-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--red);
}
.devis-success-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .devis-success-wrap { padding: 40px 16px; }
    .devis-success h3 { font-size: 22px; }
    .devis-success-actions { flex-direction: column; align-items: stretch; }
    .devis-success-actions .btn-gradient,
    .devis-success-actions .btn-outline { justify-content: center; }
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ================================================================ UTILITY PAGES (legal, about) */
.legal-section { padding: 140px 24px 80px; max-width: 800px; margin: 0 auto; line-height: 1.8; }
.legal-section h1 { font-size: clamp(28px, 4vw, 38px); font-weight: 700; margin-bottom: 32px; }
.legal-section h2 { font-size: 22px; font-weight: 700; margin: 40px 0 16px; }
.legal-section h3 { font-size: 18px; font-weight: 600; margin: 28px 0 12px; }
.legal-section p  { color: var(--text-sec); margin-bottom: 16px; }
.legal-section a  { color: var(--red); text-decoration: underline; }
.legal-section ul { padding-left: 24px; margin-bottom: 16px; }
.legal-section li { margin-bottom: 8px; color: var(--text-sec); }
.legal-section .legal-updated { margin-top: 48px; font-size: 13px; color: var(--text-muted); }

/* ================================================================ SKIP-TO-CONTENT (a11y) */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200000;
    padding: 12px 24px;
    background: var(--red);
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-to-content:focus {
    top: 12px;
}

/* ================================================================ FOCUS-VISIBLE */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

/* ================================================================
   RESPONSIVE — COMPREHENSIVE MOBILE FIX
   ================================================================ */

/* Global anti-overflow */
html { overflow-x: hidden; }
img, video, iframe { max-width: 100%; height: auto; }

/* Safe area for iPhones with notch */
@supports (padding: env(safe-area-inset-bottom)) {
    body { padding-bottom: env(safe-area-inset-bottom); }
    .product-bottom-bar { padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
    .whatsapp-float { bottom: calc(24px + env(safe-area-inset-bottom)); }
    .mobile-drawer { padding-bottom: calc(40px + env(safe-area-inset-bottom)); }
}

/* Touch devices — disable hover-only effects */
@media (pointer: coarse) {
    /* Holo cards — disable 3D tilt on touch */
    .product-card::before, .product-card::after { display: none !important; }
    .holo-card-wrap::before { display: none !important; }
    /* Show realisation overlays always on touch */
    .real-card-overlay { opacity: 1; }
}
@media (hover: none) {
    .product-card:hover { transform: none; box-shadow: none; }
    .product-card::before, .product-card::after { display: none !important; }
    .holo-card-wrap::before { display: none !important; }
    .b2b-card:hover { transform: none; }
    .testimonial-card:hover { transform: none; }
    .real-card:hover { transform: none; }
}

/* ---- TABLET (max 1024px) ---- */
@media (max-width: 1024px) {
    .hero { padding: 100px 20px 60px; }
    .hero-content { max-width: 100%; }
    .hero-title { font-size: clamp(2rem, 7vw, 3.5rem); min-height: 1.5em; }

    /* Product hero */
    .product-hero-split { grid-template-columns: 1fr; gap: 32px; padding: 100px 20px 40px; }
    .product-hero-left .mini-stats { flex-wrap: wrap; gap: 12px; }
}

/* ---- MOBILE (max 768px) ---- */
@media (max-width: 768px) {
    /* Section padding */
    .section { padding: 60px 16px; }

    /* Hero */
    .hero { padding: 90px 16px 50px; min-height: 90vh; }
    .hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); min-height: auto; margin-bottom: 16px; }
    /* Hero — Expanding Accordion mobile adjustments */
    .hero-main { padding: 80px 20px 32px; gap: 32px; }
    .hero-left { max-width: 100%; }
    .hero-pill { margin-bottom: 20px; padding: 6px 14px; font-size: 10px; }
    .hero-title { font-size: clamp(1.8rem, 4.5vw, 2.8rem); margin-bottom: 16px; }
    .hero-sub { font-size: 0.95rem; margin-bottom: 28px; }
    .hero-ctas { gap: 18px; }
    .hero-ctas .btn-gradient { padding: 12px 24px; font-size: 14px; }
    .hero-badges { gap: 12px 16px; font-size: 12px; }
    .hero-badge-check { width: 14px; height: 14px; }
    .showcase-container { height: 280px; }
    .content-expanded { padding: 20px; }
    .content-expanded h2 { font-size: 1.2rem; }
    .content-expanded p { font-size: 0.75rem; margin-bottom: 16px; }
    .content-expanded .sc-link { font-size: 12px; }

    /* Stats grid — override inline styles */
    .stats-grid,
    div[class*="stats-grid"] { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }

    /* Product feature grids — override inline grid-template-columns */
    div[style*="grid-template-columns:repeat(2"] { grid-template-columns: 1fr !important; }

    /* Config zone */
    .config-zone { grid-template-columns: 1fr; }
    .config-sidebar { position: static; display: none; }
    .config-main { min-height: 350px; padding: 24px; }
    .product-bottom-bar { display: flex; }

    /* CTA section */
    .cta-btns { flex-direction: column; align-items: stretch; }
    .cta-btns .btn-cta-white,
    .cta-btns .btn-cta-outline { width: 100%; justify-content: center; }
    .cta-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-form { padding: 24px 20px; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .site-footer { padding: 48px 16px 0; }

    /* WhatsApp float avoid overlap with bottom bar */
    .whatsapp-float { bottom: 80px; right: 16px; width: 48px; height: 48px; }
    .whatsapp-float svg { width: 24px; height: 24px; }

    /* Testimonials — scroll horizontally or stack */
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonial-card { padding: 24px 20px; }

    /* B2B grid */
    .b2b-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Process — handled by component media query above */

    /* Realisations masonry */
    .real-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 12px; }
    .real-card:nth-child(2), .real-card:nth-child(5) { grid-row: span 1; }

    /* Before/After slider */
    .ba-slider { border-radius: var(--radius); }
    .ba-label { font-size: 10px; padding: 4px 10px; }

    /* Product sticky nav scroll */
    .product-sticky-nav { padding: 0 12px; }
    .pnav-pill { padding: 6px 14px; font-size: 12.5px; }

    /* FAQ touch target */
    .faq-question { padding: 16px 0; font-size: 15px; min-height: 48px; }

    /* Mobile drawer full width on small screens */
    .mobile-drawer { width: 100vw; padding: 90px 24px 32px; }
    .mobile-drawer a { font-size: 18px; padding: 14px 0; min-height: 48px; display: flex; align-items: center; }
    .mobile-drawer-btns { gap: 10px; }
    .mobile-drawer-btns .btn-devis,
    .mobile-drawer-btns .btn-wa-mobile { min-height: 48px; }
}

/* ---- SMALL MOBILE (max 480px) ---- */
@media (max-width: 480px) {
    .hero-title { font-size: clamp(1.6rem, 9vw, 2.2rem); }
    .hero-trust { flex-direction: column; gap: 8px; }

    /* Stats — single column on tiny screens */
    .stats-grid,
    div[class*="stats-grid"] { grid-template-columns: 1fr !important; }

    /* Process — handled by component media query above */

    /* Footer single column */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }

    /* Realisations single column */
    .real-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }

    /* CTA padding */
    .cta-section { padding: 48px 16px; }

    /* Holo cards — mobile adjustments */
    .product-card { padding: 20px 18px 22px; }
    .product-card h3 { font-size: 16px; }
    .holo-stat-label { font-size: 12px; min-width: 70px; }
    .holo-card-cta { font-size: 14px; padding: 12px 20px; }

    /* Section headers */
    .section-header { margin-bottom: 32px; }

    /* Contact items */
    .contact-item { gap: 12px; }
    .contact-item-icon { width: 40px; height: 40px; }
}

/* ---- Touch target minimums ---- */
@media (max-width: 768px) {
    .pnav-pill { min-height: 40px; }
    .material-card { min-height: 56px; }
}

/* ================================================================ ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .scroll-progress { display: none; }
    .page-transition-overlay { display: none !important; }
    .reveal, .stagger { opacity: 1 !important; transform: none !important; }
    .product-card::after { display: none !important; }
    .lc-step { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ================================================================ PRODUCT PAGE PREMIUM (Stripe/Apple) */
.config-zone-wrapper {
    background: var(--bg-subtle); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); padding: clamp(48px, 8vw, 80px) 24px;
}
.config-zone-wrapper .container { max-width: var(--container); margin: 0 auto; }
.config-zone-wrapper .section-label-config {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 20px;
}
.config-zone-wrapper .section-label-config .pulse-live {
    width: 8px; height: 8px; border-radius: 50%; background: #059669;
    animation: logocom_pulse_live 2s ease-in-out infinite;
}
@keyframes logocom_pulse_live { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.config-zone-wrapper h2 {
    font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px;
}
.config-zone-wrapper .config-sub {
    font-size: 1rem; color: var(--text-sec); margin-bottom: 32px; max-width: 520px;
}

.product-section-accordion {
    max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.product-accordion-section {
    border-bottom: 1px solid var(--border);
}
.product-accordion-section:first-child {
    border-top: 1px solid var(--border);
}
.product-accordion-toggle {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 28px 0; font-family: var(--font-display); font-size: 1.15rem;
    font-weight: 700; color: var(--text); cursor: pointer; background: none; border: none;
    text-align: left; transition: color 0.2s ease;
}
.product-accordion-toggle:hover { color: var(--red); }
.product-accordion-toggle .acc-icon {
    width: 32px; height: 32px; border-radius: 50%; background: var(--bg-subtle);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s var(--ease);
}
.product-accordion-section.open .product-accordion-toggle .acc-icon {
    background: var(--bg-muted); transform: rotate(180deg);
}
.product-accordion-content {
    max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease);
}
.product-accordion-section.open .product-accordion-content { max-height: 3000px; }
.product-accordion-inner {
    padding: 0 0 40px; font-size: 15px; color: var(--text-sec); line-height: 1.7;
}

.feature-bento {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px;
}
.feature-bento-card {
    padding: 28px; background: var(--bg-subtle); border-radius: var(--radius-lg);
    border: 1px solid var(--border-light); transition: all 0.3s ease;
}
.feature-bento-card:hover {
    border-color: var(--border); box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.feature-bento-card .fb-icon {
    width: 40px; height: 40px; border-radius: 12px;
    background: var(--grad); color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.feature-bento-card .fb-icon svg { width: 20px; height: 20px; }
.feature-bento-card h4 {
    font-family: var(--font-display); font-size: 15px; font-weight: 700;
    margin-bottom: 6px; color: var(--text);
}
.feature-bento-card p { font-size: 13.5px; color: var(--text-sec); line-height: 1.5; }
@media (max-width: 640px) { .feature-bento { grid-template-columns: 1fr; } }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; font-size: 15px; font-weight: 600; color: var(--text);
    cursor: pointer; background: none; border: none; text-align: left;
    font-family: var(--font-body);
}
.faq-q svg { width: 16px; height: 16px; color: var(--text-muted); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 0 20px; font-size: 14px; color: var(--text-sec); line-height: 1.7; }

/* =========================================
   BACKGROUND ANIME "LASER & NEON"
   ========================================= */
.bg-blueprint {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(10, 10, 15, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 15, 0.03) 1px, transparent 1px);
    background-size: 40px 40px; z-index: 0; pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}
.laser-neon-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.path-groove { fill: none; stroke: rgba(0, 0, 0, 0.03); stroke-width: 1.5px; }
.path-beam { fill: none; stroke-width: 3px; stroke-linecap: round; opacity: 0.9; }
.beam-neon { stroke-dasharray: 200 2000; animation: drawBeam 12s linear infinite; }
.beam-laser { stroke-dasharray: 100 1500; animation: drawBeamReverse 8s linear infinite; }
.beam-accent { stroke-dasharray: 300 2500; animation: drawBeam 15s linear infinite; }
@keyframes drawBeam { from { stroke-dashoffset: 2500; } to { stroke-dashoffset: 0; } }
@keyframes drawBeamReverse { from { stroke-dashoffset: -1500; } to { stroke-dashoffset: 0; } }
.ambient-glows { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.glow-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.08;
    animation: floatGlow 10s ease-in-out infinite alternate;
}
@keyframes floatGlow { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(40px, -40px) scale(1.1); } }

/* =========================================
   GRILLE DECALEE (STAGGERED GRID)
   ========================================= */
.staggered-grid {
    display: grid; grid-template-columns: repeat(1, 1fr); gap: 2.5rem; position: relative; z-index: 10;
    max-width: var(--container-wide, 1400px); margin: 0 auto;
}
@media (min-width: 1024px) {
    .staggered-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
    .staggered-grid > div:nth-child(3n+2) { margin-top: 6rem; }
    .staggered-grid > div:nth-child(3n+3) { margin-top: 3rem; }
}

/* ================================================================
   TRANSITION Featured -> HIW (Superposition & Dôme natif)
   ================================================================ */
#sectionFeatured {
    position: relative;
    z-index: 10;
}
#hiw-master {
    position: relative;
    z-index: 20;
    background: var(--bg-dark, #0A0A0F);
    overflow: hidden;
    margin-top: 0 !important;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.15);
    will-change: border-radius, transform;
}
/* #hiw-master garde ses coins arrondis meme sur mobile :
   le morph Arntreal est desormais actif en mobile (pin + border-radius). */

/* ================================================================
   PRODUCT PAGES — NEW TEMPLATE SYSTEM
   ================================================================ */

/* --- HERO CONFIGURATOR (split screen) --- */
.hero-configurator { padding: 120px 0 80px; background: var(--bg-subtle); position: relative; overflow: hidden; }
.hero-config-inner { max-width: var(--container-wide); margin: 0 auto; padding: 0 40px; display: flex; gap: 48px; align-items: center; }
.hero-config-left { flex: 1; }
.hero-config-left .breadcrumb { margin-bottom: 16px; }
.hero-config-left h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.hero-config-left .tagline { font-size: 1.05rem; color: var(--text-sec); line-height: 1.7; margin-bottom: 24px; max-width: 520px; }
.hero-config-right { flex: 1; background: var(--bg); border-radius: var(--radius-lg); border: 1px solid var(--border); min-height: 420px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-config-right .config-placeholder { text-align: center; color: var(--text-muted); font-size: 0.95rem; padding: 40px; }
.hero-config-right .config-placeholder svg { display: block; margin: 0 auto 16px; opacity: 0.4; }
.hero-config-info { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.hero-config-chip { display: flex; align-items: center; gap: 8px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 8px 16px; font-size: 13px; font-weight: 500; color: var(--text-sec); }
.hero-config-chip svg { width: 16px; height: 16px; color: var(--red); }
@media (max-width: 968px) { .hero-config-inner { flex-direction: column; padding: 0 20px; } .hero-config-right { width: 100%; min-height: 320px; } }

/* --- ARCH TRANSITIONS (SVG domes) --- */
.arch-transition { position: relative; width: 100%; height: 120px; overflow: hidden; z-index: 5; }
.arch-transition svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; display: block; }
.arch-transition-black { background: transparent; }
.arch-transition-black svg path { fill: var(--bg-dark); }
.arch-transition-white { background: var(--bg-dark); }
.arch-transition-white svg path { fill: var(--bg); }

/* --- EXPLODED VIEW SECTION --- */
.exploded-view-section { background: var(--bg-dark); padding: clamp(80px, 10vw, 140px) 0; position: relative; overflow: hidden; }
.exploded-header { text-align: center; max-width: 700px; margin: 0 auto 80px; padding: 0 24px; }
.exploded-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.exploded-header p { color: var(--text-inv-muted); font-size: 1rem; line-height: 1.7; }
/* Conteneur principal */
.explode-container {
    position: relative;
    width: 100%;
    height: 750px;
    display: block;
    margin: 0 auto;
    perspective: 1200px;
}

/* Centrage absolu mathématique des pièces 3D */
.layer {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -120px;
    margin-left: -120px;
    width: 240px;
    height: 240px;
    border-radius: 40px;
    transform: rotateX(60deg) rotateZ(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 800;
    z-index: 5;
    transition: transform 0.1s linear;
    will-change: transform;
}

/* Éloignement des étiquettes pour ne plus chevaucher la 3D */
.layer-label {
    position: absolute;
    background: rgba(20, 20, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 24px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 13.5px;
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 20;
    width: max-content;
    max-width: 280px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.layer-label.is-visible { opacity: 1; }
.layer-label strong { font-family: var(--font-display); font-size: 18px; display: block; margin-bottom: 4px; color: #fff; }
.layer-label span { color: rgba(255,255,255,0.6); display: block; line-height: 1.5; }

/* Positionnement ultra-large des labels */
.label-1 { top: 15%; right: 5%; border-left: 3px solid var(--red); }
.label-2 { top: 45%; left: 5%; border-right: 3px solid var(--purple); text-align: right; }
.label-3 { bottom: 15%; right: 5%; border-left: 3px solid var(--blue); }

/* Utility classes for exploded view headers */
.title-display { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; line-height: 1.1; }
.text-gradient { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* ===================================================================
   PRODUCT-SPECIFIC EXPLODED VIEW LAYERS — USER VALIDATED AWWWARDS CSS
   =================================================================== */

/* PRODUIT 1 : LETTRES BOÎTIER — Ultra-réaliste 3D */
/* (ancien layer-1/2/3 remplacé par scene 3D preserve-3d + alu procédural) */

/* Conteneur scène 3D — Lettre Boîtier */
#explode-master-lettres-3d {
    background: radial-gradient(circle at center, #13131c 0%, var(--bg-dark) 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
#explode-master-lettres-3d .scene-3d-container {
    flex-grow: 1; width: 100%; position: relative;
    perspective: 2000px;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}
#explode-master-lettres-3d .letter-wrapper {
    position: relative; width: 400px; height: 500px;
    transform-style: preserve-3d;
    transform: rotateX(55deg) rotateZ(-35deg);
}
#explode-master-lettres-3d .layer-part {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-weight: 900; font-size: 550px; line-height: 1;
    transform-style: preserve-3d;
}

/* Couche 3 : Fond PVC & matrice LED */
#explode-master-lettres-3d .layer-3-pvc { transform: translateZ(-80px); z-index: 1; }
#explode-master-lettres-3d .pvc-base {
    position: absolute; color: #111116;
    -webkit-text-stroke: 2px #222;
    text-shadow: -1px -1px 0 #000, 0px 0px 30px rgba(0,0,0,0.8);
}
#explode-master-lettres-3d .led-matrix {
    position: absolute; color: transparent;
    background-image: radial-gradient(circle, #fff 10%, #ff0f39 25%, transparent 35%);
    background-size: 24px 24px; background-position: center;
    -webkit-background-clip: text; background-clip: text;
    transform: translateZ(2px);
    filter: drop-shadow(0 0 15px #ff0f39) brightness(1.2);
    opacity: 0.9;
}

/* Couche 2 : Chant alu (strates générées en JS) */
#explode-master-lettres-3d .layer-2-alu { transform: translateZ(0px); z-index: 2; }
#explode-master-lettres-3d .alu-slice {
    position: absolute; display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
    color: transparent;
    -webkit-text-stroke: 10px #94a3b8;
}
#explode-master-lettres-3d .alu-slice.top-edge {
    -webkit-text-stroke: 10px #e2e8f0;
    filter: drop-shadow(0 0 10px rgba(255,15,57,0.4));
}
#explode-master-lettres-3d .alu-slice.bottom-edge {
    -webkit-text-stroke: 10px #64748b;
}

/* Couche 1 : Face Plexiglas */
#explode-master-lettres-3d .layer-1-plexi { transform: translateZ(80px); z-index: 3; }
#explode-master-lettres-3d .plexi-face {
    position: absolute; color: rgba(255, 255, 255, 0.9);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    text-shadow: 0 0 20px rgba(255,255,255,0.5), 0 0 40px #ff0f39, 0 0 80px rgba(255,15,57,0.4);
    filter: drop-shadow(-2px -2px 1px rgba(255,255,255,0.8));
}

/* Labels flottants techniques */
#explode-master-lettres-3d .ui-label {
    position: absolute;
    background: rgba(15, 15, 20, 0.85);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    padding: 20px; color: #fff; font-family: var(--font-body); font-size: 14px;
    opacity: 1; pointer-events: auto; z-index: 40;
    width: max-content; max-width: 260px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
#explode-master-lettres-3d .ui-label .dot {
    width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 8px;
    box-shadow: 0 0 10px currentColor;
}
#explode-master-lettres-3d .ui-label strong {
    font-family: var(--font-display); font-size: 17px;
    display: flex; align-items: center; margin-bottom: 6px;
}
#explode-master-lettres-3d .ui-label span {
    color: rgba(255,255,255,0.6); display: block; line-height: 1.5; font-weight: 400;
}
#explode-master-lettres-3d .label-plexi { top: 15%; right: 10%; color: #fff; }
#explode-master-lettres-3d .label-plexi .dot { background: #fff; }
#explode-master-lettres-3d .label-alu { top: 45%; left: 8%; text-align: right; color: #e2e8f0; }
#explode-master-lettres-3d .label-alu strong { justify-content: flex-end; }
#explode-master-lettres-3d .label-alu .dot { background: #e2e8f0; margin-right: 0; margin-left: 8px; }
#explode-master-lettres-3d .label-pvc { bottom: 20%; right: 10%; color: #ff0f39; }
#explode-master-lettres-3d .label-pvc .dot { background: #ff0f39; }

/* Responsive lettres-3d */
@media (max-width: 992px) {
    #explode-master-lettres-3d .letter-wrapper { width: 250px; height: 350px; }
    #explode-master-lettres-3d .layer-part { font-size: 350px; }
    #explode-master-lettres-3d .ui-label { display: none !important; }
}

/* PRODUIT 2 : CAISSONS LUMINEUX — Ultra-réaliste 3D */

/* Conteneur scène 3D */
#explode-master-caisson-lumineux .scene-3d-container {
    flex-grow: 1; width: 100%; position: relative;
    perspective: 2500px;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none; min-height: 500px;
}
#explode-master-caisson-lumineux .caisson-wrapper {
    position: relative; width: 650px; height: 350px;
    transform-style: preserve-3d;
    transform: rotateX(55deg) rotateZ(-35deg);
}
#explode-master-caisson-lumineux .layer-part {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    transform-style: preserve-3d;
}

/* Couche 3 : Fond alu & matrice LED */
#explode-master-caisson-lumineux .layer-3-pvc { transform: translateZ(-100px); z-index: 1; }
#explode-master-caisson-lumineux .caisson-fond {
    position: absolute; width: 100%; height: 100%;
    background: linear-gradient(135deg, #1f1f26 0%, #0a0a0f 100%);
    border: 4px solid #333; border-radius: 12px;
    box-shadow: 30px 30px 60px rgba(0,0,0,0.9);
    display: flex; align-items: center; justify-content: center;
}
#explode-master-caisson-lumineux .led-matrix {
    position: absolute; width: 95%; height: 90%;
    background-image: radial-gradient(circle, #fff 10%, #ff0f39 35%, transparent 50%);
    background-size: 40px 40px; background-position: center;
    transform: translateZ(2px);
    filter: drop-shadow(0 0 10px #ff0f39) brightness(1.2);
    opacity: 0.85; border-radius: 8px;
}

/* Couche 2 : Profilé alu (strates générées en JS) */
#explode-master-caisson-lumineux .layer-2-alu { transform: translateZ(0px); z-index: 2; }
#explode-master-caisson-lumineux .alu-slice {
    position: absolute; width: 100%; height: 100%;
    border: 15px solid #94a3b8; border-radius: 12px;
    box-sizing: border-box;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}
#explode-master-caisson-lumineux .alu-slice.top-edge {
    border-color: #e2e8f0;
    filter: drop-shadow(0 0 15px rgba(255,15,57,0.3));
    border-top-color: #fff; border-left-color: #fff;
}
#explode-master-caisson-lumineux .alu-slice.bottom-edge { border-color: #64748b; }

/* Couche 1 : Face plexiglas avec logo */
#explode-master-caisson-lumineux .layer-1-plexi { transform: translateZ(100px); z-index: 3; }
#explode-master-caisson-lumineux .caisson-face {
    position: absolute; width: 100%; height: 100%;
    background: rgba(255,255,255,0.85);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border: 2px solid rgba(255,255,255,0.6); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: inset 0 0 40px rgba(255,255,255,0.4), 0 0 50px rgba(255,15,57,0.3);
    border-top: 3px solid #fff; border-left: 3px solid #fff;
}
#explode-master-caisson-lumineux .caisson-face .logo {
    font-family: var(--font-display); font-size: 80px; font-weight: 900;
    letter-spacing: -0.05em; color: #ff0f39;
    text-shadow: 0 0 20px rgba(255,15,57,0.6), 0 0 40px rgba(255,15,57,0.4);
    transform: translateZ(1px);
}

/* Labels flottants caisson */
#explode-master-caisson-lumineux .ui-label {
    position: absolute;
    background: rgba(15,15,20,0.85);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    padding: 20px; color: #fff; font-family: var(--font-body); font-size: 14px;
    opacity: 1; pointer-events: auto; z-index: 40;
    width: max-content; max-width: 260px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
#explode-master-caisson-lumineux .ui-label .dot {
    width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 8px;
    box-shadow: 0 0 10px currentColor;
}
#explode-master-caisson-lumineux .ui-label strong {
    font-family: var(--font-display); font-size: 17px;
    display: flex; align-items: center; margin-bottom: 6px;
}
#explode-master-caisson-lumineux .ui-label span {
    color: rgba(255,255,255,0.6); display: block; line-height: 1.5; font-weight: 400;
}
#explode-master-caisson-lumineux .label-plexi { top: 10%; right: 10%; color: #fff; }
#explode-master-caisson-lumineux .label-plexi .dot { background: #fff; }
#explode-master-caisson-lumineux .label-alu { top: 40%; left: 5%; text-align: right; color: #e2e8f0; }
#explode-master-caisson-lumineux .label-alu strong { justify-content: flex-end; }
#explode-master-caisson-lumineux .label-alu .dot { background: #e2e8f0; margin-right: 0; margin-left: 8px; }
#explode-master-caisson-lumineux .label-pvc { bottom: 15%; right: 10%; color: #ff0f39; }
#explode-master-caisson-lumineux .label-pvc .dot { background: #ff0f39; }

/* Responsive caisson */
@media (max-width: 992px) {
    #explode-master-caisson-lumineux .caisson-wrapper { width: 300px; height: 160px; }
    #explode-master-caisson-lumineux .caisson-face .logo { font-size: 40px; }
    #explode-master-caisson-lumineux .ui-label { display: none !important; }
}

/* PRODUIT 3 : DRAPEAUX — Ultra-réaliste 3D double-face + potence */

/* Conteneur scène 3D */
#explode-master-drapeau .scene-3d-container {
    flex-grow: 1; width: 100%; position: relative;
    perspective: 2500px;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none; min-height: 500px;
}
#explode-master-drapeau .drapeau-wrapper {
    position: relative; width: 400px; height: 400px;
    transform-style: preserve-3d;
    transform: rotateX(55deg) rotateZ(-35deg);
}
#explode-master-drapeau .layer-part {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    transform-style: preserve-3d;
}

/* Couche centrale (Z=0) : profilé alu, LEDs, platine murale */
#explode-master-drapeau .layer-2-core { transform: translateZ(0px); z-index: 2; }

/* Platine murale 3D (potence) */
#explode-master-drapeau .wall-bracket-container {
    position: absolute; left: -70px; top: 50%; transform: translateY(-50%);
    width: 70px; height: 260px;
    transform-style: preserve-3d; z-index: 0;
}
#explode-master-drapeau .bracket-slice {
    position: absolute; width: 100%; height: 100%;
    border: 20px solid #64748b; border-right: none;
    border-radius: 12px 0 0 12px; box-sizing: border-box;
}
#explode-master-drapeau .bracket-slice.top-edge {
    background: #94a3b8; border-color: #e2e8f0;
    display: flex; flex-direction: column; justify-content: space-between;
    align-items: center; padding: 30px 0;
    box-shadow: inset 5px 0 10px rgba(255,255,255,0.2);
}
#explode-master-drapeau .bracket-slice.bottom-edge {
    background: #64748b; border-color: #64748b;
    display: flex; flex-direction: column; justify-content: space-between;
    align-items: center; padding: 30px 0;
}
#explode-master-drapeau .bracket-hole {
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--bg-dark, #07070a);
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.8), 1px 1px 1px rgba(255,255,255,0.2);
}

/* Noyau LED central */
#explode-master-drapeau .led-core-panel {
    position: absolute; width: 100%; height: 100%;
    background: #111116; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.9);
}
#explode-master-drapeau .led-matrix {
    position: absolute; width: 90%; height: 90%;
    background-image: radial-gradient(circle, #fff 10%, #ff0f39 35%, transparent 50%);
    background-size: 35px 35px; background-position: center;
    filter: drop-shadow(0 0 15px #ff0f39) brightness(1.2);
    opacity: 0.9;
}

/* Strates profilé alu */
#explode-master-drapeau .alu-slice {
    position: absolute; width: 100%; height: 100%;
    border: 25px solid #94a3b8; border-radius: 12px; box-sizing: border-box;
}
#explode-master-drapeau .alu-slice.top-edge {
    border-color: #e2e8f0;
    filter: drop-shadow(0 0 15px rgba(255,15,57,0.3));
}
#explode-master-drapeau .alu-slice.bottom-edge { border-color: #64748b; }

/* Faces plexiglas avant/arrière */
#explode-master-drapeau .layer-1-front { transform: translateZ(60px); z-index: 3; }
#explode-master-drapeau .layer-3-back { transform: translateZ(-60px); z-index: 1; }
#explode-master-drapeau .drapeau-face {
    position: absolute; width: 100%; height: 100%;
    background: rgba(255,255,255,0.85);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border: 2px solid rgba(255,255,255,0.6); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: inset 0 0 40px rgba(255,255,255,0.4), 0 0 50px rgba(255,15,57,0.3);
}
#explode-master-drapeau .layer-1-front .drapeau-face { border-top: 3px solid #fff; border-left: 3px solid #fff; }
#explode-master-drapeau .layer-3-back .drapeau-face { border-bottom: 3px solid #fff; border-right: 3px solid #fff; }
#explode-master-drapeau .drapeau-face .logo {
    font-family: var(--font-display); font-size: 60px; font-weight: 900;
    letter-spacing: -0.05em; color: #ff0f39;
    text-shadow: 0 0 20px rgba(255,15,57,0.6), 0 0 40px rgba(255,15,57,0.4);
}
#explode-master-drapeau .layer-3-back .logo { transform: scaleX(-1); }

/* Labels flottants drapeau */
#explode-master-drapeau .ui-label {
    position: absolute;
    background: rgba(15,15,20,0.85);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    padding: 20px; color: #fff; font-family: var(--font-body); font-size: 14px;
    opacity: 1; pointer-events: auto; z-index: 40;
    width: max-content; max-width: 260px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
#explode-master-drapeau .ui-label .dot {
    width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 8px;
    box-shadow: 0 0 10px currentColor;
}
#explode-master-drapeau .ui-label strong {
    font-family: var(--font-display); font-size: 17px;
    display: flex; align-items: center; margin-bottom: 6px;
}
#explode-master-drapeau .ui-label span {
    color: rgba(255,255,255,0.6); display: block; line-height: 1.5; font-weight: 400;
}
#explode-master-drapeau .label-front { top: 10%; right: 10%; color: #fff; }
#explode-master-drapeau .label-front .dot { background: #fff; }
#explode-master-drapeau .label-core { top: 40%; left: 5%; text-align: right; color: #e2e8f0; }
#explode-master-drapeau .label-core strong { justify-content: flex-end; }
#explode-master-drapeau .label-core .dot { background: #e2e8f0; margin-right: 0; margin-left: 8px; }
#explode-master-drapeau .label-back { bottom: 15%; right: 10%; color: #ff0f39; }
#explode-master-drapeau .label-back .dot { background: #ff0f39; }

/* Responsive drapeau */
@media (max-width: 992px) {
    #explode-master-drapeau .drapeau-wrapper { width: 250px; height: 250px; }
    #explode-master-drapeau .drapeau-face .logo { font-size: 35px; }
    #explode-master-drapeau .ui-label { display: none !important; }
    #explode-master-drapeau .wall-bracket-container { width: 50px; left: -50px; height: 180px; }
}

/* PRODUIT 4 : NÉON LED — Ultra-réaliste 3D (Tube Néon + Plaque Plexi) */
#explode-master-neon-led {
    background: radial-gradient(circle at center, #13131c 0%, var(--bg-dark) 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
#explode-master-neon-led .scene-3d-container {
    flex-grow: 1; width: 100%; position: relative;
    perspective: 2000px;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}
#explode-master-neon-led .neon-wrapper {
    position: relative;
    width: 550px; height: 280px;
    transform-style: preserve-3d;
    transform: rotateX(55deg) rotateZ(-35deg);
}
#explode-master-neon-led .layer-part {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    transform-style: preserve-3d;
}

/* Couche 1 : Tube Néon LED (face lumineuse) */
#explode-master-neon-led .layer-1-neon { transform: translateZ(40px); z-index: 3; }
#explode-master-neon-led .neon-face {
    position: absolute; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 160px; font-weight: 900; letter-spacing: -0.03em;
    color: #ff0f39;
    text-shadow:
        0 0 7px #ff0f39,
        0 0 15px #ff0f39,
        0 0 30px #ff0f39,
        0 0 60px rgba(255,15,57,0.5),
        0 0 100px rgba(255,15,57,0.25);
    -webkit-text-stroke: 2px rgba(255,255,255,0.25);
}

/* Strates tube silicone (procédurales en JS) */
#explode-master-neon-led .layer-tube { transform: translateZ(0px); z-index: 2; }
#explode-master-neon-led .silicone-slice {
    position: absolute; display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
    color: transparent;
    font-family: var(--font-display);
    font-size: 160px; font-weight: 900; letter-spacing: -0.03em;
    -webkit-text-stroke: 8px rgba(255,255,255,0.12);
}
#explode-master-neon-led .silicone-slice.top-edge {
    -webkit-text-stroke: 8px rgba(255,255,255,0.35);
    filter: drop-shadow(0 0 12px rgba(255,15,57,0.4));
}
#explode-master-neon-led .silicone-slice.bottom-edge {
    -webkit-text-stroke: 8px rgba(255,255,255,0.06);
}

/* Couche 2 : Plaque Plexiglas avec rainure creusée */
#explode-master-neon-led .layer-2-plexi { transform: translateZ(-40px); z-index: 1; }
#explode-master-neon-led .plexi-plate {
    position: absolute; width: 100%; height: 100%;
    background: rgba(255,255,255,0.07);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    box-shadow:
        inset 0 0 30px rgba(255,255,255,0.04),
        0 20px 60px rgba(0,0,0,0.8);
    border-top: 2px solid rgba(255,255,255,0.2);
    border-left: 2px solid rgba(255,255,255,0.15);
}
#explode-master-neon-led .plexi-groove {
    position: absolute; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 160px; font-weight: 900; letter-spacing: -0.03em;
    color: rgba(0,0,0,0.2);
    -webkit-text-stroke: 3px rgba(0,0,0,0.15);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4), -1px -1px 1px rgba(255,255,255,0.08);
}
#explode-master-neon-led .plexi-glow {
    position: absolute; width: 60%; height: 40%;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(255,15,57,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
#explode-master-neon-led .mount-hole {
    position: absolute;
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.8);
}

/* Labels UI néon */
#explode-master-neon-led .ui-label {
    position: absolute;
    background: rgba(15, 15, 20, 0.85);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    padding: 20px; color: #fff; font-family: var(--font-body); font-size: 14px;
    opacity: 1; pointer-events: auto; z-index: 40;
    width: max-content; max-width: 260px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
#explode-master-neon-led .ui-label .dot {
    width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 8px;
    box-shadow: 0 0 10px currentColor;
}
#explode-master-neon-led .ui-label strong {
    font-family: var(--font-display); font-size: 17px;
    display: flex; align-items: center; margin-bottom: 6px;
}
#explode-master-neon-led .ui-label span {
    color: rgba(255,255,255,0.6); display: block; line-height: 1.5; font-weight: 400;
}
#explode-master-neon-led .label-neon { top: 10%; right: 8%; color: #ff0f39; }
#explode-master-neon-led .label-neon .dot { background: #ff0f39; }
#explode-master-neon-led .label-plexi { bottom: 15%; left: 8%; text-align: right; color: #e2e8f0; }
#explode-master-neon-led .label-plexi strong { justify-content: flex-end; }
#explode-master-neon-led .label-plexi .dot { background: #e2e8f0; margin-right: 0; margin-left: 8px; }

/* Responsive néon */
@media (max-width: 992px) {
    #explode-master-neon-led .neon-wrapper { width: 300px; height: 160px; }
    #explode-master-neon-led .neon-face,
    #explode-master-neon-led .silicone-slice,
    #explode-master-neon-led .plexi-groove { font-size: 90px; }
    #explode-master-neon-led .ui-label { display: none !important; }
}

/* PRODUIT 5 : LETTRES PVC — Ultra-réaliste 3D (Lettre Boîtier) */
#explode-master-lettres-pvc {
    background: radial-gradient(circle at center, #13131c 0%, var(--bg-dark) 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
#explode-master-lettres-pvc .scene-3d-container {
    flex-grow: 1; width: 100%; position: relative;
    perspective: 2000px;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}
#explode-master-lettres-pvc .letter-wrapper {
    position: relative; width: 400px; height: 500px;
    transform-style: preserve-3d;
    transform: rotateX(55deg) rotateZ(-35deg);
}
#explode-master-lettres-pvc .layer-part {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-weight: 900; font-size: 550px; line-height: 1;
    transform-style: preserve-3d;
}
#explode-master-lettres-pvc .layer-3-pvc { transform: translateZ(-80px); z-index: 1; }
#explode-master-lettres-pvc .pvc-base {
    position: absolute; color: #111116;
    -webkit-text-stroke: 2px #222;
    text-shadow: -1px -1px 0 #000, 0px 0px 30px rgba(0,0,0,0.8);
}
#explode-master-lettres-pvc .led-matrix {
    position: absolute; color: transparent;
    background-image: radial-gradient(circle, #fff 10%, #ff0f39 25%, transparent 35%);
    background-size: 24px 24px; background-position: center;
    -webkit-background-clip: text; background-clip: text;
    transform: translateZ(2px);
    filter: drop-shadow(0 0 15px #ff0f39) brightness(1.2);
    opacity: 0.9;
}
#explode-master-lettres-pvc .layer-2-alu { transform: translateZ(0px); z-index: 2; }
#explode-master-lettres-pvc .alu-slice {
    position: absolute; display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
    color: transparent;
    -webkit-text-stroke: 10px #94a3b8;
}
#explode-master-lettres-pvc .alu-slice.top-edge {
    -webkit-text-stroke: 10px #e2e8f0;
    filter: drop-shadow(0 0 10px rgba(255,15,57,0.4));
}
#explode-master-lettres-pvc .alu-slice.bottom-edge {
    -webkit-text-stroke: 10px #64748b;
}
#explode-master-lettres-pvc .layer-1-plexi { transform: translateZ(80px); z-index: 3; }
#explode-master-lettres-pvc .plexi-face {
    position: absolute; color: rgba(255, 255, 255, 0.9);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    text-shadow: 0 0 20px rgba(255,255,255,0.5), 0 0 40px #ff0f39, 0 0 80px rgba(255,15,57,0.4);
    filter: drop-shadow(-2px -2px 1px rgba(255,255,255,0.8));
}
#explode-master-lettres-pvc .ui-label {
    position: absolute;
    background: rgba(15, 15, 20, 0.85);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    padding: 20px; color: #fff; font-family: var(--font-body); font-size: 14px;
    opacity: 1; pointer-events: auto; z-index: 40;
    width: max-content; max-width: 260px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
#explode-master-lettres-pvc .ui-label .dot {
    width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 8px;
    box-shadow: 0 0 10px currentColor;
}
#explode-master-lettres-pvc .ui-label strong {
    font-family: var(--font-display); font-size: 17px;
    display: flex; align-items: center; margin-bottom: 6px;
}
#explode-master-lettres-pvc .ui-label span {
    color: rgba(255,255,255,0.6); display: block; line-height: 1.5; font-weight: 400;
}
#explode-master-lettres-pvc .label-plexi { top: 15%; right: 10%; color: #fff; }
#explode-master-lettres-pvc .label-plexi .dot { background: #fff; }
#explode-master-lettres-pvc .label-alu { top: 45%; left: 8%; text-align: right; color: #e2e8f0; }
#explode-master-lettres-pvc .label-alu strong { justify-content: flex-end; }
#explode-master-lettres-pvc .label-alu .dot { background: #e2e8f0; margin-right: 0; margin-left: 8px; }
#explode-master-lettres-pvc .label-pvc { bottom: 20%; right: 10%; color: #ff0f39; }
#explode-master-lettres-pvc .label-pvc .dot { background: #ff0f39; }
@media (max-width: 992px) {
    #explode-master-lettres-pvc .letter-wrapper { width: 250px; height: 350px; }
    #explode-master-lettres-pvc .layer-part { font-size: 350px; }
    #explode-master-lettres-pvc .ui-label { display: none !important; }
}

/* ================================================================
   FALLBACK FIREFOX : text-stroke non supporté → text-shadow
   S'applique UNIQUEMENT sur les navigateurs sans -webkit-text-stroke
   ================================================================ */
@supports not (-webkit-text-stroke: 1px black) {
    /* Strates alu — Lettres Boîtier & PVC */
    #explode-master-lettres-3d .alu-slice,
    #explode-master-lettres-pvc .alu-slice {
        color: #94a3b8;
        text-shadow:
            -1px -1px 0 #94a3b8, 1px -1px 0 #94a3b8,
            -1px 1px 0 #94a3b8, 1px 1px 0 #94a3b8,
            -2px 0 0 #94a3b8, 2px 0 0 #94a3b8,
            0 -2px 0 #94a3b8, 0 2px 0 #94a3b8,
            -3px 0 0 #94a3b8, 3px 0 0 #94a3b8,
            0 -3px 0 #94a3b8, 0 3px 0 #94a3b8;
    }
    #explode-master-lettres-3d .alu-slice.top-edge,
    #explode-master-lettres-pvc .alu-slice.top-edge {
        color: #e2e8f0;
        text-shadow:
            -1px -1px 0 #e2e8f0, 1px -1px 0 #e2e8f0,
            -1px 1px 0 #e2e8f0, 1px 1px 0 #e2e8f0,
            -2px 0 0 #e2e8f0, 2px 0 0 #e2e8f0,
            0 -2px 0 #e2e8f0, 0 2px 0 #e2e8f0,
            -3px 0 0 #e2e8f0, 3px 0 0 #e2e8f0,
            0 -3px 0 #e2e8f0, 0 3px 0 #e2e8f0;
        filter: drop-shadow(0 0 10px rgba(255,15,57,0.4));
    }
    #explode-master-lettres-3d .alu-slice.bottom-edge,
    #explode-master-lettres-pvc .alu-slice.bottom-edge {
        color: #64748b;
        text-shadow:
            -1px -1px 0 #64748b, 1px -1px 0 #64748b,
            -1px 1px 0 #64748b, 1px 1px 0 #64748b,
            -2px 0 0 #64748b, 2px 0 0 #64748b,
            0 -2px 0 #64748b, 0 2px 0 #64748b,
            -3px 0 0 #64748b, 3px 0 0 #64748b,
            0 -3px 0 #64748b, 0 3px 0 #64748b;
    }
    /* Face plexi — Lettres Boîtier & PVC */
    #explode-master-lettres-3d .plexi-face,
    #explode-master-lettres-pvc .plexi-face {
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 0 20px rgba(255,255,255,0.5), 0 0 40px #ff0f39, 0 0 80px rgba(255,15,57,0.4);
        filter: drop-shadow(-2px -2px 1px rgba(255,255,255,0.8));
    }

    /* Strates alu — Caisson Lumineux (rectangulaire, pas de text-stroke) */
    #explode-master-caisson-lumineux .alu-slice {
        border-color: #94a3b8;
    }

    /* Strates alu — Drapeau (rectangulaire, pas de text-stroke) */
    #explode-master-drapeau .alu-slice {
        border-color: #94a3b8;
    }

    /* Strates silicone — Néon LED */
    #explode-master-neon-led .silicone-slice {
        color: rgba(255,255,255,0.12);
        text-shadow:
            -1px -1px 0 rgba(255,255,255,0.12), 1px -1px 0 rgba(255,255,255,0.12),
            -1px 1px 0 rgba(255,255,255,0.12), 1px 1px 0 rgba(255,255,255,0.12),
            -2px 0 0 rgba(255,255,255,0.12), 2px 0 0 rgba(255,255,255,0.12),
            0 -2px 0 rgba(255,255,255,0.12), 0 2px 0 rgba(255,255,255,0.12);
    }
    #explode-master-neon-led .silicone-slice.top-edge {
        color: rgba(255,255,255,0.35);
        text-shadow:
            -1px -1px 0 rgba(255,255,255,0.35), 1px -1px 0 rgba(255,255,255,0.35),
            -1px 1px 0 rgba(255,255,255,0.35), 1px 1px 0 rgba(255,255,255,0.35),
            -2px 0 0 rgba(255,255,255,0.35), 2px 0 0 rgba(255,255,255,0.35),
            0 -2px 0 rgba(255,255,255,0.35), 0 2px 0 rgba(255,255,255,0.35);
        filter: drop-shadow(0 0 12px rgba(255,15,57,0.4));
    }
}

/* --- SPECS BENTO GRID (Blueprint BG) --- */
.specs-section { padding: clamp(80px, 10vw, 140px) 0; background: var(--bg-subtle); position: relative; overflow: hidden; }
.specs-section::before { content: ''; position: absolute; inset: 0; 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); background-size: 40px 40px; pointer-events: none; }
.specs-section .section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
/* Forcer la grille à 3 colonnes sur Desktop */
.specs-bento, .bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}
.spec-card, .bento-item {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.spec-card:hover, .bento-item:hover { transform: translateY(-5px); border-color: rgba(176,29,44,0.2); }
.spec-card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--bg-subtle); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--red); }
.spec-card-icon svg { width: 24px; height: 24px; }
.spec-card h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.spec-card p { font-size: 0.9rem; color: var(--text-sec); line-height: 1.6; }
.spec-card-wide, .bento-item.large { grid-column: span 2; background: var(--bg-dark); color: #fff; }
.spec-card-wide p, .bento-item.large p { color: rgba(255,255,255,0.6); }

/* Sécurité Responsive : Tout passe sur 1 seule colonne sur tablette/mobile */
@media (max-width: 992px) {
    .specs-bento, .bento-grid { grid-template-columns: 1fr; }
    .spec-card-wide, .bento-item.large { grid-column: span 1; }
    .layer-label { display: none !important; }
    .explode-container { height: 500px; }
}

/* --- FAQ SECTION --- */
.faq-section { padding: clamp(80px, 10vw, 120px) 0; background: var(--bg-muted); }
.faq-section .section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.faq-list-product { max-width: 720px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; gap: 12px; }
.faq-item-product { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item-product button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--text); background: none; border: none; cursor: pointer; text-align: left; }
.faq-item-product button svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--text-muted); transition: transform 0.3s var(--ease); }
.faq-item-product.open button svg { transform: rotate(180deg); }
.faq-item-product .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item-product .faq-answer-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-sec); line-height: 1.7; }

/* --- CONTACT CTA SECTION --- */
.contact-section-product { padding: clamp(80px, 10vw, 120px) 0; background: var(--bg-dark); text-align: center; }
.contact-section-product h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.contact-section-product p { color: var(--text-inv-muted); font-size: 1rem; line-height: 1.7; max-width: 520px; margin: 0 auto 32px; }
.contact-section-product .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- STICKY BAR --- */
.sticky-bar { position: fixed; bottom: -80px; left: 0; right: 0; background: var(--bg); border-top: 1px solid var(--border); z-index: 9999; padding: 12px 24px; display: flex; align-items: center; justify-content: center; gap: 24px; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); transition: bottom 0.4s var(--ease); }
.sticky-bar.is-visible { bottom: 0; }
.sticky-bar .sticky-price { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.sticky-bar .sticky-price small { font-weight: 400; color: var(--text-muted); font-size: 0.8rem; margin-left: 4px; }

/* ===================================================================
   PRODUCT PAGE TEMPLATE V2 — awwwards validated
   =================================================================== */

/* Hero configurator — override old flex with grid */
.product-template .hero-configurator {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    background: radial-gradient(ellipse at top left, var(--bg-subtle) 0%, var(--bg) 100%);
    position: relative;
    padding: 120px 0 80px;
}
.product-template .config-main-area { padding: 40px 40px 40px 60px; display: flex; flex-direction: column; }
.product-template .hero-badge-pill {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; width: max-content;
    background: rgba(176,29,44,0.05); border: 1px solid rgba(176,29,44,0.1);
    border-radius: 99px; color: var(--red); font-weight: 700; font-size: 11px;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px;
}
.product-template .config-main-area h1 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; font-size: clamp(2.5rem, 4vw, 4.5rem); line-height: 1.05; margin: 0 0 12px; color: var(--text); }
.product-template .config-main-area p.subtitle { font-size: 1.1rem; color: var(--text-sec); line-height: 1.6; margin: 0 0 40px; max-width: 600px; }
.product-template .wp-shortcode-container {
    flex-grow: 1; border: 2px dashed var(--border-light); border-radius: 24px;
    background: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center;
    min-height: 400px; position: relative;
}
.product-template .wp-shortcode-content { text-align: center; color: var(--text-sec); font-weight: 500; font-family: var(--font-display); }
.product-template .wp-shortcode-content code { display: block; margin-top: 8px; font-family: monospace; font-size: 14px; color: var(--red); background: rgba(176,29,44,0.05); padding: 4px 8px; border-radius: 6px; }
.product-template .config-info-sidebar { padding: 40px 60px 40px 20px; display: flex; align-items: center; justify-content: center; }
.product-template .info-modal {
    background: #FFFFFF; border: 1px solid var(--border-light);
    border-radius: 24px; padding: 40px; width: 100%; max-width: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}
/* --- Sidebar carousel --- */
.product-template .sidebar-carousel { position: relative; width: 100%; aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; margin-bottom: 24px; }
.product-template .sidebar-carousel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s ease; }
.product-template .sidebar-carousel img.active { opacity: 1; }
.product-template .carousel-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.product-template .carousel-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,0.4); cursor: pointer; padding: 0; transition: all 0.3s ease; }
.product-template .carousel-dots button.active { background: #fff; width: 20px; border-radius: 4px; }
.product-template .carousel-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border-radius: 50%; border: none; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; z-index: 2; color: var(--text); }
.product-template .sidebar-carousel:hover .carousel-nav { opacity: 1; }
.product-template .carousel-nav.prev { left: 8px; }
.product-template .carousel-nav.next { right: 8px; }
/* --- Key-points clean --- */
.product-template .key-points { list-style: none; padding: 0; margin: 0; }
.product-template .key-points li { display: flex; align-items: center; gap: 12px; padding: 12px 0; font-size: 14px; color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border-light); }
.product-template .key-points li:last-child { border-bottom: none; }
.product-template .key-points li svg { color: var(--red); flex-shrink: 0; }

@media (max-width: 1024px) {
    .product-template .hero-configurator { grid-template-columns: 1fr; padding-top: 120px; }
    .product-template .config-main-area { padding: 24px; }
    .product-template .config-info-sidebar { padding: 24px; }
    .product-template .info-modal { max-width: 100%; }
}

/* ================================================================
   TRANSITIONS ARNTREAL (Superposition & Ombre Native)
   ================================================================ */
.product-template .hero-configurator { position: relative; z-index: 10; }
.product-template .exploded-view-section {
    position: relative; z-index: 20;
    margin-top: 0 !important;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.15);
    will-change: border-radius, transform;
    background: var(--bg-dark);
}
.product-template .specs-section {
    position: relative; z-index: 30;
    margin-top: 0 !important;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.05);
    will-change: border-radius, transform;
    background: #FFFFFF;
}
@media (max-width: 1023px) {
    .product-template .exploded-view-section,
    .product-template .specs-section {
        border-radius: 0 !important;
        box-shadow: none;
    }
}

/* Exploded view — full-bleed override */
.product-template .exploded-view-section { background: var(--bg-dark); color: #fff; min-height: 100vh; position: relative; padding: 0 0 100px; margin-top: -1px; overflow: clip; }
.product-template .exploded-view-section .exploded-header { text-align: center; padding-top: 60px; margin: 0 auto 80px; max-width: 700px; position: relative; z-index: 20; }
.product-template .exploded-view-section .exploded-header h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 4rem); margin: 0 0 16px; font-weight: 800; letter-spacing: -0.03em; }
.product-template .exploded-view-section .exploded-header p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; font-size: 1.1rem; line-height: 1.6; }

/* --- ANNOTATED EXPLODED IMAGE --- */
.exploded-canvas {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}
.exploded-img-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: visible;
}
.exploded-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}
/* Annotation pin */
.exploded-pin {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0;
}
.exploded-pin-dot {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 700; color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(176,29,44,0.2), 0 4px 16px rgba(0,0,0,0.3);
    z-index: 2;
    position: relative;
}
/* Pulse ring on pin */
.exploded-pin-dot::before {
    content: '';
    position: absolute; inset: -6px;
    border-radius: 50%;
    border: 1.5px solid rgba(176,29,44,0.3);
    animation: logocom_pinPulse 2.5s ease-in-out infinite;
}
@keyframes logocom_pinPulse { 0%,100%{transform:scale(1);opacity:0.6} 50%{transform:scale(1.25);opacity:0} }

/* Line from pin to label */
.exploded-pin-line {
    height: 1px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
    position: relative;
}
/* Label card */
.exploded-pin-label {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 12px 16px;
    min-width: 160px;
    max-width: 220px;
    flex-shrink: 0;
}
.exploded-pin-label h4 {
    font-family: var(--font-display);
    font-size: 13px; font-weight: 700;
    color: #fff; margin-bottom: 3px;
    letter-spacing: -0.01em;
}
.exploded-pin-label p {
    font-size: 12px; color: rgba(255,255,255,0.55);
    line-height: 1.45; margin: 0;
}

/* Directional variants */
.exploded-pin.pin-right { flex-direction: row; }
.exploded-pin.pin-left { flex-direction: row-reverse; }
.exploded-pin.pin-left .exploded-pin-label { text-align: right; }

/* Responsive: hide lines on small screens, stack labels */
@media (max-width: 768px) {
    .exploded-pin-line { display: none; }
    .exploded-pin-label { min-width: 120px; max-width: 160px; padding: 8px 12px; }
    .exploded-pin-label h4 { font-size: 11px; }
    .exploded-pin-label p { font-size: 10px; }
    .exploded-pin-dot { width: 22px; height: 22px; font-size: 9px; }
    .exploded-canvas { padding: 0 16px; }
    .exploded-view-section { min-height: auto !important; }
}
@media (max-width: 480px) {
    .exploded-pin-label { display: none; }
    .exploded-pin-dot { width: 24px; height: 24px; font-size: 10px; cursor: pointer; }
}
/* Legend for mobile (visible only < 480px) */
.exploded-legend {
    display: none;
    max-width: 900px; margin: 40px auto 0;
    padding: 0 clamp(20px, 4vw, 48px);
}
@media (max-width: 480px) { .exploded-legend { display: block; } }
.exploded-legend-list { display: flex; flex-direction: column; gap: 12px; }
.exploded-legend-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
}
.exploded-legend-num {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: #fff;
    flex-shrink: 0;
}
.exploded-legend-text h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.exploded-legend-text p { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.4; margin: 0; }

/* Specs (blueprint bento) */
.product-template .specs-section { padding: 80px 24px 120px; position: relative; background: #FFFFFF; margin-top: -1px; }
.product-template .specs-section .bg-blueprint {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(10,10,15,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(10,10,15,0.04) 1px, transparent 1px);
    background-size: 40px 40px; z-index: 0; pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 10%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 90%);
}
.product-template .specs-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 10; }
.product-template .specs-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin: 0; }
.product-template .bento-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(176,29,44,0.1); color: var(--red); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.product-template .bento-item.large .bento-icon { background: rgba(255,255,255,0.1); color: #fff; }
.product-template .bento-item h3 { font-family: var(--font-display); font-size: 20px; margin: 0 0 10px; font-weight: 700; }
.product-template .bento-item p { color: var(--text-sec); font-size: 14.5px; line-height: 1.6; margin: 0; }
.product-template .bento-item.large p { color: rgba(255,255,255,0.6); }

/* FAQ — awwwards restyle */
.product-template .faq-section { padding: 100px 24px 140px; background: var(--bg-subtle); position: relative; z-index: 10; border-top: 1px solid var(--border-light); }
.product-template .faq-container { max-width: 800px; margin: 0 auto; }
.product-template .faq-header { text-align: center; margin-bottom: 50px; }
.product-template .faq-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; margin: 0; }
.product-template .faq-item { border-bottom: 1px solid var(--border-light); }
.product-template .faq-question {
    width: 100%; text-align: left; padding: 24px 0; font-family: var(--font-display);
    font-size: 18px; font-weight: 700; color: var(--text); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; transition: color 0.3s ease;
    background: none; border: none;
}
.product-template .faq-question:hover { color: var(--red); }
.product-template .faq-icon {
    width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease; color: var(--text);
    flex-shrink: 0;
}
.product-template .faq-item.active .faq-icon { transform: rotate(45deg); background: var(--text); color: #fff; border-color: var(--text); }
.product-template .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); }
.product-template .faq-answer-inner { padding: 0 0 24px; color: var(--text-sec); font-size: 15px; line-height: 1.6; }

/* Contact section */
.product-template .contact-section { padding: 120px 24px 180px; background: #13111d; color: #fff; text-align: center; position: relative; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.06); }
.product-template .contact-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60vw; height: 60vw; max-width: 600px; max-height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(123,31,162,0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none; z-index: 0;
}
.product-template .contact-content { position: relative; z-index: 10; max-width: 600px; margin: 0 auto; }
.product-template .contact-section h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 4rem); margin: 0 0 20px; font-weight: 800; letter-spacing: -0.03em; color: #fff; }
.product-template .contact-section p { color: rgba(255,255,255,0.6); font-size: 1.1rem; line-height: 1.6; margin: 0 0 40px; }
.product-template .contact-section .btn-white-pill {
    display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px;
    background: #fff; color: var(--bg-dark); font-family: var(--font-display); font-weight: 700; font-size: 16px;
    border-radius: 99px; transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none;
    border: none; cursor: pointer;
}
.product-template .contact-section .btn-white-pill:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,0.2); }

/* Sticky CTA bar (product) */
/* Desktop : bouton flottant compact en bas à droite */
.product-template-sticky {
    position: fixed; bottom: 24px; right: 24px; left: auto; width: auto;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light); padding: 10px 12px 10px 20px;
    display: flex; align-items: center; gap: 16px;
    z-index: 9998; transform: translateY(120px); transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.10); border-radius: 99px;
}
.product-template-sticky.is-visible { transform: translateY(0); }
.product-template-sticky .sticky-info h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin: 0; color: var(--text); white-space: nowrap; }
.product-template-sticky .sticky-info p { display: none; }
.product-template-sticky .btn-gradient-pill { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--grad); color: #fff; font-size: 13px; font-weight: 600; border-radius: 99px; border: none; cursor: pointer; box-shadow: var(--shadow-glow); transition: transform 0.3s ease, box-shadow 0.3s ease; font-family: var(--font-display); text-decoration: none; white-space: nowrap; }
.product-template-sticky .btn-gradient-pill:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(176,29,44,0.25); }

/* Mobile : barre pleine largeur en bas */
@media (max-width: 768px) {
    .product-template-sticky {
        bottom: 0; right: 0; left: 0; width: 100%; border-radius: 0;
        padding: 12px 16px; justify-content: center; gap: 0;
        border: none; border-top: 1px solid var(--border-light);
        box-shadow: 0 -6px 20px rgba(0,0,0,0.08); transform: translateY(100%);
    }
    .product-template-sticky .sticky-info { display: none; }
    .product-template-sticky .btn-gradient-pill { padding: 14px 28px; font-size: 14px; }
}

/* ===================================================================
   MARQUEE DOUBLE PISTE (v6 restauré)
   =================================================================== */
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg) 0%, transparent 100%); }
.marquee-wrap::after { right: 0; background: linear-gradient(270deg, var(--bg) 0%, transparent 100%); }
.marquee-track-1 { background: var(--bg-dark); padding: 18px 0; overflow: hidden; white-space: nowrap; position: relative; }
.marquee-track-1::before, .marquee-track-1::after { display: none; }
.marquee-track-1 .marquee-inner-wrap { mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%); }
.marquee-track-2 { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.marquee-inner { display: inline-flex; animation: logocom_marquee 28s linear infinite; will-change: transform; }
.marquee-track-2 .marquee-inner { animation-duration: 35s; animation-direction: reverse; }
/* hover pause supprimé — l'animation continue en permanence */
.marquee-stat { display: inline-flex; align-items: center; gap: 16px; padding: 0 40px; }
.marquee-stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -0.02em; background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.6) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.marquee-stat-label { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 400; text-transform: uppercase; letter-spacing: 0.05em; }
.marquee-sep { width: 6px; height: 6px; border-radius: 50%; background: var(--grad); display: inline-block; flex-shrink: 0; box-shadow: 0 0 12px rgba(176,29,44,0.6); }
.marquee-pill { display: inline-flex; align-items: center; padding: 8px 22px; border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: 13.5px; font-weight: 500; color: var(--text-sec); margin: 0 6px; background: var(--bg); transition: all 0.3s var(--ease); }
.marquee-pill:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
@keyframes logocom_marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@media (max-width: 768px) {
    .marquee-wrap::before, .marquee-wrap::after { width: 40px; }
    .marquee-stat-num { font-size: 24px; }
    .marquee-stat { padding: 0 24px; gap: 12px; }
    .marquee-stat-label { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
    .marquee-inner { animation: none !important; }
}

/* ===================================================================
   TRUST SECTION (Ils nous font confiance) — upgraded
   =================================================================== */
.trust-section {
    padding: 80px 24px 60px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.trust-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 900px 300px at center, rgba(176,29,44,0.035) 0%, transparent 70%);
    pointer-events: none;
}
.trust-header {
    position: relative;
    text-align: center;
    margin-bottom: 48px;
}
.trust-header .trust-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(176,29,44,0.05);
    border: 1px solid rgba(176,29,44,0.12);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}
.trust-header .trust-label::before,
.trust-header .trust-label::after {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: trust_pulse 2s ease-in-out infinite;
}
@keyframes trust_pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}
.trust-header h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.3;
}
.trust-header h3 strong {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.trust-header .trust-sub {
    margin: 14px auto 0;
    max-width: 560px;
    font-size: 15px;
    color: var(--text-sec);
    line-height: 1.6;
}
.trust-logos-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}
.trust-logos-track {
    display: inline-flex;
    gap: 72px;
    align-items: center;
    animation: logocom_marquee 40s linear infinite;
    will-change: transform;
    padding-right: 72px;
}
.trust-logos-marquee:hover .trust-logos-track { animation-play-state: paused; }
.trust-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    opacity: 0.35;
    filter: grayscale(1);
    transition: all 0.4s var(--ease);
    flex-shrink: 0;
    letter-spacing: -0.01em;
}
.trust-logo:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
    color: var(--red);
}
.trust-logo .trust-dot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--grad);
    margin-right: 10px;
    vertical-align: middle;
    box-shadow: 0 0 10px rgba(176,29,44,0.4);
}
@media (max-width: 768px) {
    .trust-section { padding: 60px 16px 40px; }
    .trust-logos-track { gap: 48px; padding-right: 48px; }
    .trust-logo { font-size: 18px; }
}

/* ================================================================
   HERO AGENCY EDITION — Aurora + Flying Canvas + Outline headline
   Toutes les classes sont prefix&eacute;es `ha-` pour ne pas collisionner
   ================================================================ */
.hero-agency {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(120px, 14vh, 180px) clamp(20px, 4vw, 56px) clamp(40px, 6vw, 80px);
    display: flex;
    align-items: center;
    background: var(--bg-subtle, #FAFAF7);
}
/* Aurora gradient réactif au curseur */
.hero-agency .ha-aurora {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(600px 600px at var(--ha-mx, 70%) var(--ha-my, 20%), rgba(176,29,44,0.28), transparent 55%),
        radial-gradient(700px 700px at calc(var(--ha-mx, 70%) + 20%) calc(var(--ha-my, 20%) + 30%), rgba(123,31,162,0.22), transparent 60%),
        radial-gradient(800px 800px at calc(var(--ha-mx, 70%) - 10%) calc(var(--ha-my, 20%) + 50%), rgba(46,40,157,0.20), transparent 65%);
    filter: blur(40px) saturate(1.1);
    transition: background 0.3s linear;
}
.hero-agency .ha-grid-bg {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background-image:
        linear-gradient(rgba(10,10,15,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,10,15,0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
    mask-image: radial-gradient(ellipse at center, #000 40%, transparent 85%);
}
.hero-agency::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.045; mix-blend-mode: multiply;
}
/* Grid 12 colonnes */
.hero-agency .ha-shell {
    position: relative; z-index: 3;
    display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
    width: 100%; max-width: var(--container-wide, 1440px); margin: 0 auto;
    align-content: space-between;
    min-height: calc(100vh - 200px);
}
/* Meta row haut */
.hero-agency .ha-meta-top {
    grid-column: 1 / -1;
    display: flex; justify-content: space-between; align-items: flex-start;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
    color: rgba(10,10,15,0.5);
}
.hero-agency .ha-meta-left { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-agency .ha-meta-left span { display: inline-flex; align-items: center; gap: 8px; }
.hero-agency .ha-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #22C55E; box-shadow: 0 0 14px rgba(34,197,94,0.75);
    animation: ha-pulse 2s cubic-bezier(0.66,0.01,0.17,0.97) infinite;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}
.hero-agency .ha-dot.ha-closed {
    background: #EF4444; box-shadow: 0 0 14px rgba(239,68,68,0.75);
}
@keyframes ha-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.35); } }
.hero-agency .ha-meta-right { text-align: right; line-height: 1.7; }

/* Headline */
.hero-agency .ha-head {
    grid-column: 1 / span 7;
    margin-top: clamp(40px, 8vh, 120px);
    position: relative; z-index: 4;
    max-width: min(900px, 58vw);
    padding-right: clamp(0px, 2vw, 32px);
}
.hero-agency .ha-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
    color: rgba(10,10,15,0.72);
    padding: 10px 18px;
    border: 1px solid rgba(10,10,15,0.12); border-radius: 999px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    margin-bottom: 36px;
}
.hero-agency .ha-eyebrow b { color: var(--text, #0A0A0F); font-weight: 600; }
.hero-agency .ha-line-sep { width: 1px; height: 12px; background: rgba(10,10,15,0.12); }

.hero-agency h1.ha-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.8rem, 7.2vw, 7.25rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--text, #0A0A0F);
    margin: 0;
    max-width: 100%;
}
.hero-agency h1.ha-title .ha-outline {
    display: inline-block;
}
.hero-agency h1.ha-title .ha-row {
    display: block; overflow: hidden; padding-bottom: 0.04em;
}
.hero-agency h1.ha-title .ha-row > span {
    display: inline-block;
    transform: translateY(110%); opacity: 0;
    will-change: transform;
}
.hero-agency h1.ha-title .ha-row.ha-reveal > span {
    transform: translateY(0); opacity: 1;
    transition: transform 1.1s cubic-bezier(0.66,0.01,0.17,0.97),
                opacity 1.1s cubic-bezier(0.66,0.01,0.17,0.97);
}
.hero-agency h1.ha-title .ha-row:nth-child(2) > span { transition-delay: 0.12s; }
.hero-agency h1.ha-title .ha-row:nth-child(3) > span { transition-delay: 0.24s; }
.hero-agency h1.ha-title em {
    font-style: normal; font-weight: 800;
    background: var(--grad); -webkit-background-clip: text; background-clip: text;
    color: transparent;
    position: relative; padding: 0 0.02em;
}
.hero-agency h1.ha-title em::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0.02em; height: 0.07em;
    background: var(--grad); opacity: 0.35;
    transform: scaleX(0); transform-origin: left;
    transition: transform 1.4s cubic-bezier(0.66,0.01,0.17,0.97) 0.8s;
}
.hero-agency h1.ha-title .ha-row.ha-reveal em::after { transform: scaleX(1); }
.hero-agency h1.ha-title .ha-outline {
    font-style: normal; font-weight: 800; color: transparent;
    -webkit-text-stroke: 2px var(--text, #0A0A0F);
}

/* Flying canvas */
.hero-agency .ha-canvas {
    position: absolute; top: 50%; right: 0;
    width: min(720px, 56vw); height: 80%;
    transform: translateY(-50%);
    pointer-events: none; z-index: 3;
}
.hero-agency .ha-card {
    position: absolute; pointer-events: auto;
    display: block;
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(10,10,15,0.35),
                0 8px 24px -12px rgba(10,10,15,0.12);
    transition: transform 0.6s cubic-bezier(0.66,0.01,0.17,0.97),
                box-shadow 0.6s cubic-bezier(0.66,0.01,0.17,0.97);
    will-change: transform;
    background: #fff; border: 1px solid rgba(255,255,255,0.6);
    cursor: pointer;
}
.hero-agency .ha-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-agency .ha-card .ha-label {
    position: absolute; left: 12px; bottom: 12px;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 9px; text-transform: uppercase; letter-spacing: 0.14em;
    padding: 6px 10px; border-radius: 999px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px); color: var(--text, #0A0A0F);
}
.hero-agency .ha-card .ha-num {
    position: absolute; top: 12px; right: 14px;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 9px; letter-spacing: 0.14em;
    color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero-agency .ha-card:hover {
    transform: translate(var(--ha-tx, 0), var(--ha-ty, 0)) rotate(var(--ha-r, 0deg)) scale(1.05) !important;
    box-shadow: 0 50px 100px -30px rgba(10,10,15,0.45),
                0 12px 30px -10px rgba(10,10,15,0.18);
}
.hero-agency .ha-c1 {
    width: 22vw; max-width: 280px; height: 22vw; max-height: 280px;
    top: 5%; right: 2%; --ha-r: -3deg;
    transform: translate(0,0) rotate(-3deg);
}
.hero-agency .ha-c2 {
    width: 18vw; max-width: 220px; height: 22vw; max-height: 280px;
    top: 0%; right: 26%; --ha-r: 4deg;
    transform: translate(0,0) rotate(4deg);
}
.hero-agency .ha-c3 {
    width: 17vw; max-width: 210px; height: 14vw; max-height: 180px;
    top: 46%; right: 32%; --ha-r: -2deg;
    transform: translate(0,0) rotate(-2deg);
}
.hero-agency .ha-c4 {
    width: 20vw; max-width: 250px; height: 16vw; max-height: 200px;
    top: 50%; right: 4%; --ha-r: 5deg;
    transform: translate(0,0) rotate(5deg);
}
/* Badges stats flottants */
.hero-agency .ha-badge {
    position: absolute; pointer-events: auto;
    padding: 14px 18px; border-radius: 14px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 20px 40px -20px rgba(10,10,15,0.2);
    transition: transform 0.6s cubic-bezier(0.66,0.01,0.17,0.97);
}
.hero-agency .ha-badge .ha-badge-num {
    font-family: var(--font-display); font-weight: 800; font-size: 22px;
    letter-spacing: -0.02em; display: block;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-agency .ha-badge .ha-badge-lbl {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 9px; text-transform: uppercase; letter-spacing: 0.14em;
    color: rgba(10,10,15,0.72);
}
.hero-agency .ha-b1 { top: 28%; right: 42%; --ha-r: -5deg; transform: rotate(-5deg); }
.hero-agency .ha-b2 { top: 78%; right: 22%; --ha-r:  3deg; transform: rotate(3deg); }
.hero-agency .ha-b3 { top: -2%; right: 48%; --ha-r:  2deg; transform: rotate(2deg); }

/* Reveal canvas on load */
.hero-agency .ha-canvas .ha-card,
.hero-agency .ha-canvas .ha-badge {
    opacity: 0;
    transform: translate(0, 30px) rotate(var(--ha-r, 0deg));
}
.hero-agency .ha-canvas.ha-in .ha-card,
.hero-agency .ha-canvas.ha-in .ha-badge {
    opacity: 1;
    transition: opacity 1s cubic-bezier(0.66,0.01,0.17,0.97),
                transform 1s cubic-bezier(0.66,0.01,0.17,0.97);
}
.hero-agency .ha-canvas.ha-in .ha-c1 { transform: translate(0,0) rotate(-3deg); transition-delay: 0.5s; }
.hero-agency .ha-canvas.ha-in .ha-c2 { transform: translate(0,0) rotate(4deg);  transition-delay: 0.6s; }
.hero-agency .ha-canvas.ha-in .ha-c3 { transform: translate(0,0) rotate(-2deg); transition-delay: 0.7s; }
.hero-agency .ha-canvas.ha-in .ha-c4 { transform: translate(0,0) rotate(5deg);  transition-delay: 0.8s; }
.hero-agency .ha-canvas.ha-in .ha-b1 { transform: rotate(-5deg); transition-delay: 0.9s; }
.hero-agency .ha-canvas.ha-in .ha-b2 { transform: rotate(3deg);  transition-delay: 1.0s; }
.hero-agency .ha-canvas.ha-in .ha-b3 { transform: rotate(2deg);  transition-delay: 1.1s; }

/* Bottom dock */
.hero-agency .ha-dock {
    grid-column: 1 / -1;
    display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
    padding: 40px 0 0; align-items: end;
    position: relative; z-index: 4;
}
.hero-agency .ha-intro { grid-column: 1 / span 5; max-width: 480px; }
.hero-agency .ha-intro p {
    font-size: 16px; line-height: 1.65; color: rgba(10,10,15,0.72);
    margin-bottom: 32px; font-weight: 500;
}
/* CTA Premium */
.hero-agency .ha-cta {
    display: inline-flex; align-items: center; gap: 14px;
    min-height: 52px;
    padding: 18px 36px; border-radius: 999px;
    background: var(--grad); color: #fff;
    font-weight: 600; font-size: 15px; letter-spacing: 0.02em;
    transition: transform 0.4s cubic-bezier(0.66,0.01,0.17,0.97),
                box-shadow 0.4s cubic-bezier(0.66,0.01,0.17,0.97);
    position: relative; overflow: hidden; isolation: isolate;
    box-shadow: 0 8px 30px rgba(176,29,44,0.3);
    text-decoration: none;
}
.hero-agency .ha-cta::before {
    content: ""; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%; z-index: 1;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: ha-shimmer 2.5s ease-in-out infinite;
}
@keyframes ha-shimmer { 0%{left:-100%} 50%{left:100%} 100%{left:100%} }
.hero-agency .ha-cta span,
.hero-agency .ha-cta svg { position: relative; z-index: 2; }
.hero-agency .ha-cta svg { transition: transform 0.4s cubic-bezier(0.66,0.01,0.17,0.97); }
.hero-agency .ha-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(123,31,162,0.4), 0 0 20px rgba(176,29,44,0.3);
}
.hero-agency .ha-cta:hover svg { transform: translateX(6px); }
.hero-agency .ha-cta:focus-visible { outline: 3px solid rgba(123,31,162,0.5); outline-offset: 4px; }

/* Scroll marker */
.hero-agency .ha-scroll-mark {
    grid-column: 10 / span 3; align-self: end; justify-self: end;
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em;
    color: rgba(10,10,15,0.5);
}
.hero-agency .ha-scroll-bar {
    position: relative; width: 1px; height: 54px;
    background: rgba(10,10,15,0.12); overflow: hidden;
}
.hero-agency .ha-scroll-bar::after {
    content: ""; position: absolute; top: -50%; left: 0; right: 0;
    height: 50%; background: var(--text, #0A0A0F);
    animation: ha-scr 2.4s cubic-bezier(0.66,0.01,0.17,0.97) infinite;
}
@keyframes ha-scr { 0%{top:-50%} 100%{top:100%} }

/* Fade base */
.hero-agency .ha-fade {
    opacity: 0; transform: translateY(16px);
    transition: opacity 1s cubic-bezier(0.66,0.01,0.17,0.97) 0.2s,
                transform 1s cubic-bezier(0.66,0.01,0.17,0.97) 0.2s;
}
.hero-agency .ha-fade.ha-in { opacity: 1; transform: none; animation: none; }
.hero-agency .ha-fade.ha-d2 { transition-delay: 0.4s; }
.hero-agency .ha-fade.ha-d3 { transition-delay: 0.55s; }
.hero-agency .ha-fade.ha-d4 { transition-delay: 0.75s; }
/* Safety net — hero visible after 3s even if JS fails */
.hero-agency .ha-fade { animation: logocom-safety-reveal 0s 3s forwards; }

/* Responsive */
@media (max-width: 1100px) {
    .hero-agency .ha-head {
        grid-column: 1 / -1;
        max-width: none;
        padding-right: 0;
    }
    .hero-agency h1.ha-title { font-size: clamp(2.6rem, 9vw, 5.6rem); }
    .hero-agency .ha-canvas {
        position: relative; width: 100%; height: 340px;
        margin-top: 24px; transform: none; top: auto;
        grid-column: 1 / -1;
    }
    .hero-agency .ha-c1 { width: 38%; height: 200px; top: 10px; right: 4%; }
    .hero-agency .ha-c2 { width: 30%; height: 180px; top: 40px; right: 44%; }
    .hero-agency .ha-c3 { width: 28%; height: 120px; top: 200px; right: 38%; }
    .hero-agency .ha-c4 { width: 34%; height: 140px; top: 180px; right: 4%; }
    .hero-agency .ha-b1 { top: 90px; right: 36%; }
    .hero-agency .ha-b2 { top: 240px; right: 68%; }
    .hero-agency .ha-b3 { display: none; }
}
@media (max-width: 768px) {
    .hero-agency { padding: 110px 20px 60px; }
    .hero-agency .ha-meta-left span:not(:first-child) { display: none; }
    .hero-agency .ha-meta-right { display: none; }
    .hero-agency h1.ha-title { font-size: clamp(2.4rem, 13vw, 4.2rem); }
    .hero-agency .ha-eyebrow { margin-bottom: 24px; }
    .hero-agency .ha-dock { grid-template-columns: 1fr; gap: 24px; padding-top: 20px; }
    .hero-agency .ha-intro { grid-column: 1 / -1; max-width: none; }
    .hero-agency .ha-scroll-mark { display: none; }
    .hero-agency .ha-canvas { height: 260px; }
    .hero-agency .ha-c1 { width: 46%; height: 150px; top: 10px; right: 2%; }
    .hero-agency .ha-c2 { width: 38%; height: 140px; top: 30px; right: 50%; }
    .hero-agency .ha-c3 { display: none; }
    .hero-agency .ha-c4 { display: none; }
    .hero-agency .ha-b1, .hero-agency .ha-b2 { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .hero-agency .ha-cta::before,
    .hero-agency .ha-dot,
    .hero-agency .ha-scroll-bar::after { animation: none; }
    .hero-agency h1.ha-title .ha-row > span { transition-duration: 0.3s; }
}

/* =====================================================================
   MOBILE POLISH V7 — adaptations des sections recemment ajoutees
   ===================================================================== */

/* --- HEADER + TOPBAR : plus compacts sur mobile --- */
@media (max-width: 768px) {
    .header-topbar { font-size: 11px; padding: 5px 14px; }
    .header-topbar .topbar-right { display: none; }
}

/* --- HERO AGENCY : refinements tablette & mobile --- */
@media (max-width: 900px) {
    .hero-agency { padding: clamp(100px, 12vh, 140px) 18px clamp(32px, 6vw, 56px); }
    .hero-agency .ha-shell { gap: 16px; }
    .hero-agency .ha-meta-top { font-size: 10px; }
    .hero-agency .ha-eyebrow { font-size: 10px; padding: 8px 14px; margin-bottom: 22px; }
    .hero-agency h1.ha-title { font-size: clamp(2.4rem, 11.5vw, 4.4rem); line-height: 0.98; }
    .hero-agency .ha-intro p { font-size: 15px; line-height: 1.55; }
    .hero-agency .ha-cta { padding: 14px 22px; font-size: 13px; }
    .hero-agency .ha-card { border-radius: 12px; }
    .hero-agency .ha-badge { font-size: 10px; padding: 8px 12px; }
}
@media (max-width: 560px) {
    .hero-agency .ha-canvas { height: 220px; margin-top: 16px; }
    .hero-agency .ha-c1 { width: 52%; height: 130px; top: 6px; right: 2%; }
    .hero-agency .ha-c2 { width: 42%; height: 120px; top: 24px; right: 54%; }
    .hero-agency .ha-dock { padding-top: 16px; }
    .hero-agency .ha-intro { gap: 18px; }
}

/* --- TRANSITIONS ARNTREAL PRODUIT : desactivees sur mobile (pages produit uniquement) --- */
@media (max-width: 1023px) {
    .product-template .exploded-view-section,
    .product-template .specs-section {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        will-change: auto;
    }
    .product-template .hero-configurator {
        transform: none !important;
    }
    /* NB : #sectionB2B et #hiw-master gardent le pin + morph sur mobile. */
}

/* --- PRODUCT HERO : stack propre, sidebar full width, modal fluide --- */
@media (max-width: 1024px) {
    .product-template .hero-configurator { padding: 100px 0 48px; gap: 24px; }
    .product-template .config-main-area h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .product-template .config-main-area p.subtitle { font-size: 0.98rem; margin-bottom: 28px; }
    .product-template .wp-shortcode-container { min-height: 280px; border-radius: 20px; }
    .product-template .config-info-sidebar { padding: 0 20px; }
    .product-template .info-modal { padding: 28px 24px; border-radius: 20px; }
    .product-template .info-modal h2 { font-size: 20px; }
    .product-template .price-hint strong { font-size: 24px; }
}

/* --- EXPLODE VIEW : reduire hauteur + scale des layers sur mobile --- */
@media (max-width: 900px) {
    .exploded-view-section,
    .product-template .exploded-view-section { padding: 60px 0 80px; }
    .exploded-header { margin-bottom: 40px; padding: 0 20px; }
    .exploded-header h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .exploded-header p { font-size: 0.95rem; }
    .explode-container { height: 420px; perspective: 900px; }
    .layer {
        width: 160px; height: 160px;
        margin-top: -80px; margin-left: -80px;
        font-size: 80px; border-radius: 26px;
    }
    .layer-label { display: none !important; }
}
@media (max-width: 560px) {
    .explode-container { height: 340px; }
    .layer { width: 130px; height: 130px; margin-top: -65px; margin-left: -65px; font-size: 64px; border-radius: 22px; }
}

/* --- BENTO SPECS : 1 colonne et padding reduit --- */
@media (max-width: 768px) {
    .specs-bento, .bento-grid { padding: 0 18px; gap: 14px; }
    .spec-card, .bento-item { padding: 24px; border-radius: 18px; }
    .spec-card h4, .product-template .bento-item h3 { font-size: 17px; }
    .spec-card p, .product-template .bento-item p { font-size: 13.5px; }
    .product-template .specs-section { padding: 60px 0 80px; }
    .product-template .specs-header { margin-bottom: 36px; }
}

/* --- MARQUEE : plus lisible sur petit ecran --- */
@media (max-width: 768px) {
    .marquee-track-1, .marquee-track-2 { padding: 14px 0; }
    .marquee-stat { padding: 0 20px; gap: 10px; }
    .marquee-stat-num { font-size: 22px; }
    .marquee-stat-label { font-size: 10.5px; letter-spacing: 0.04em; }
    .marquee-pill { font-size: 12.5px; padding: 7px 18px; margin: 0 4px; }
    .marquee-inner { animation-duration: 22s; }
    .marquee-track-2 .marquee-inner { animation-duration: 28s; }
}

/* --- TRUST SECTION : titre et sub plus compacts --- */
@media (max-width: 768px) {
    .trust-section { padding: 50px 16px 36px; }
    .trust-header { margin-bottom: 28px; }
    .trust-header h3 { font-size: clamp(1.4rem, 6vw, 1.8rem); line-height: 1.2; }
    .trust-header .trust-sub { font-size: 13px; }
    .trust-logos-track { gap: 36px; padding-right: 36px; animation-duration: 24s; }
    .trust-logo { font-size: 16px; }
    .trust-logo .trust-dot { width: 5px; height: 5px; }
}


/* --- PRODUCT CONTACT CTA : plus doux --- */
@media (max-width: 768px) {
    .product-template .contact-section { padding: 80px 20px 120px; }
    .product-template .contact-section h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .product-template .contact-section p { font-size: 0.98rem; margin-bottom: 28px; }
    .product-template .contact-section .btn-white-pill { padding: 14px 28px; font-size: 14px; }
}

/* --- Respecter les preferences de mouvement pour toutes les anims recentes --- */
@media (prefers-reduced-motion: reduce) {
    .marquee-inner,
    .trust-logos-track,
    .hero-agency .ha-scroll-bar::after,
    .hero-agency .ha-dot { animation: none !important; }
    .hero-agency .ha-fade,
    .hero-agency h1.ha-title .ha-row > span { transition: none !important; }
    .hero-agency .ha-fade { opacity: 1 !important; transform: none !important; }
    .hero-agency h1.ha-title .ha-row > span { opacity: 1 !important; transform: none !important; }
}

/* ================================================================ NOS MARQUES CAROUSEL */
.nos-marques-section {
    padding: 60px 0 40px;
    background: var(--bg);
    overflow: hidden;
    position: relative;
}
.nos-marques-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 var(--px);
}
.nos-marques-header .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.nos-marques-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    margin: 0;
}
.nos-marques-track-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.nos-marques-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: logocom_marquesSlide 30s linear infinite;
    padding: 20px 0;
}
.nos-marques-slide {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: none;
    opacity: 1;
    transition: transform 0.4s ease;
}
.nos-marques-slide:hover {
    transform: scale(1.08);
}
.nos-marques-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
}
@keyframes logocom_marquesSlide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .nos-marques-section { padding: 40px 0 30px; }
    .nos-marques-track { gap: 40px; }
    .nos-marques-slide { width: 90px; height: 45px; }
    .testimonial-card::before { font-size: 60px; }
}

/* ── Mobile-friendly fixes: 3D product font-sizes & touch targets ── */
@media (max-width: 768px) {
    .layer-part { font-size: 200px !important; }
    .neon-face, .plexi-groove, .silicone-slice { font-size: 70px !important; }
    .caisson-face .logo { font-size: 32px !important; }
    .drapeau-face .logo { font-size: 28px !important; }
    .alu-slice { font-size: 200px !important; }
    .holo-card-cta { min-height: 44px; display: inline-flex; align-items: center; }
    .btn-devis, .btn-gradient, .btn-outline, .btn-cta-white, .btn-cta-outline { min-height: 44px; }
}
@media (max-width: 480px) {
    .layer-part { font-size: 120px !important; }
    .neon-face, .plexi-groove, .silicone-slice { font-size: 50px !important; }
    .alu-slice { font-size: 120px !important; }
}

