/* ==========================================================================
   ATELIER DIGITAL - STYLESHEET
   ----------------------------------------------------------------------------
   Organization note:
   - The order of blocks is intentional (cascade + final override layers).
   - Keep the bottom responsive refinement blocks at the end of the file.
   ========================================================================== */

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-VariableItalic.woff2') format('woff2');
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Syne';
  src: url('fonts/syne-v24-latin-regular.woff2') format('woff2');
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg:#050505;
  --panel:#0c0c0c;
  --text:#ffffff;
  --muted:rgba(255,255,255,.68);
  --line:rgba(255,255,255,.10);
  --primary:#CC1C1C;
  --primary-2:#F4F0F0;
  --primary-dark:#A01414;
  --accent:#888888;
  --accent-soft:#666666;
  --silver:#C7CAC5;
  --metal:#8F9490;
  --ads-gradient:linear-gradient(90deg, #CC1C1C 0%, #A01414 55%, #7a0f0f 100%);
  --glass-bg:linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  --glass-border:rgba(255,255,255,.28);
  --shadow:0 20px 50px rgba(0,0,0,.55);
  --radius:24px;
  --cta-cut:18px;
  --cta-cut-mobile:12px;
  --cta-primary-bg:linear-gradient(145deg, #ffffff 0%, #f3f3f3 100%);
  --cta-primary-bg-hover:linear-gradient(145deg, #ffffff 0%, #d6d6d6 100%);
  --cta-dark-bg:rgba(255,255,255,.045);
  --cta-dark-bg-hover:rgba(255,255,255,.09);
  --cta-border:rgba(255,255,255,.22);
  --cta-border-hover:rgba(204,28,28,.62);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: 'Satoshi', "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg, #050505);
  background-image:
    radial-gradient(1200px 900px at 10% 10%, rgba(204,28,28,.055), transparent 55%),
    radial-gradient(900px 600px at 90% 20%, rgba(255,255,255,.03), transparent 45%);
  color:var(--text, #ffffff);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  line-height:1.45;
  font-feature-settings:"cv11", "ss01";
  text-rendering:optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:3px 3px;
  opacity:.12;
  z-index:-1;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

/* 01) Foundations: focus and accessibility */
:focus-visible{outline:2px solid var(--primary);outline-offset:3px;border-radius:6px}
a:focus-visible,
button:focus-visible{
  box-shadow:0 0 0 2px rgba(5,5,5,.95), 0 0 0 4px rgba(204,28,28,.42);
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);clip-path:inset(50%);white-space:nowrap;border:0}

/* 02) Navigation: desktop header and active links */
.brand-anchor{
  position:relative;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  box-shadow:none;
  transition:none;
}
.brand-anchor::before{
  content:none;
}
.brand-anchor:hover{
  border:0;
  background:transparent;
  box-shadow:none;
  transform:none;
}

.site-logo{
  display:block;
  width:clamp(120px, 12vw, 200px);
  height:auto;
  object-fit:contain;
}

.site-logo--header{
  width:clamp(150px, 12vw, 200px);
  height:46px;
  max-width:200px;
  max-height:46px;
  object-fit:cover;
  object-position:center;
}

.site-logo--footer{
  width:clamp(150px, 14vw, 220px);
  height:58px;
  max-width:220px;
  max-height:58px;
  object-fit:cover;
  object-position:center;
}

.footer-brand-link{
  display:inline-flex;
  color:inherit;
}

#footerBrandName{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.footer-brand-meta{
  margin-top:8px;
}

@media (max-width: 767px){
  .site-logo--header{
    width:128px;
    height:40px;
    max-height:40px;
  }

  .site-logo--footer{
    width:150px;
    height:52px;
    max-height:52px;
  }

  #footerBrandName{
    align-items:center;
    text-align:center;
  }

  .footer-brand-meta{
    margin-top:6px;
  }
}

.nav-track-link{
  position:relative;
}
.mobile-menu-call svg{
  width:16px;
  height:16px;
  flex:0 0 auto;
}
#top{
  will-change:transform;
}
.nav-track-link.is-active{
  color:var(--primary) !important;
}
.nav-track-link.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-7px;
  height:2px;
  border-radius:2px;
  background:var(--ads-gradient);
  opacity:.95;
}
#mobileMenu .nav-track-link.is-active{
  text-shadow:0 0 20px rgba(204,28,28,.42);
}
#mobileMenu .nav-track-link.is-active::after{
  left:22%;
  right:22%;
  bottom:-4px;
}

/* 03) Navigation: mobile menu and open animation */
@media (max-width: 1023px){
  #mobileMenu{
    background:rgba(0,0,0,.95);
    backdrop-filter:blur(4px);
    -webkit-backdrop-filter:blur(4px);
  }
  #mobileMenuBtn > span,
  #mobileMenuBtn > span > span{
    transition:transform .3s ease, opacity .22s ease, background-color .22s ease;
  }
  body.menu-open #mobileMenuBtn > span{
    background-color:transparent !important;
  }
  body.menu-open #mobileMenuBtn > span > span:first-child{
    transform:translateY(6px) rotate(45deg);
  }
  body.menu-open #mobileMenuBtn > span > span:last-child{
    transform:translateY(-6px) rotate(-45deg);
  }

  #mobileMenu .nav-track-link{
    opacity:0;
    transform:translateY(12px);
    transform-origin:center;
  }
  #mobileMenu > div:first-child{
    opacity:0;
    transform:translateY(8px);
  }
  #mobileMenu .mobile-menu-actions{
    opacity:0;
    transform:translateY(12px);
  }

  body.menu-open #mobileMenu > div:first-child{
    animation:mobileMenuSoftIn .3s cubic-bezier(.2,.84,.3,1) both;
  }
  body.menu-open #mobileMenu .nav-track-link{
    animation:mobileMenuSoftIn .44s cubic-bezier(.2,.84,.3,1) both;
  }
  body.menu-open #mobileMenu .nav-track-link:nth-of-type(1){ animation-delay:.08s; }
  body.menu-open #mobileMenu .nav-track-link:nth-of-type(2){ animation-delay:.12s; }
  body.menu-open #mobileMenu .nav-track-link:nth-of-type(3){ animation-delay:.16s; }
  body.menu-open #mobileMenu .nav-track-link:nth-of-type(4){ animation-delay:.2s; }
  body.menu-open #mobileMenu .nav-track-link:nth-of-type(5){ animation-delay:.24s; }
  body.menu-open #mobileMenu .nav-track-link:nth-of-type(6){ animation-delay:.28s; }
  body.menu-open #mobileMenu .mobile-menu-actions{
    animation:mobileMenuSoftIn .42s cubic-bezier(.2,.84,.3,1) .3s both;
  }
}

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

/* 04) Typography utilities */
.font-syne { font-family: 'Syne', sans-serif; }

/* 05) Shared surfaces: glass cards and text rhythm */
.glass-card{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.06);
  backdrop-filter:blur(14px);
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset, 0 18px 50px rgba(0,0,0,.45);
  transition:background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.glass-card:hover{
  border-color: rgba(204,28,28,.25);
  box-shadow: 0 0 0 1px rgba(204,28,28,.15) inset, 0 22px 70px rgba(0,0,0,.55);
}
section{ position:relative; }
p{ text-wrap:pretty; }
h1,h2,h3{
  text-wrap:balance;
  overflow-wrap:normal;
}
main h1,
main h2,
main h3{
  text-rendering:optimizeLegibility;
  hanging-punctuation:first last;
}
main h1{
  letter-spacing:-.022em;
}
main h2{
  line-height:1;
  letter-spacing:-.018em;
}
main h3{
  line-height:1.12;
  letter-spacing:-.008em;
}

/* 06) Shared headings rhythm (desktop) */
#services .services-signature__title,
#tarifs h2,
#realisations h2,
#avis h2,
#faq h2,
#contact h2{
  max-width:17ch;
}
#realisations h2{
  max-width:14ch;
}
#contact h2{
  max-width:11ch;
}
#avis h2{
  max-width:21ch;
}
#services .service-card__title,
#process .process-flow__title,
#tarifs article h3,
#realisations article h3,
section.py-20.bg-neutral-900.border-t.border-white\/5 h3{
  text-wrap:balance;
}

/* 07) Service icons */
.service-icon{
  width:24px;
  height:24px;
  stroke:currentColor;
  stroke-width:1.9;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.service-icon-dot{
  fill:currentColor;
  stroke:none;
}
.service-icon-img{
  width:24px;
  height:24px;
  object-fit:contain;
  filter:brightness(0) invert(1) contrast(1.05);
  transition:filter .25s ease;
}
.group:hover .service-icon-img{
  filter:brightness(0) saturate(100%);
}
.devis-btn-icon{
  width:15px;
  height:15px;
  object-fit:contain;
  display:block;
}

/* 08) Shared button interactions */
.btn-sheen{ position:relative; overflow:hidden; }
.btn-sheen::after{
  content:""; position:absolute; inset:-40%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.22), transparent);
  transform:translateX(-60%) rotate(15deg);
  transition:transform .6s cubic-bezier(.16,1,.3,1);
}
.btn-sheen:hover::after{ transform:translateX(60%) rotate(15deg); }

/* 09) CTA system: single beveled design */
.hero-cta-primary,
.hero-cta-primary[data-open-wizard="true"],
.hero-cta-secondary,
.mobile-menu-call,
.wizard-btn,
.service-sheet-btn,
.process-flow__cta,
#services .services-desktop-cta,
#services .services-signature__cta,
.btn-google,
#top [data-open-wizard="true"],
#contact .mt-12.flex.flex-col.sm\:flex-row > a,
#contact .mt-12.flex.flex-col.sm\:flex-row > button,
#homeFloatingCtas > button[data-open-wizard="true"],
#homeFloatingCtas > a[data-client-phone-href]{
  position:relative !important;
  isolation:isolate;
  border-radius:0 !important;
  clip-path:polygon(var(--cta-cut) 0, 100% 0, calc(100% - var(--cta-cut)) 100%, 0 100%) !important;
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:0 34px !important;
  border:1px solid var(--cta-border) !important;
  font-size:11px !important;
  font-weight:900 !important;
  line-height:1;
  letter-spacing:.28em !important;
  text-transform:uppercase;
  text-shadow:none !important;
  box-shadow:none !important;
  transform:translateZ(0);
  transition:background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease !important;
  overflow:hidden;
}

.hero-cta-primary::before,
.hero-cta-primary::after,
.hero-cta-secondary::before,
.hero-cta-secondary::after,
.mobile-menu-call::before,
.mobile-menu-call::after,
.wizard-btn::before,
.wizard-btn::after,
.service-sheet-btn::before,
.service-sheet-btn::after,
.process-flow__cta::before,
.process-flow__cta::after,
#services .services-desktop-cta::before,
#services .services-desktop-cta::after,
#services .services-signature__cta::before,
#services .services-signature__cta::after,
.btn-google::before,
.btn-google::after,
#top [data-open-wizard="true"]::before,
#top [data-open-wizard="true"]::after,
#contact .mt-12.flex.flex-col.sm\:flex-row > a::before,
#contact .mt-12.flex.flex-col.sm\:flex-row > a::after,
#contact .mt-12.flex.flex-col.sm\:flex-row > button::before,
#contact .mt-12.flex.flex-col.sm\:flex-row > button::after,
#homeFloatingCtas > button[data-open-wizard="true"]::before,
#homeFloatingCtas > button[data-open-wizard="true"]::after,
#homeFloatingCtas > a[data-client-phone-href]::before,
#homeFloatingCtas > a[data-client-phone-href]::after{
  content:none !important;
}

.hero-cta-primary,
.hero-cta-primary[data-open-wizard="true"],
.mobile-menu-call,
.wizard-btn--primary,
.service-sheet-btn--primary,
#top [data-open-wizard="true"],
#contact .mt-12.flex.flex-col.sm\:flex-row > button,
#homeFloatingCtas > button[data-open-wizard="true"]{
  background:var(--cta-primary-bg) !important;
  border-color:transparent !important;
  color:#0b1117 !important;
}

.hero-cta-primary:hover,
.hero-cta-primary[data-open-wizard="true"]:hover,
.mobile-menu-call:hover,
.wizard-btn--primary:hover,
.service-sheet-btn--primary:hover,
#top [data-open-wizard="true"]:hover,
#contact .mt-12.flex.flex-col.sm\:flex-row > button:hover,
#homeFloatingCtas > button[data-open-wizard="true"]:hover{
  background:var(--cta-primary-bg-hover) !important;
  color:#0b1117 !important;
  transform:translateY(-1px);
}

.hero-cta-secondary,
.wizard-btn--ghost,
.service-sheet-btn--ghost,
.process-flow__cta,
#services .services-desktop-cta,
#services .services-signature__cta,
.btn-google,
#contact .mt-12.flex.flex-col.sm\:flex-row > a,
#homeFloatingCtas > a[data-client-phone-href]{
  background:var(--cta-dark-bg) !important;
  border-color:var(--cta-border) !important;
  color:#c4ced8 !important;
}

.hero-cta-secondary:hover,
.wizard-btn--ghost:hover,
.service-sheet-btn--ghost:hover,
.process-flow__cta:hover,
#services .services-desktop-cta:hover,
#services .services-signature__cta:hover,
.btn-google:hover,
#contact .mt-12.flex.flex-col.sm\:flex-row > a:hover,
#homeFloatingCtas > a[data-client-phone-href]:hover{
  background:var(--cta-dark-bg-hover) !important;
  border-color:var(--cta-border-hover) !important;
  color:#fff !important;
  transform:translateY(-1px);
}

.hero-cta-primary .devis-btn-icon,
#top [data-open-wizard="true"] .devis-btn-icon,
#contact .mt-12.flex.flex-col.sm\:flex-row > button .devis-btn-icon,
#homeFloatingCtas > button[data-open-wizard="true"] .devis-btn-icon{
  filter:brightness(0) saturate(100%) !important;
}

.hero-cta-secondary::before,
#contact .mt-12.flex.flex-col.sm\:flex-row > a::before{
  content:"☎" !important;
  position:static !important;
  inset:auto !important;
  z-index:auto !important;
  width:auto !important;
  height:auto !important;
  background:none !important;
  color:currentColor;
  font-size:17px;
  line-height:1;
  letter-spacing:0;
}

#contact .contact-whatsapp-btn{
  position:relative !important;
  isolation:isolate;
  min-height:54px;
  margin-top:12px;
  padding:0 34px !important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  clip-path:polygon(var(--cta-cut) 0, 100% 0, calc(100% - var(--cta-cut)) 100%, 0 100%) !important;
  border:1px solid rgba(37,211,102,.45) !important;
  background:#25D366 !important;
  color:#07130b !important;
  font-size:11px !important;
  font-weight:900 !important;
  line-height:1;
  letter-spacing:.28em !important;
  text-transform:uppercase;
  text-align:center;
  overflow:hidden;
  transform:translateZ(0);
  transition:background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease !important;
}

#contact .contact-whatsapp-btn.hidden{
  display:none !important;
}

#contact .contact-whatsapp-btn:hover{
  background:#fff !important;
  border-color:transparent !important;
  color:#07130b !important;
  transform:translateY(-1px);
}

#contact .contact-whatsapp-btn::before,
#contact .contact-whatsapp-btn::after{
  content:none !important;
  display:none !important;
  pointer-events:none;
}

#contact .contact-whatsapp-btn svg,
#contact .contact-whatsapp-btn img{
  position:static !important;
  inset:auto !important;
  width:18px;
  height:18px;
  flex:0 0 18px;
  display:block;
  transform:none !important;
  z-index:auto;
}

.hero-cta-row{
  gap:28px;
}

.hero-cta-row > *{
  min-width:min(100%, 330px);
}

#homeFloatingCtas > a[data-client-phone-href]{
  width:54px !important;
  height:54px !important;
  min-height:54px;
  padding:0 !important;
}

@media (max-width: 767px){
  .hero-cta-primary,
  .hero-cta-primary[data-open-wizard="true"],
  .hero-cta-secondary,
  .mobile-menu-call,
  .wizard-btn,
  .service-sheet-btn,
  .process-flow__cta,
  #services .services-desktop-cta,
  #services .services-signature__cta,
  .btn-google,
  #top [data-open-wizard="true"],
  #contact .mt-12.flex.flex-col.sm\:flex-row > a,
  #contact .mt-12.flex.flex-col.sm\:flex-row > button,
  #homeFloatingCtas > button[data-open-wizard="true"],
  #homeFloatingCtas > a[data-client-phone-href]{
    clip-path:polygon(var(--cta-cut-mobile) 0, 100% 0, calc(100% - var(--cta-cut-mobile)) 100%, 0 100%) !important;
    min-height:48px !important;
    padding:0 24px !important;
    font-size:10px !important;
    letter-spacing:.2em !important;
  }

  #homeFloatingCtas > a[data-client-phone-href]{
    width:48px !important;
    height:48px !important;
    padding:0 !important;
  }
}

/* 11) Compare slider */
.compare{ 
  position: relative; 
  border-radius:18px; 
  overflow:hidden; 
  border:1px solid rgba(255,255,255,.12); 
  background:
    radial-gradient(circle at 20% 10%, rgba(204,28,28,.18), transparent 45%),
    #030303;
  box-shadow:var(--shadow);
}
.compare-viewport{
  height: clamp(300px, 62vw, 460px);
  /* Limite la zone de repaint au viewport du slider */
  contain:layout paint style;
}
.compare-viewport.is-dragging{
  cursor:grabbing !important;
}
.compare-after{
  /* clip-path est compositée GPU — pas de reflow contrairement à width */
  will-change:clip-path;
}
.compare-handle-line,
.compare-handle-btn{
  /* transform est compositée GPU — zéro reflow */
  will-change:transform;
}
.compare-viewport img{
  backface-visibility:hidden;
  transform:translateZ(0);
  user-select:none;
  -webkit-user-drag:none;
  pointer-events:none;
}
.compare-badge{
  /* Couche GPU dédiée pour que le backdrop-filter ne bloque pas le slider */
  transform:translateZ(0);
  backface-visibility:hidden;
}
.compare-card{
  padding:14px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  box-shadow:0 20px 40px rgba(0,0,0,.35);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.compare-card:hover{
  border-color:rgba(204,28,28,.38);
  transform:translateY(-2px);
  box-shadow:0 25px 52px rgba(0,0,0,.42);
}
.compare-showcase{
  position:relative;
}
.compare-showcase::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(650px 300px at 25% 15%, rgba(204,28,28,.10), transparent 70%),
    radial-gradient(500px 250px at 88% 80%, rgba(255,255,255,.05), transparent 75%);
}
.compare-legend .compare-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--primary);
  box-shadow:0 0 10px rgba(204,28,28,.8);
}
.compare-mobile-hint{
  letter-spacing:.18em;
}
.compare-badge{
  position:absolute;
  top:12px;
  z-index:3;
  font-size:10px;
  line-height:1;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(6px);
  background:rgba(0,0,0,.45);
}
.compare-badge--before{
  left:12px;
}
.compare-badge--after{
  right:12px;
  color:var(--primary-2);
  border-color:rgba(204,28,28,.45);
}
.compare-handle-line{
  box-shadow:0 0 20px rgba(255,255,255,.38);
}
.compare-handle-btn{
  border-color:rgba(204,28,28,.9);
  box-shadow:0 8px 25px rgba(0,0,0,.45), 0 0 0 2px rgba(204,28,28,.35);
}
.compare-handle-btn span{
  color:var(--primary-2);
}

/* 12) Process section: pyramid and flow */
#process{
  background:
    radial-gradient(900px 280px at 10% 6%, rgba(204,28,28,.11), transparent 70%),
    linear-gradient(180deg, #060606, #050505);
}
.process-pyramid{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  margin-bottom:clamp(2.4rem, 5vw, 4.7rem);
}
.process-pyramid__kicker{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.42em;
  color:var(--primary-2);
  font-weight:900;
  opacity:.88;
}
.process-pyramid__title{
  margin:10px 0 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-transform:uppercase;
  /* line-height serré : chaque .process-pyramid__line est sur sa propre ligne via flex-column */
  line-height:.88;
}
.process-pyramid__line{
  display:block;
  font-family:'Syne', sans-serif;
  font-style:italic;
  font-weight:900;
  letter-spacing:-.02em;
}
.process-pyramid__line--top{
  font-size:clamp(2.15rem, 5.2vw, 4rem);
  color:#f5f5f5;
}
.process-pyramid__line--middle{
  font-size:clamp(2.9rem, 7.4vw, 5.4rem);
  color:transparent;
  -webkit-text-stroke:1px rgba(255,255,255,.36);
}
.process-pyramid__line--bottom{
  margin-top:.36rem;
  font-size:clamp(1rem, 2vw, 1.45rem);
  font-weight:700;
  letter-spacing:.22em;
  color:#f6f6f6;
}
.process-pyramid__intro{
  margin:16px 0 0;
  max-width:62ch;
  color:rgba(255,255,255,.62);
  font-size:clamp(14px, 1.4vw, 19px);
  line-height:1.58;
}

.process-flow{
  display:flex;
  width:100%;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.008));
  box-shadow:0 20px 52px rgba(0,0,0,.42);
}
.process-flow__step{
  flex:1;
  min-width:0;
  position:relative;
  padding:clamp(2rem, 4.2vw, 3.7rem) clamp(1rem, 2vw, 1.8rem) clamp(1.7rem, 3.2vw, 2.3rem);
  border-right:1px solid rgba(255,255,255,.10);
  transition:background .4s ease, border-color .4s ease;
  overflow:hidden;
}
.process-flow__step:last-child{
  border-right:none;
}
.process-flow__step:hover{
  background:rgba(204,28,28,.05);
  border-color:rgba(204,28,28,.35);
}
.process-flow__num{
  position:absolute;
  top:8px;
  right:12px;
  font-family:'Syne', sans-serif;
  font-size:clamp(3rem, 5.2vw, 4.9rem);
  font-weight:900;
  font-style:italic;
  /* numéro décoratif mono-ligne, line-height serré volontairement */
  line-height:.88;
  color:rgba(255,255,255,.04);
  pointer-events:none;
  transition:color .35s ease, opacity .35s ease;
}
.process-flow__step:hover .process-flow__num{
  color:rgba(204,28,28,.2);
}
.process-flow__line{
  width:34px;
  height:2px;
  background:var(--primary);
  margin-bottom:1.55rem;
  transition:width .35s ease;
}
.process-flow__step:hover .process-flow__line{
  width:82px;
}
.process-flow__title{
  margin:0;
  max-width:15ch;
  font-family:'Syne', sans-serif;
  font-size:clamp(1.05rem, 1.8vw, 1.72rem);
  font-weight:900;
  font-style:italic;
  line-height:1.08;
  letter-spacing:-.01em;
  text-transform:uppercase;
  color:#f3f3f3;
}
.process-flow__text{
  margin:.9rem 0 0;
  max-width:32ch;
  color:rgba(255,255,255,.52);
  font-size:13px;
  line-height:1.56;
}

.process-flow__cta-wrap{
  margin-top:clamp(1.4rem, 3.3vw, 3rem);
  display:flex;
  justify-content:center;
}
.process-flow__cta{
  text-align:center;
}

@media (max-width: 1023px){
  .process-pyramid{
    margin-bottom:clamp(1.8rem, 5vw, 3.2rem);
  }
  .process-pyramid__kicker{
    letter-spacing:.3em;
  }
  .process-flow{
    flex-direction:column;
    border:1px solid rgba(255,255,255,.10);
    border-radius:14px;
    overflow:hidden;
  }
  .process-flow__step{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.10);
    padding:1.3rem 1rem 1.15rem;
    padding-right:4.15rem;
  }
  .process-flow__step:last-child{
    border-bottom:none;
  }
  .process-flow__num{
    top:8px;
    right:8px;
    font-size:2.35rem;
    line-height:.95;
  }
  .process-flow__title{
    max-width:none;
    font-size:clamp(1.02rem, 4.6vw, 1.32rem) !important;
    line-height:1.06 !important;
  }
  .process-flow__text{
    max-width:none;
    margin-top:.72rem;
    font-size:12.5px;
    line-height:1.5;
  }
  .process-flow__cta{
    width:min(100%, 420px);
  }
}

@media (max-width: 767px){
  .process-pyramid{
    align-items:center;
    text-align:center;
    margin-bottom:1.45rem;
  }
  .process-pyramid__kicker{
    letter-spacing:.24em;
    font-size:9px;
  }
  .process-pyramid__title{
    align-items:center;
    line-height:.9;
  }
  .process-pyramid__line--top{
    font-size:clamp(1.72rem, 9.4vw, 2.4rem);
  }
  .process-pyramid__line--middle{
    font-size:clamp(2.25rem, 11.4vw, 3.1rem);
  }
  .process-pyramid__line--bottom{
    margin-top:.28rem;
    letter-spacing:.11em;
    font-size:clamp(.86rem, 4.2vw, 1.05rem);
  }
  .process-pyramid__intro{
    margin-top:12px;
    max-width:32ch;
    font-size:13px;
    line-height:1.5;
  }
  .process-flow{
    border-radius:12px;
  }
  .process-flow__step{
    padding:1.02rem .9rem .92rem;
    padding-right:3.75rem;
  }
  .process-flow__num{
    font-size:2.05rem;
  }
  .process-flow__line{
    width:22px;
    margin-bottom:.72rem;
  }
  .process-flow__step:hover .process-flow__line{
    width:54px;
  }
  .process-flow__title{
    max-width:16ch;
    font-size:clamp(.98rem, 4.7vw, 1.2rem) !important;
    line-height:1.08 !important;
  }
  .process-flow__text{
    font-size:12px;
    max-width:30ch;
    line-height:1.48;
    margin-top:.6rem;
  }
  .process-flow__cta-wrap{
    margin-top:1rem;
  }
  .process-flow__cta{
    width:100%;
    min-height:46px;
    padding:0 14px;
    letter-spacing:.16em;
    font-size:9px;
  }
}

@media (max-width: 420px){
  .process-pyramid__kicker{
    letter-spacing:.18em;
  }
  .process-pyramid__line--middle{
    font-size:clamp(2rem, 12.5vw, 2.45rem);
  }
  .process-flow__step{
    padding-right:3.25rem;
  }
  .process-flow__num{
    font-size:1.72rem;
    top:7px;
    right:7px;
  }
  .process-flow__title{
    font-size:clamp(.92rem, 4.8vw, 1.06rem) !important;
  }
  .process-flow__text{
    font-size:11.5px;
  }
}

/* 14) Service cards: modal trigger behavior styles */
.service-card{
  cursor:pointer;
}
.service-card:focus-visible{
  outline:2px solid var(--primary-2);
  outline-offset:3px;
}
.service-card__more{
  appearance:none;
  border:0;
  background:transparent;
  padding:0;
  text-align:left;
  cursor:pointer;
}
.service-card__chips{
  display:none;
}

/* 15) Wizard and service sheet panels */
#quoteWizard {
  z-index: 3300 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(0,0,0,0.96) !important;
  isolation: isolate;
  pointer-events: auto;
}
#serviceSheet {
  z-index: 3400 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(0,0,0,0.985) !important;
  isolation: isolate;
  position: fixed;
  pointer-events: auto;
}
.wizard-panel {
  position: relative;
  z-index: 1;
  background: #0f0f0f;
  border: 1px solid rgba(204,28,28,.2);
  box-shadow: 0 0 100px rgba(204,28,28,.1);
  pointer-events: auto;
}
.service-sheet-panel{
  background:
    radial-gradient(900px 220px at 12% 0%, rgba(204,28,28,.11), transparent 55%),
    #0a0a0a;
  border-color:rgba(204,28,28,.24);
  box-shadow: 0 0 90px rgba(0,0,0,.65), 0 0 44px rgba(204,28,28,.1);
}
.service-sheet-head{
  padding:18px 20px;
  border-bottom:1px solid rgba(255,255,255,.1);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  background:linear-gradient(180deg, rgba(0,0,0,.44), rgba(0,0,0,.24));
}
.service-sheet-head__titles{
  min-width:0;
}
.service-sheet-eyebrow{
  color:var(--primary-2);
  font-size:11px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.service-sheet-title{
  margin-top:6px;
  color:#fff;
  font-family:'Syne', sans-serif;
  font-size:clamp(1.35rem, 2.8vw, 2rem);
  font-style:italic;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:-.01em;
  line-height:1;
}
.service-sheet-close{
  min-height:38px;
  padding:0 12px;
  border-radius:12px;
  border:1px solid rgba(204,28,28,.58);
  background:linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
  color:rgba(255,255,255,.86);
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  white-space:nowrap;
  transition:background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.service-sheet-close:hover{
  color:#fff;
  border-color:rgba(204,28,28,.88);
  background:linear-gradient(180deg, rgba(204,28,28,.22), rgba(204,28,28,.08));
  transform:translateY(-1px);
}
.service-sheet-body{
  display:grid;
  gap:0;
}
.service-sheet-lead{
  margin:0;
  padding:16px 16px 17px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:14px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.012));
  color:rgba(255,255,255,.84);
  font-size:clamp(14px, 2vw, 20px);
  line-height:1.5;
}
.service-sheet-points{
  counter-reset:servicePoint;
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:11px;
}
.service-sheet-points li{
  counter-increment:servicePoint;
  position:relative;
  padding:13px 14px 13px 46px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.11);
  background:linear-gradient(180deg, rgba(255,255,255,.042), rgba(255,255,255,.012));
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.52;
}
.service-sheet-points li::before{
  content:counter(servicePoint);
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  width:22px;
  height:22px;
  border-radius:999px;
  border:1px solid rgba(204,28,28,.62);
  background:rgba(204,28,28,.14);
  color:var(--primary-2);
  font-size:10px;
  font-weight:900;
  display:grid;
  place-items:center;
}
.service-sheet-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
@media (max-width: 767px){
  #serviceSheet{
    padding:0 !important;
    align-items:flex-end;
  }
  .service-sheet-panel{
    width:100%;
    max-width:none;
    max-height:94dvh !important;
    border-radius:18px 18px 0 0 !important;
    border-left:none;
    border-right:none;
    border-bottom:none;
  }
  .service-sheet-head{
    padding:14px 14px 12px;
  }
  .service-sheet-eyebrow{
    font-size:9px;
    letter-spacing:.12em;
  }
  .service-sheet-title{
    margin-top:4px;
    font-size:clamp(1.08rem, 5.8vw, 1.5rem);
    line-height:1;
  }
  .service-sheet-close{
    min-height:34px;
    padding:0 9px;
    border-radius:10px;
    font-size:9px;
    letter-spacing:.09em;
  }
  .service-sheet-body.p-6.md\:p-8{
    padding:1rem !important;
  }
  .service-sheet-lead{
    padding:12px 12px 13px;
    font-size:14px;
    line-height:1.5;
  }
  .service-sheet-points li{
    padding:11px 11px 11px 38px;
    font-size:13px;
  }
  .service-sheet-points li::before{
    left:10px;
    width:18px;
    height:18px;
    font-size:9px;
  }
  .service-sheet-actions{
    grid-template-columns:1fr;
  }
  .service-sheet-btn{
    min-height:46px;
    font-size:10px;
    letter-spacing:.12em;
  }
}
.step-indicator.active { background-color: var(--primary); box-shadow: 0 0 10px var(--primary); }
.wizard-step-note{
  margin:0;
  color:rgba(255,255,255,.55);
  font-size:12px;
  line-height:1.6;
}
.option-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.option-btn:hover {
  background: rgba(204,28,28,0.1);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.option-btn:focus-visible{
  border-color:var(--primary);
  color:var(--primary);
}
.option-btn.selected {
  background: var(--primary);
  color: black;
  border-color: var(--primary);
}

/* Branch selector buttons */
.branch-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  padding: 8px 18px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 6px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.branch-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(160,20,20,.62);
  color: #fff;
}
.branch-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
}
.branch-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.wizard-vehicle-card{
  min-height:96px;
  border-radius:13px;
  background:linear-gradient(180deg, rgba(255,255,255,.032), rgba(255,255,255,.012));
  border-color:rgba(255,255,255,.12);
}
#step2 .wizard-vehicle-grid{
  gap:10px;
}
#step2 .wizard-vehicle-card.selected{
  background:linear-gradient(145deg, rgba(204,28,28,.3), rgba(204,28,28,.12));
  color:#fff;
  border-color:rgba(204,28,28,.72);
  box-shadow:0 8px 20px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.2);
}
#step2 .wizard-vehicle-card.selected span:last-child{
  color:rgba(255,255,255,.95);
}
.wizard-qty-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.wizard-qty-current{
  font-size:10px;
  font-weight:900;
  letter-spacing:.11em;
  text-transform:uppercase;
  color:rgba(255,255,255,.5);
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  padding:6px 10px;
  min-width:90px;
  text-align:center;
  transition:border-color .22s ease, color .22s ease, background .22s ease;
}
.wizard-qty-current.is-active{
  color:var(--primary-2);
  border-color:rgba(204,28,28,.62);
  background:rgba(204,28,28,.12);
}
.wizard-qty-grid{
  display:flex;
  gap:7px;
  padding:7px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  align-items:stretch;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.wizard-qty-grid::-webkit-scrollbar{
  display:none;
}
.wizard-qty-btn{
  flex:1 1 0;
  min-width:84px;
  min-height:56px;
  padding:8px 10px 9px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:3px;
  text-align:left;
  border-radius:11px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.03);
  position:relative;
  overflow:hidden;
  scroll-snap-align:start;
}
.wizard-qty-btn::after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  bottom:7px;
  height:2px;
  border-radius:2px;
  background:linear-gradient(90deg, rgba(255,255,255,.14), rgba(255,255,255,.02));
  transition:background .24s ease;
}
.wizard-qty-btn__value{
  font-family:'Syne', sans-serif;
  font-size:20px;
  font-weight:900;
  line-height:1;
  letter-spacing:-.02em;
}
.wizard-qty-btn__text{
  font-size:9px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.62);
}
.wizard-qty-btn.selected{
  background:linear-gradient(145deg, rgba(204,28,28,.34), rgba(204,28,28,.12));
  border-color:rgba(204,28,28,.75);
  color:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.24);
}
.wizard-qty-btn.selected::after{
  background:linear-gradient(90deg, var(--primary-2), rgba(255,255,255,.95));
}
.wizard-qty-btn.selected .wizard-qty-btn__text{
  color:rgba(255,255,255,.86);
}
.wizard-qty-grid.is-invalid .wizard-qty-btn{
  border-color:rgba(239,68,68,.4);
}
.wizard-qty-grid.is-invalid{
  border-color:rgba(239,68,68,.62);
  box-shadow:0 0 0 1px rgba(239,68,68,.18) inset;
}
.wizard-qty-note{
  margin:5px 2px 0;
  font-size:9px;
  line-height:1.35;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:rgba(255,255,255,.32);
}
.wizard-form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.wizard-label{
  font-size:10px;
  font-weight:900;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:rgba(255,255,255,.55);
}
.wizard-input{
  width:100%;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  border-radius:12px;
  padding:12px 14px;
  font-size:14px;
  outline:none;
}
.wizard-input:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(204,28,28,.18);
}
.wizard-textarea{
  min-height:92px;
  resize:vertical;
}
.wizard-photo-hint{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-top:20px;
  padding:14px 16px;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.14);
  background:color-mix(in srgb, var(--primary) 9%, transparent);
  border:1px solid color-mix(in srgb, var(--primary) 30%, transparent);
}
.wizard-photo-hint__icon{
  flex:0 0 auto;
  color:var(--primary);
  margin-top:1px;
}
.wizard-photo-hint__text{
  margin:0;
  font-size:12.5px;
  line-height:1.5;
  color:rgba(255,255,255,.8);
}
.wizard-photo-hint__text strong{
  color:#fff;
  font-weight:800;
}
.wizard-nav{
  display:flex;
  gap:10px;
  margin-top:18px;
}
.wizard-btn{
  flex:1;
}
.wizard-alt{
  margin-top:14px;
  text-align:center;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.4);
}
.wizard-alt__link{
  background:none;
  border:0;
  padding:0;
  cursor:pointer;
  font:inherit;
  letter-spacing:inherit;
  text-transform:inherit;
  color:rgba(255,255,255,.72);
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:2px;
  transition:color .2s ease;
}
.wizard-alt__link:hover{
  color:#fff;
}
.wizard-alt__sep{
  margin:0 6px;
  color:rgba(255,255,255,.25);
}
#wizardCloseBtn{
  min-width:32px;
  min-height:32px;
  padding:6px 8px;
}
.wizard-error{
  border:1px solid rgba(239,68,68,.35);
  background:rgba(127,29,29,.25);
  border-radius:10px;
  padding:8px 10px;
}

/* 16) Generic animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeIn 0.4s ease-out forwards; }

@keyframes bounceSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.animate-bounce-slow { animation: bounceSlow 3s infinite; }

/* 17) Responsive base fixes */
.pb-safe{ padding-bottom: max(2rem, env(safe-area-inset-bottom)); }

/* 18) Home floating CTAs visibility states */
#homeFloatingCtas{
  opacity:0;
  transform:translateY(14px);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
  will-change:transform, opacity;
}

body.menu-open #homeFloatingCtas,
body.overlay-open #homeFloatingCtas{
  opacity:0;
  transform:translateY(14px);
  pointer-events:none;
}

body.cta-visible #homeFloatingCtas{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
  display:flex !important;
}

/* 19) FAQ component */
.faq-item{
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  transition:border-color .2s ease, background .2s ease;
}
.faq-item[open]{
  border-color:rgba(204,28,28,.5);
  background:linear-gradient(180deg, rgba(204,28,28,.08), rgba(255,255,255,.02));
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:18px 20px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+";
  color:var(--primary);
  font-size:20px;
  line-height:1;
  font-weight:400;
}
.faq-item[open] summary::after{ content:"-"; }
.faq-item p{
  margin:0;
  padding:0 20px 18px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

/* 19b) Risk section and contact meta icons */
.risk-section{
  background:
    radial-gradient(850px 260px at 15% 8%, rgba(204,28,28,.12), transparent 70%),
    linear-gradient(180deg, #0a0a0a, #070707);
}
.risk-section__glow{
  background:
    radial-gradient(540px 260px at 16% 20%, rgba(204,28,28,.18), transparent 75%),
    radial-gradient(540px 260px at 86% 80%, rgba(255,255,255,.05), transparent 75%) !important;
  opacity:1 !important;
}
.risk-kicker{
  color:var(--primary-2) !important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  letter-spacing:.24em;
}
.risk-kicker svg{
  width:16px;
  height:16px;
}
.risk-grid{
  align-items:stretch;
}
.risk-card{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12) !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.014)),
    rgba(6,6,6,.68) !important;
  box-shadow:0 14px 32px rgba(0,0,0,.38);
}
.risk-card::after{
  content:"";
  position:absolute;
  left:20px;
  top:17px;
  width:34px;
  height:2px;
  border-radius:2px;
  background:var(--primary);
  opacity:.7;
  transition:width .28s ease, opacity .28s ease;
}
.risk-card:hover::after{
  width:74px;
  opacity:1;
}
.risk-card__icon{
  width:58px;
  height:58px;
  margin:0 auto 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.38);
  display:grid;
  place-items:center;
  color:var(--primary-2);
  transition:transform .28s ease, border-color .28s ease, background .28s ease;
}
.risk-card__icon svg{
  width:26px;
  height:26px;
}
.risk-card:hover .risk-card__icon{
  transform:translateY(-1px) scale(1.04);
  border-color:rgba(204,28,28,.6);
  background:rgba(204,28,28,.14);
}
.risk-card__title{
  letter-spacing:.08em;
}
.risk-card__text{
  max-width:30ch;
  margin:0 auto;
}
.contact-meta{
  transition:transform .25s ease;
}
.contact-meta__icon{
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.03);
  color:var(--primary-2);
  display:grid;
  place-items:center;
  flex:0 0 auto;
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}
.contact-meta__icon svg{
  width:18px;
  height:18px;
}
.contact-meta:hover .contact-meta__icon{
  transform:translateY(-1px) scale(1.05);
  border-color:rgba(204,28,28,.64);
  background:rgba(204,28,28,.14);
}
.map-open-status{
  position:absolute;
  top:12px;
  right:12px;
  z-index:2;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(5,5,5,.74);
  padding:5px 9px;
  font-size:9px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-weight:900;
  box-shadow:0 8px 18px rgba(0,0,0,.35);
  pointer-events:none;
}

/* 20) Hero lighting layer */
.hero-spotlight{
  position:absolute;
  inset:auto auto 10% 6%;
  width:min(560px, 72vw);
  height:min(360px, 48vw);
  pointer-events:none;
  background:radial-gradient(circle at 40% 45%, rgba(255,255,255,.26), rgba(204,28,28,.2) 38%, transparent 74%);
  filter:blur(10px);
  opacity:.8;
}

/* 22) Hero composition and CTA styling */
.hero-shell{
  position:relative;
  z-index:3;
}
.hero-layout{
  display:grid;
  gap:clamp(14px, 2.2vw, 30px);
  align-items:end;
}
.hero-copy{
  display:grid;
  align-content:start;
  gap:clamp(14px, 1.7vw, 22px);
}
.hero-trust-badge{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  width:fit-content;
  margin:0;
  padding:.42rem .82rem;
  border:1px solid rgba(255,255,255,.26);
  border-radius:999px;
  background:linear-gradient(130deg, rgba(9,9,9,.84), rgba(21,21,21,.6));
  color:rgba(255,255,255,.88);
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:10px;
  font-weight:800;
  line-height:1.1;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14), 0 10px 24px rgba(0,0,0,.35);
  animation:heroRefinedIn .36s cubic-bezier(.19,.9,.3,1) .1s both;
}
.hero-trust-badge::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--primary);
  box-shadow:0 0 0 4px rgba(204,28,28,.16);
  flex:0 0 auto;
}
.hero-kicker{
  margin:0;
  letter-spacing:.52em;
  opacity:.9;
  text-shadow:0 2px 18px rgba(0,0,0,.42);
  animation:heroRefinedIn .36s cubic-bezier(.19,.9,.3,1) .1s both;
}
.hero-headline{
  margin:0;
  max-width:16ch;
  text-shadow:0 14px 34px rgba(0,0,0,.55);
  animation:heroRefinedIn .56s cubic-bezier(.19,.9,.3,1) .22s both;
}
.hero-subline{
  margin:0;
  max-width:58ch;
  padding:0;
  border:0 !important;
  border-radius:0;
  background:transparent;
  backdrop-filter:none;
  animation:heroRefinedIn .52s cubic-bezier(.19,.9,.3,1) .34s both;
}
.hero-rating{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  width:fit-content;
  text-decoration:none;
  color:rgba(255,255,255,.9);
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  animation:heroRefinedIn .5s cubic-bezier(.19,.9,.3,1) .38s both;
  transition:transform .2s ease, color .2s ease;
}
.hero-rating:hover{ transform:translateY(-1px); color:#fff; }
.hero-rating__stars{
  color:var(--primary);
  font-size:14px;
  letter-spacing:1px;
  text-shadow:0 2px 10px rgba(0,0,0,.4);
}
.hero-rating__score{ color:#fff; }
.hero-rating__score strong{ font-size:15px; font-weight:900; }
.hero-rating__sep{ color:rgba(255,255,255,.4); }
.hero-rating__count{
  color:rgba(255,255,255,.7);
  font-weight:700;
  text-transform:uppercase;
  font-size:10px;
  letter-spacing:.08em;
}
.hero-proof-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:.52rem;
  max-width:468px;
  animation:heroRefinedIn .54s cubic-bezier(.19,.9,.3,1) .4s both;
}
.hero-proof-item{
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(145deg, rgba(10,10,10,.8), rgba(14,14,14,.54));
  border-radius:11px;
  min-height:64px;
  padding:.5rem .64rem;
  display:flex;
  flex-direction:column;
  justify-content:center;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-proof-label{
  margin:0;
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.13em;
  color:rgba(255,255,255,.56);
  font-weight:700;
}
.hero-proof-value{
  margin-top:.08rem;
  color:#fff;
  font-size:clamp(.9rem, .9vw, 1.02rem);
  font-weight:900;
  line-height:1.2;
}
.hero-proof-value--small{
  font-size:.88rem;
  font-weight:800;
  color:rgba(255,255,255,.9);
}
.hero-cta-row{
  margin-top:6px;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:.72rem;
  width:min(100%, 560px);
  animation:heroRefinedIn .58s cubic-bezier(.19,.9,.3,1) .46s both;
}
@media (min-width: 640px){
  .hero-cta-row{
    flex-direction:row;
    width:auto;
  }
  .hero-cta-row > *{
    min-height:50px;
  }
}
.hero-cta-primary:focus-visible{
  color:var(--primary) !important;
  border-color:rgba(255,255,255,.85);
  box-shadow:0 0 0 2px rgba(5,5,5,.95), 0 0 0 4px rgba(204,28,28,.75), 0 18px 40px rgba(0,0,0,.5);
}
.hero-cta-secondary{
  color:#fff !important;
  border-color:rgba(255,255,255,.28);
  background:rgba(0,0,0,.24);
  backdrop-filter:blur(6px);
}
.hero-cta-secondary:hover{
  color:var(--primary) !important;
  border-color:rgba(204,28,28,.7);
  background:rgba(0,0,0,.34);
}
.hero-cta-secondary:focus-visible{
  color:var(--primary) !important;
  border-color:rgba(204,28,28,.7);
  background:rgba(0,0,0,.34);
}
.hero-local-card{
  margin:4px 0 0;
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  padding:1.04rem .98rem;
  background:linear-gradient(165deg, rgba(12,12,12,.88), rgba(6,6,6,.62));
  box-shadow:0 16px 34px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter:blur(5px);
  max-width:420px;
  animation:heroRefinedIn .62s cubic-bezier(.19,.9,.3,1) .5s both;
}
.hero-local-card__kicker{
  margin:0;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-weight:800;
  color:var(--primary);
}
.hero-local-card__title{
  margin:.5rem 0 .45rem;
  color:#fff;
  font-size:1.1rem;
  font-weight:900;
  line-height:1.2;
}
.hero-local-card__text{
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.56;
}
@media (min-width: 1024px){
  .hero-layout{
    grid-template-columns:minmax(0,1fr);
  }
  .hero-copy{
    max-width:none;
  }
}
@keyframes heroRefinedIn{
  from{ opacity:0; transform:translateY(18px) scale(.985); }
  to{ opacity:1; transform:translateY(0) scale(1); }
}

/* 23) Hero wheel component (GSAP + fallback) */
.hero-section{
  position:relative;
  --atl-hero-cta-bottom:max(16px, env(safe-area-inset-bottom));
  --atl-hero-cta-right:max(14px, env(safe-area-inset-right));
  --atl-wheel-size:clamp(112px, 7.5vw + 56px, 148px);
  --atl-wheel-scale:clamp(1.22, 0.65vw + 1.08, 1.44);
  --atl-wheel-mark-size:clamp(56px, 3.2vw + 20px, 74px);
}

.mil-circle-text{
  position:absolute;
  right:var(--atl-hero-cta-right);
  bottom:var(--atl-hero-cta-bottom);
  width:var(--atl-wheel-size);
  height:var(--atl-wheel-size);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:2;
  pointer-events:auto;
  isolation:isolate;
  contain:layout paint;
}
.mil-circle-text::before{
  content:none;
}
.mil-circle-text::after{
  content:"";
  position:absolute;
  right:calc(100% + 12px);
  top:50%;
  width:clamp(120px, 16vw, 220px);
  height:1px;
  background:linear-gradient(90deg, rgba(204,28,28,.45), rgba(255,255,255,.16), transparent);
  transform:translateY(-50%) rotate(-12deg);
  transform-origin:right center;
  opacity:.65;
  pointer-events:none;
}

.mil-wheel-rotor{
  position:relative;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  transform-origin:50% 50%;
  will-change:transform;
  filter:drop-shadow(0 14px 24px rgba(0,0,0,.45));
  backface-visibility:hidden;
}

.mil-circle-text .mil-ct-svg{
  width:var(--atl-wheel-size);
  height:var(--atl-wheel-size);
  transform:scale(var(--atl-wheel-scale));
  transform-origin:50% 50%;
  display:block;
  will-change:transform;
  backface-visibility:hidden;
}

.mil-circle-text .mil-ct-svg text{
  fill:rgba(255,255,255,.82);
  font-family:'Syne', sans-serif;
  font-size:17px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.28em;
}

.atl-tyre-btn{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  width:var(--atl-wheel-mark-size);
  height:var(--atl-wheel-mark-size);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:0;
  border:0;
  background:transparent;
  box-shadow:none;
}

.atl-tyre-btn img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:brightness(0) invert(1) drop-shadow(0 10px 18px rgba(0,0,0,.5));
  opacity:.92;
}

.atl-no-scrolltrigger .mil-circle-text .mil-wheel-rotor.mil-rotate{
  animation:none;
}

/* Roue du héro : masquée à l'ouverture, révélée dès le premier scroll.
   (body.scrolled est ajouté par app.js dès que scrollY > 10px) */
.mil-circle-text{
  opacity:0;
  visibility:hidden;
  transform:translateY(14px) scale(.92);
  transition:opacity .55s ease, transform .55s ease, visibility 0s linear .55s;
  pointer-events:none;
}
body.scrolled .mil-circle-text{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
  transition:opacity .55s ease, transform .55s ease;
  pointer-events:auto;
}

@media (max-width: 767px){
  .hero-copy{
    gap:12px;
  }
  .hero-layout{
    gap:12px;
  }
  .hero-trust-badge{
    display:none;
  }
  .hero-kicker{
    letter-spacing:.34em;
  }
  .hero-subline{
    max-width:36ch;
    padding:0;
    border-radius:0;
  }
  .hero-proof-grid{
    grid-template-columns:1fr;
    gap:.5rem;
  }
  .hero-proof-item{
    min-height:auto;
    padding:.62rem .7rem;
  }
  .hero-proof-value{
    font-size:15px;
  }
  .hero-proof-value--small{
    font-size:13px;
  }
  .hero-cta-row{
    margin-top:2px;
  }
  .hero-local-card{
    margin-top:2px;
    padding:.82rem .8rem;
    border-radius:14px;
  }
  .hero-local-card__title{
    font-size:1rem;
  }
  .hero-local-card__text{
    font-size:12px;
    line-height:1.5;
  }

  .brand-anchor{
    padding:0;
    border-radius:0;
  }

  .hero-section{
    --atl-hero-cta-bottom:max(10px, env(safe-area-inset-bottom));
    --atl-hero-cta-right:max(8px, env(safe-area-inset-right));
    --atl-wheel-size:96px;
    --atl-wheel-scale:1.16;
    --atl-wheel-mark-size:48px;
  }
  .mil-circle-text{
    z-index:2;
  }
  .mil-circle-text::after{
    width:84px;
    right:calc(100% + 8px);
    opacity:.42;
    transform:translateY(-50%) rotate(-8deg);
  }
  .mil-circle-text .mil-ct-svg text{
    font-size:15px;
  }
}

/* 24) Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .hero-trust-badge,
  .hero-kicker,
  .hero-headline,
  .hero-subline,
  .hero-proof-grid,
  .hero-local-card,
  .hero-cta-row{
    animation:none !important;
  }
  .marquee-track,
  .animate-bounce-slow,
  .animate-fade-in{
    animation:none !important;
  }
  .atl-no-scrolltrigger .mil-wheel-rotor.mil-rotate{
    animation:none !important;
  }
  #mobileMenu .nav-track-link,
  #mobileMenu > div:first-child,
  #mobileMenu .mobile-menu-actions{
    animation:none !important;
    opacity:1;
    transform:none;
  }
}

/* 25) Social buttons */

/* Instagram button (real gradient) */
.btn-instagram {
  background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border: none !important;
  color: white !important;
  box-shadow: 0 10px 20px rgba(214, 36, 159, 0.3);
}
.btn-instagram:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 25px rgba(214, 36, 159, 0.4);
}
.social-icon-img{
  width:28px;
  height:28px;
  object-fit:contain;
  border-radius:8px;
}

/* Google CTA button */
.btn-google {
  background: white;
  color: black;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  transition: box-shadow .3s ease, transform .3s ease, background-color .3s ease, color .3s ease;
  box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}
.btn-google:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

/* 26) Infinite marquees: logos and reviews */

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brand-strip{
  opacity:1;
  transform:translateY(0);
  max-height:120px;
  transition:opacity .25s ease, transform .25s ease, max-height .25s ease, padding .25s ease;
}

.marquee-track {
  display: flex;
  gap: 16px; /* Espace resserre entre les logos */
  width: max-content;
  animation: scroll 40s linear infinite; /* Vitesse du défilement */
  will-change: transform;
}

/* Pause marquee on hover for readability */
@media (hover: hover) and (pointer: fine) {
  .marquee-track:hover { animation-play-state: paused; }
}

.marquee-track.is-paused,
.marquee-track.is-offscreen,
.marquee-track.is-doc-hidden{
  animation-play-state: paused;
}

@media (max-width: 1023px){
  body.is-scrolling .marquee-track,
  body.is-scrolling .animate-bounce-slow{
    animation-play-state: paused !important;
  }
}

.brand-logo-item{
  min-width:clamp(76px, 11vw, 118px);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:default;
}
.brand-logo{
  height:clamp(18px, 2.3vw, 26px);
  width:auto;
  max-width:120px;
  object-fit:contain;
  opacity:.72;
  filter:invert(1) grayscale(1) brightness(1.05) contrast(1.06);
  transition:opacity .25s ease, filter .25s ease, transform .25s ease;
}
.brand-logo-item:hover .brand-logo{
  opacity:.98;
  filter:invert(72%) sepia(36%) saturate(468%) hue-rotate(2deg) brightness(1.02);
  transform:translateY(-1px);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* On déplace de la moitié (car contenu dupliqué) */
}

/* Review cards (glass style) */
.review-card-glass {
  width: 300px; /* Largeur fixe pour le slider */
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03); /* Translucide */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: background-color .3s ease, border-color .3s ease, transform .3s ease;
}

.review-card-glass:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-name {
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
}

.review-stars {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* 27) Responsive layer: unified fixes */
@media (max-width: 1023px){
  main{ overflow-x:hidden; }

  body > .fixed.bottom-6.right-6.z-\[120\]{ display:none !important; }

  main .glass-card{ border-radius:16px !important; }

  /* Internal pages generic fixed-header layout */
  header.fixed > .mx-auto.max-w-6xl{
    flex-wrap:wrap;
    align-items:flex-start;
    gap:10px;
    padding-top:10px !important;
    padding-bottom:10px !important;
  }
  header.fixed > .mx-auto.max-w-6xl > a.leading-tight{ width:100%; }
  header.fixed > .mx-auto.max-w-6xl > div.flex.items-center.gap-3{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }
  header.fixed > .mx-auto.max-w-6xl > div.flex.items-center.gap-3 > a{
    min-height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:10px 10px !important;
    letter-spacing:.08em !important;
    line-height:1.2;
    white-space:normal;
    border-radius:10px;
  }
  header.fixed + main#main{ padding-top:clamp(9.25rem, 16vw, 10.2rem) !important; }
}

@media (max-width: 767px){
  html, body{
    max-width:100%;
    overflow-x:hidden;
  }

  body{ padding-bottom:100px; }

  h1, h2, h3, p, li, a, span{
    overflow-wrap:anywhere;
    word-break:normal;
  }

  /* Global type scale */
  main h1{
    font-size:clamp(1.72rem, 7.2vw, 2.2rem) !important;
    line-height:1 !important;
    letter-spacing:-.02em !important;
    max-width:20ch;
  }
  main h2{
    font-size:clamp(1.24rem, 5.7vw, 1.72rem) !important;
    line-height:1.08 !important;
  }
  main h3{
    font-size:clamp(1rem, 4.6vw, 1.24rem) !important;
    line-height:1.16 !important;
  }
  main p, main li{
    font-size:14px !important;
    line-height:1.56 !important;
  }

  /* Vertical rhythm */
  main > section{ padding-top:3.8rem !important; padding-bottom:3.8rem !important; }
  main section[class*="py-12"]{ padding-top:2.6rem !important; padding-bottom:2.6rem !important; }

  /* Index nav */
  #top{ backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); }

  /* Hero */
  section.relative.min-h-\[100svh\] .max-w-3xl{ max-width:100% !important; }
  section.relative.min-h-\[100svh\] p.max-w-2xl{
    max-width:36ch !important;
    margin-bottom:1rem !important;
    padding-left:12px !important;
    border-left-width:2px !important;
  }

  /* Compare */
  #realisations .scrollbar-hide{ gap:12px !important; padding-bottom:12px !important; }
  #realisations .compare-card{ min-width:90vw !important; padding:10px; border-radius:16px; }
  #realisations .compare-viewport{ height:clamp(320px, 92vw, 470px) !important; }
  .compare-badge{ font-size:9px; padding:6px 8px; }
  .compare-handle-btn{ width:48px; height:48px; }
  .compare-handle-line{ width:1px; }

  /* Review cards */
  .review-card-glass{ width:260px; padding:16px; }

  /* Risk cards */
  .grid.md\:grid-cols-3.gap-6.text-center{
    grid-template-columns:1fr !important;
    gap:10px !important;
  }
  .grid.md\:grid-cols-3.gap-6.text-center > div{ padding:14px !important; }
  .risk-grid{
    grid-template-columns:1fr !important;
    gap:10px !important;
  }
  .risk-card{
    padding:14px !important;
  }
  .risk-card__icon{
    width:52px;
    height:52px;
    margin-bottom:11px;
  }
  .risk-card__icon svg{
    width:22px;
    height:22px;
  }

  /* Contact CTAs */
  #contact .mt-12.flex.flex-col.sm\:flex-row{ gap:10px !important; }
  #contact .mt-12.flex.flex-col.sm\:flex-row > *{
    min-height:48px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  #contact .min-h-\[420px\]{ min-height:300px !important; }
  .contact-meta__icon{
    width:32px;
    height:32px;
  }
  .contact-meta__icon svg{
    width:17px;
    height:17px;
  }

  /* Wizard */
  .wizard-panel .p-6.md\:p-8{ padding:1rem !important; }
  .wizard-panel .text-\[10px\].uppercase.tracking-widest{ letter-spacing:.1em !important; }
  .wizard-btn{ min-height:46px; }
  .wizard-vehicle-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .wizard-vehicle-card{ min-height:88px; }
  .wizard-qty-grid{ gap:6px; padding:5px; }
  .wizard-qty-btn{ min-width:84px; min-height:52px; padding:7px 9px 8px; }
  .wizard-qty-btn__value{ font-size:18px; }
  .wizard-qty-current{ font-size:9px; padding:5px 9px; min-width:84px; }
  .wizard-qty-note{ font-size:9px; letter-spacing:.07em; }
  .wizard-size-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); }
  .wizard-nav{
    flex-direction:column;
    position:sticky;
    bottom:-1px;
    background:linear-gradient(to top, #0a0a0a 72%, rgba(10,10,10,0));
    padding-top:12px;
    margin-top:16px;
  }
  #quoteWizard{ padding:0; align-items:flex-end; }
  .wizard-panel{
    width:100%;
    max-width:none;
    max-height:95dvh !important;
    border-radius:20px 20px 0 0 !important;
    border-left:none;
    border-right:none;
    border-bottom:none;
  }
  .wizard-input{ font-size:16px; min-height:48px; }
  .option-btn{ min-height:50px; }

  /* Internal pages content cards */
  main.pt-28 .mx-auto.max-w-6xl.px-4.md\:px-6{
    padding-left:12px !important;
    padding-right:12px !important;
  }
  main.pt-28 h1.font-syne.text-4xl.md\:text-6xl{
    font-size:clamp(1.42rem, 7vw, 1.86rem) !important;
    line-height:1.02 !important;
    letter-spacing:-.015em !important;
    margin-top:.7rem !important;
  }
  main.pt-28 .glass-card.p-6.md\:p-8{
    padding:14px !important;
    border-radius:14px !important;
  }
  main.pt-28 .glass-card h2{
    font-size:clamp(1.03rem, 5vw, 1.23rem) !important;
    line-height:1.12 !important;
    margin-bottom:.72rem !important;
  }

  /* Tables + galleries */
  .overflow-x-auto{ -webkit-overflow-scrolling:touch; }
  .overflow-x-auto table{ min-width:460px; }
  .overflow-x-auto th, .overflow-x-auto td{ white-space:nowrap; }
  .gallery-section .grid{ grid-template-columns:1fr !important; gap:12px !important; }
  iframe{ width:100% !important; }

}

@media (max-width: 420px){
  section.relative.min-h-\[100svh\] h1{
    font-size:clamp(1.55rem, 8vw, 1.9rem) !important;
    line-height:1 !important;
  }
  #realisations .compare-card{ min-width:92vw !important; }
  .wizard-vehicle-card{ min-height:84px; }
  .wizard-qty-btn{ min-width:78px; min-height:48px; padding:7px 8px 7px; }
  .wizard-qty-btn__value{ font-size:16px; }
  .wizard-qty-current{ min-width:78px; }
  .risk-card__icon{
    width:48px;
    height:48px;
  }
  .risk-card__icon svg{
    width:20px;
    height:20px;
  }
  .contact-meta__icon{
    width:30px;
    height:30px;
  }
  .contact-meta__icon svg{
    width:16px;
    height:16px;
  }

  header.fixed > .mx-auto.max-w-6xl > div.flex.items-center.gap-3{
    grid-template-columns:1fr;
  }
  header.fixed > .mx-auto.max-w-6xl > div.flex.items-center.gap-3 > a{
    width:100%;
    min-height:38px;
    font-size:8px !important;
    letter-spacing:.06em !important;
  }

}

/* 28) Mobile refinement layer (desktop untouched) */
@media (max-width: 1023px){
  html, body{ overflow-x:hidden !important; }

  /* Keep text readable and avoid broken headline rendering */
  h1, h2, h3{ word-break:normal !important; overflow-wrap:normal !important; }
  p, li{ overflow-wrap:break-word; }

  /* Hero geometry is defined once in the final mobile hero override block. */
}

@media (max-width: 767px){
  /* Header / nav */
  #navInner{ padding-top:.7rem !important; padding-bottom:.7rem !important; }
  #navInner .text-white.font-extrabold{ font-size:12px !important; line-height:1.06; }
  #navInner .text-white\/60{ font-size:10px !important; letter-spacing:.12em !important; }

  /* Hero typography and spacing */
  section.relative.min-h-\[100svh\] h1{
    max-width:100% !important;
    font-size:clamp(1.74rem, 8vw, 2.15rem) !important;
    line-height:1 !important;
    letter-spacing:-.015em !important;
  }
  section.relative.min-h-\[100svh\] p.max-w-2xl{
    max-width:32ch !important;
    margin-bottom:.35rem !important;
    font-size:clamp(1rem, 3.9vw, 1.06rem) !important;
    line-height:1.48 !important;
  }
  section.relative.min-h-\[100svh\] .reveal{
    animation:mobileHeroIn .35s ease both;
  }
  /* Keep desktop CTAs hidden on mobile to avoid layout pollution */
  section.relative.min-h-\[100svh\] .hidden.sm\:flex{ display:none !important; }

  /* Brand strip hidden on first viewport (mobile only) */
  body:not(.scrolled) .brand-strip{
    opacity:0;
    transform:translateY(-8px);
    max-height:0;
    padding-top:0 !important;
    padding-bottom:0 !important;
    border-bottom-color:transparent !important;
    overflow:hidden;
  }
  body.scrolled .brand-strip{
    opacity:1;
    transform:translateY(0);
    max-height:120px;
  }

  /* Section rhythm */
  main > section{ padding-top:3.25rem !important; padding-bottom:3.25rem !important; }

  /* Service cards */
  #services .glass-card.p-8{ padding:1rem !important; }
  #services .glass-card h3{
    font-size:1.02rem !important;
    line-height:1.2 !important;
  }
  #services .glass-card p{
    font-size:13px !important;
    line-height:1.52 !important;
  }

  /* Compare cards */
  #realisations .compare-card{
    min-width:88vw !important;
    padding:9px !important;
  }
  #realisations .compare-viewport{
    height:clamp(300px, 88vw, 430px) !important;
  }

  /* Contact buttons */
  #contact .mt-12.flex.flex-col.sm\:flex-row > *{
    min-height:46px !important;
    border-radius:11px !important;
  }

  /* Wizard mobile */
  #quoteWizard{ padding:0 !important; align-items:flex-end !important; }
  .wizard-panel{
    max-height:92dvh !important;
    border-radius:18px 18px 0 0 !important;
  }
  .wizard-vehicle-grid{ grid-template-columns:repeat(2,minmax(0,1fr)) !important; }
  .wizard-size-grid{ grid-template-columns:repeat(3,minmax(0,1fr)) !important; }
  .wizard-btn{ min-height:46px !important; }

}

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

/* 29) Final mobile hero override (must stay late in cascade) */
@media (max-width: 1023px){
  section.relative.min-h-\[100svh\]{
    min-height:100dvh !important;
    align-items:flex-end !important;
  }

  section.relative.min-h-\[100svh\] > .absolute.inset-0.-z-10{
    inset:0 !important;
    height:100% !important;
    transform:none !important;
  }

  section.relative.min-h-\[100svh\] > .absolute.inset-0.-z-10 > img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:56% center !important;
  }

  section.relative.min-h-\[100svh\] > .absolute.inset-0.-z-10 > picture{
    display:block !important;
    width:100% !important;
    height:100% !important;
  }

  section.relative.min-h-\[100svh\] > .absolute.inset-0.-z-10 > picture > img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:56% center !important;
  }

  section.relative.min-h-\[100svh\] .mx-auto.max-w-6xl{
    padding-top:calc(5.8rem + env(safe-area-inset-top)) !important;
    padding-bottom:clamp(2.2rem, 6vh, 4rem) !important;
  }
}

/* 30) Services section signature upgrades */
#services{
  background:
    radial-gradient(860px 260px at 11% 7%, rgba(204,28,28,.12), transparent 72%),
    linear-gradient(180deg, #0a0a0a, #060606);
}
#services .services-signature{
  position:relative;
}
#services .services-signature__kicker{
  letter-spacing:.36em;
  opacity:.9;
}
#services .services-signature__title{
  line-height:.9;
  text-shadow:0 12px 28px rgba(0,0,0,.42);
}
#services .services-signature__accent{
  display:inline-block;
  text-shadow:0 8px 18px rgba(204,28,28,.16);
}
#services .services-signature__intro{
  max-width:54ch;
  color:rgba(255,255,255,.66);
}
#services .services-signature__cta{
  border-color:rgba(255,255,255,.26);
}

#services .services-flow{
  counter-reset:serviceFlow;
}
#services .services-flow .service-card--signature{
  counter-increment:serviceFlow;
  position:relative;
  overflow:hidden;
  border-color:rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.014));
}
#services .services-flow .service-card--signature::before{
  content:counter(serviceFlow, decimal-leading-zero);
  position:absolute;
  top:9px;
  right:12px;
  font-family:'Syne', sans-serif;
  font-size:clamp(2.7rem, 4vw, 3.8rem);
  font-weight:900;
  font-style:italic;
  line-height:.9;
  letter-spacing:-.02em;
  color:rgba(255,255,255,.05);
  pointer-events:none;
  transition:color .32s ease;
  z-index:1;
}
#services .services-flow .service-card--signature::after{
  content:"";
  position:absolute;
  left:24px;
  top:20px;
  width:36px;
  height:2px;
  background:var(--primary);
  transition:width .34s ease;
  z-index:1;
}
#services .services-flow .service-card--signature:hover::before{
  color:rgba(204,28,28,.22);
}
#services .services-flow .service-card--signature:hover::after{
  width:86px;
}
#services .services-flow .service-card--signature > div,
#services .services-flow .service-card--signature > button{
  position:relative;
  z-index:2;
}
#services .services-flow .service-card__icon-wrap{
  border-color:rgba(255,255,255,.14);
  background:rgba(10,10,10,.7);
  box-shadow:0 9px 20px rgba(0,0,0,.34);
  transition:background .26s ease, border-color .26s ease, transform .26s ease;
}
#services .services-flow .service-card--signature:hover .service-card__icon-wrap{
  border-color:rgba(204,28,28,.64);
  background:rgba(204,28,28,.86);
  transform:translateY(-1px);
}
#services .services-flow .service-card__title{
  max-width:15ch;
  line-height:1.08;
  letter-spacing:-.01em;
}
#services .services-flow .service-card__text{
  max-width:33ch;
  color:rgba(255,255,255,.58);
}
#services .services-flow .service-card__cta{
  color:rgba(255,255,255,.42);
  border-bottom-color:rgba(255,255,255,.12);
}
#services .services-flow .service-card--signature:hover .service-card__cta{
  color:#fff;
  border-bottom-color:rgba(255,255,255,.68);
}

@media (max-width: 1023px){
  #services .services-signature{
    max-width:100%;
  }
  #services .services-signature__kicker{
    letter-spacing:.25em;
  }
  #services .services-signature__title{
    margin-bottom:1.1rem !important;
  }
  #services .services-signature__intro{
    margin-bottom:1.1rem !important;
    max-width:35ch;
  }
  #services .services-flow .service-card--signature::before{
    font-size:2.35rem;
    top:7px;
    right:9px;
  }
  #services .services-flow .service-card--signature::after{
    left:14px;
    top:14px;
    width:28px;
  }
  #services .services-flow .service-card--signature:hover::after{
    width:58px;
  }
}

@media (max-width: 767px){
  #services .services-signature__title{
    line-height:.96;
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }
  #services .services-signature__intro{
    font-size:13px !important;
    line-height:1.5 !important;
  }
  #tarifs h2,
  #realisations h2,
  #avis h2,
  #faq h2,
  #contact h2{
    max-width:13ch;
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }
  #avis h2{
    max-width:16ch;
  }
  #services .service-card__title,
  #tarifs article h3,
  #realisations article h3{
    max-width:16ch;
  }
}

/* === Inline styles relocation (CSP unsafe-inline removal) === */
.scrollbar-hide::-webkit-scrollbar{ display:none; }
.scrollbar-hide{ -ms-overflow-style:none; scrollbar-width:none; }
#realisations .scrollbar-hide{ overflow-y:hidden; overscroll-behavior-x:contain; }
#mobileMenu{ height:100dvh; }
.text-stroke-light{ -webkit-text-stroke:1px rgba(255,255,255,.85); }
.svg-text-spaced{ letter-spacing:4.8px; }
.bg-gradient-corner-primary{ background:radial-gradient(at top right, var(--primary), transparent 70%); }
.bg-gradient-soft-hero{ background:radial-gradient(800px 240px at 12% 12%, rgba(204,28,28,.16), transparent 70%); }
.iframe-borderless{ border:0; }

/* 31) Mobile visual cleanup */
@media (max-width: 1023px){
  .hero-section{
    align-items:center !important;
  }
}

@media (max-width: 767px){
  body{
    padding-bottom:0 !important;
  }

  #homeFloatingCtas{
    left:auto;
    right:12px;
    bottom:max(12px, env(safe-area-inset-bottom));
    gap:8px;
    justify-content:flex-end;
  }
  #homeFloatingCtas > button[data-open-wizard="true"]{
    flex:0 0 auto;
    width:auto;
    min-height:0;
    padding:.7rem .95rem !important;
    justify-content:center;
  }
  #homeFloatingCtas > a[data-client-phone-href]{
    width:44px;
    height:44px;
    flex:0 0 44px;
  }

  #navInner{
    padding-top:.85rem !important;
    padding-bottom:.85rem !important;
  }
  #navInner .text-white.font-extrabold{
    font-size:13px !important;
    line-height:1.1 !important;
  }
  #navInner .text-white\/60{
    font-size:10.5px !important;
    letter-spacing:.16em !important;
  }

  .hero-section > .absolute.inset-0.-z-10{
    transform:none !important;
  }
  .hero-section > .absolute.inset-0.-z-10 > img{
    object-position:58% center !important;
  }
  .hero-section > .absolute.inset-0.-z-10 > picture > img{
    object-position:58% center !important;
  }
  .hero-section .mx-auto.max-w-6xl{
    padding-top:calc(6.3rem + env(safe-area-inset-top)) !important;
    padding-bottom:clamp(3.2rem, 8vh, 4.8rem) !important;
  }
  .hero-trust-badge{
    font-size:9px !important;
    letter-spacing:.08em !important;
    padding:.38rem .62rem !important;
  }
  .hero-headline{
    font-size:clamp(1.95rem, 9.2vw, 2.65rem) !important;
    line-height:.98 !important;
    max-width:13ch !important;
  }
  .hero-subline{
    max-width:37ch !important;
    margin-bottom:.5rem !important;
    font-size:14px !important;
    line-height:1.55 !important;
  }
  .hero-proof-grid{
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:.35rem !important;
    max-width:320px !important;
  }
  .hero-proof-item{
    border:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    border-radius:0 !important;
    min-height:auto !important;
    padding:0 !important;
  }
  .hero-proof-label{
    font-size:8px !important;
    letter-spacing:.1em !important;
  }
  .hero-proof-value{
    margin-top:.02rem !important;
    font-size:clamp(.98rem, 3.9vw, 1.08rem) !important;
    line-height:1.05 !important;
  }
  .hero-cta-row{
    display:none !important;
  }

  body:not(.scrolled) .brand-strip{
    opacity:1 !important;
    transform:translateY(0) !important;
    max-height:120px !important;
    padding-top:1rem !important;
    padding-bottom:1rem !important;
    border-bottom-color:rgba(255,255,255,.06) !important;
  }

  .process-flow__step{
    padding:1.08rem .95rem .95rem !important;
    padding-right:1rem !important;
  }
  .process-flow__num{
    position:static !important;
    margin-bottom:.5rem;
    display:block;
    font-size:1.55rem !important;
    color:rgba(204,28,28,.28) !important;
  }
  .process-flow__line{
    width:28px !important;
    margin-bottom:.66rem !important;
  }
  .process-flow__title{
    max-width:none !important;
    font-size:1.02rem !important;
  }
  .process-flow__text{
    max-width:none !important;
    font-size:13px !important;
    line-height:1.55 !important;
  }
  .process-flow--mobile-carousel{
    display:flex !important;
    flex-direction:row !important;
    align-items:stretch;
    gap:10px;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    padding:2px 1px 6px;
  }
  .process-flow--mobile-carousel::-webkit-scrollbar{
    display:none;
  }
  .process-flow--mobile-carousel .process-flow__step{
    flex:0 0 min(86vw, 330px) !important;
    scroll-snap-align:start;
    scroll-snap-stop:always;
    border:1px solid rgba(255,255,255,.12) !important;
    border-radius:14px !important;
    background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)) !important;
  }
  .process-flow--mobile-carousel .process-flow__step:last-child{
    border-bottom:1px solid rgba(255,255,255,.12) !important;
  }

  #realisations .compare-card{
    min-width:86vw !important;
    padding:11px !important;
  }
  #realisations .compare-viewport{
    height:clamp(320px, 84vw, 450px) !important;
  }

  .review-card-glass{
    width:min(84vw, 320px) !important;
    padding:18px !important;
  }

  .risk-card{
    border-radius:14px !important;
    padding:1rem .95rem !important;
  }
  .risk-card__title{
    font-size:13px !important;
  }
  .risk-card__text{
    font-size:12.5px !important;
    line-height:1.55 !important;
  }
}

/* 32) Final mobile polish pass (hero, services, wizard, footer) */
@media (max-width: 767px){
  /* Hero */
  .hero-trust-badge{
    display:none !important;
  }
  .hero-section .hero-copy{
    max-width:100% !important;
  }
  .hero-section .hero-headline{
    max-width:12.5ch !important;
    margin-bottom:.34rem !important;
  }
  .hero-section .hero-subline{
    max-width:35ch !important;
    margin-bottom:.42rem !important;
    font-size:13.5px !important;
    line-height:1.52 !important;
  }
  .hero-section .hero-proof-grid{
    width:min(100%, 320px);
    gap:.42rem !important;
  }
  .hero-section .hero-proof-label{
    font-size:7.8px !important;
    letter-spacing:.11em !important;
  }
  .hero-section .hero-proof-value{
    font-size:clamp(1rem, 4vw, 1.12rem) !important;
  }
  .hero-section .hero-cta-row{
    display:none !important;
  }

  /* Services */
  #services .services-signature{
    margin-bottom:.2rem;
  }
  #services .services-signature__kicker{
    margin-bottom:.5rem !important;
    letter-spacing:.21em !important;
  }
  #services .services-signature__title{
    font-size:clamp(1.72rem, 8.1vw, 2.24rem) !important;
    margin-bottom:.72rem !important;
    max-width:11ch;
    text-align:center;
    margin-left:auto;
    margin-right:auto;
  }
  #services .services-signature__intro{
    max-width:100% !important;
    margin-bottom:0 !important;
  }
  /* Wizard */
  #quoteWizard{
    padding:0 !important;
    align-items:flex-end !important;
  }
  #quoteWizard .wizard-panel{
    width:100%;
    max-width:none;
    max-height:94dvh !important;
    border-radius:20px 20px 0 0 !important;
    box-shadow:0 -12px 32px rgba(0,0,0,.55);
  }
  #quoteWizard .wizard-panel > .p-5{
    padding:14px 14px 12px !important;
  }
  #quoteWizard #wizardTitle{
    font-size:13px !important;
    line-height:1.1;
    letter-spacing:.12em !important;
  }
  #quoteWizard .wizard-panel > .p-5 .text-white\/40{
    font-size:9px !important;
    letter-spacing:.08em !important;
  }
  #quoteWizard #wizardCloseBtn{
    min-height:36px;
    padding:0 10px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.18);
  }
  #quoteWizard .wizard-panel > .p-6.md\:p-8{
    padding:14px 14px calc(12px + env(safe-area-inset-bottom)) !important;
  }
  #quoteWizard .step-content h3{
    font-size:clamp(1.34rem, 6.3vw, 1.8rem) !important;
    line-height:1.05 !important;
    margin-bottom:.42rem !important;
  }
  #quoteWizard .wizard-step-note{
    max-width:34ch;
    font-size:11.5px !important;
    line-height:1.5 !important;
  }
  #quoteWizard .wizard-nav{
    gap:8px !important;
    padding-top:10px !important;
    margin-top:14px !important;
  }
  #quoteWizard .wizard-btn{
    min-height:48px !important;
    font-size:9.5px !important;
    letter-spacing:.12em !important;
  }
  #quoteWizard .wizard-vehicle-card{
    min-height:82px !important;
    padding:12px 10px !important;
  }
  #quoteWizard .wizard-vehicle-card span.text-3xl{
    font-size:1.45rem !important;
    line-height:1;
  }
  #quoteWizard .wizard-vehicle-card span:last-child{
    font-size:9px;
    letter-spacing:.12em;
  }
  #quoteWizard .wizard-qty-grid{
    gap:6px !important;
    padding:6px !important;
  }
  #quoteWizard .wizard-qty-btn{
    min-height:50px !important;
    min-width:80px !important;
    padding:7px 9px 8px !important;
  }
  #quoteWizard .wizard-qty-btn__value{
    font-size:17px !important;
  }
  #quoteWizard .wizard-qty-current{
    min-width:80px !important;
  }
  #quoteWizard .wizard-input{
    min-height:48px !important;
    border-radius:11px !important;
    padding:11px 12px !important;
    font-size:16px !important;
  }
  #quoteWizard .wizard-textarea{
    min-height:86px !important;
  }

  /* Footer */
  footer .mx-auto.max-w-6xl{
    padding-left:14px !important;
    padding-right:14px !important;
  }
  footer .flex.flex-col.sm\:flex-row.items-center.justify-between.gap-8{
    align-items:center !important;
    gap:1rem !important;
  }
  #footerBrandName > div:first-child{
    font-size:14px !important;
    line-height:1.08 !important;
    text-align:center;
  }
  #footerBrandName > div:last-child{
    margin-top:2px;
    font-size:10px !important;
    letter-spacing:.18em !important;
    text-align:center;
  }
  footer .flex.items-center.gap-4{
    width:100%;
    justify-content:center;
    gap:10px;
  }
  footer .flex.items-center.gap-4 > a{
    width:44px !important;
    height:44px !important;
    flex:0 0 44px;
  }
  #footerCopyright{
    margin-top:1rem !important;
    font-size:9px !important;
    letter-spacing:.18em !important;
    line-height:1.45;
  }
  footer a[href="mentions-legales.html"]{
    display:inline-block;
    font-size:10.5px;
    line-height:1.4;
  }
  #footerCopyright + .mt-5.text-center.text-\[11px\].text-white\/45{
    margin-top:.45rem !important;
    text-align:center !important;
  }
}

/* 33) Mobile smoothness tuning (visual kept, lighter while scrolling) */
@media (max-width: 1023px){
  body.is-scrolling #top{
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }

  body.is-scrolling .glass-card,
  body.is-scrolling [data-open-wizard="true"],
  body.is-scrolling .wizard-btn,
  body.is-scrolling .service-sheet-btn{
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }

  body.is-scrolling .mil-wheel-rotor{
    filter:none !important;
  }
}

/* ===== SERVICES — DESKTOP LAYOUT PRO (≥1024px) ===== */
/* Numéro masqué par défaut, réactivé selon le viewport */
.service-card__num{ display:none; }

@media (min-width: 1024px) {
  #services > .mx-auto.max-w-6xl{
    max-width:1360px;
    padding-left:34px;
    padding-right:34px;
  }

  #services .grid.lg\:grid-cols-2{
    display:block !important;
  }

  #services .services-signature{
    position:static !important;
    top:auto !important;
    z-index:5;
    max-width:none !important;
    margin:0 auto 1.8rem !important;
    text-align:center;
    padding-bottom:.9rem;
    isolation:isolate;
  }
  #services .services-signature::after{
    content:"";
    width:72px;
    height:2px;
    background:var(--primary);
    opacity:.88;
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
  }
  #services .services-signature__kicker{
    margin-bottom:.7rem !important;
    letter-spacing:.3em;
    font-size:12px;
  }
  #services .services-signature__title{
    margin:0 auto !important;
    font-size:clamp(1.95rem, 3.2vw, 3.25rem) !important;
    line-height:.96;
    max-width:none !important;
    white-space:normal;
    display:block;
    letter-spacing:-.01em;
    text-shadow:0 8px 18px rgba(0,0,0,.32);
  }
  #services .services-signature__title br{
    display:none;
  }
  #services .services-signature__intro{
    display:block !important;
    max-width:64ch;
    margin:1rem auto 0 !important;
    text-align:center;
    font-size:.95rem;
    line-height:1.6;
  }
  #services .services-signature__cta{
    display:none !important;
  }

  #services .services-flow{
    grid-template-columns:repeat(4, minmax(0,1fr)) !important;
    gap:0 !important;
    margin-top:1.55rem;
    border-top:1px solid rgba(255,255,255,.1);
    position:relative;
    z-index:1;
  }
  #services .services-flow .service-card--signature{
    min-height:278px !important;
    padding:1.72rem 1.38rem 1.72rem !important;
    border:0 !important;
    border-right:1px solid rgba(255,255,255,.1) !important;
    border-radius:0 !important;
    background:linear-gradient(180deg, rgba(6,6,6,.96), rgba(2,2,2,.96)) !important;
    transform:none !important;
    overflow:visible !important;
    align-items:flex-start !important;
    justify-content:space-between !important;
    gap:1.25rem !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    box-shadow:none !important;
  }
  #services .services-flow .service-card--signature:first-child{
    border-left:3px solid var(--primary) !important;
  }
  #services .services-flow .service-card--signature::before,
  #services .services-flow .service-card--signature::after{
    display:none !important;
  }

  #services .service-card > div:first-child{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    position:relative;
    min-height:100%;
    padding-top:.1rem;
    padding-bottom:1.4rem;
  }
  #services .service-card .service-card__icon-wrap{
    display:inline-grid !important;
    place-items:center !important;
    width:42px !important;
    height:42px !important;
    margin:0 !important;
    border-radius:999px !important;
    border:1px solid rgba(204,28,28,.5) !important;
    background:rgba(8,8,8,.84) !important;
    box-shadow:none !important;
    position:absolute;
    top:0;
    right:0;
  }
  #services .service-card .service-icon-img{
    width:19px !important;
    height:19px !important;
    filter:brightness(0) saturate(100%) invert(96%) sepia(4%) saturate(177%) hue-rotate(343deg) brightness(103%) contrast(97%) !important;
    opacity:1;
  }
  #services .service-card .service-card__num{
    display:block !important;
    margin:0 0 .65rem !important;
    font-size:clamp(1.2rem, 1.2vw, 1.75rem) !important;
    line-height:1;
    font-weight:900 !important;
    letter-spacing:.04em !important;
    color:rgba(255,255,255,.28) !important;
    padding-right:2.4rem;
  }
  #services .service-card:first-child .service-card__num{
    color:var(--primary) !important;
  }
  #services .services-flow .service-card__title{
    font-size:clamp(1.22rem, 1.4vw, 1.78rem) !important;
    line-height:1.03 !important;
    margin:0 0 .7rem !important;
    max-width:12ch !important;
    color:#f2f2f2 !important;
  }
  #services .services-flow .service-card__text{
    display:block !important;
    margin:0 !important;
    max-width:27ch !important;
    font-size:clamp(.9rem, .8vw, 1.05rem) !important;
    line-height:1.43 !important;
    color:rgba(255,255,255,.5) !important;
  }
  #services .service-card .service-card__more{
    display:inline-flex !important;
    align-items:center;
    justify-content:flex-end;
    position:absolute;
    right:14px;
    bottom:12px;
    margin:0 !important;
    font-size:clamp(.66rem, .62vw, .78rem) !important;
    letter-spacing:.08em !important;
    line-height:1.1;
    color:var(--primary) !important;
    border-bottom-color:transparent !important;
    opacity:1 !important;
    visibility:visible !important;
  }
  #services .service-card:hover .service-card__title{
    color:#fff !important;
  }
  #services .service-card:hover .service-card__icon-wrap{
    background:rgba(204,28,28,.94) !important;
    border-color:rgba(204,28,28,1) !important;
  }
  #services .service-card:hover .service-icon-img{
    filter:brightness(0) saturate(100%) invert(8%) sepia(7%) saturate(1251%) hue-rotate(355deg) brightness(92%) contrast(94%) !important;
  }
  #services .service-card:hover .service-card__more{
    color:#e0bc76 !important;
    border-bottom-color:rgba(204,28,28,.52) !important;
  }

  #services .services-desktop-cta-wrap{
    margin-top:1.55rem !important;
  }
  #services .services-desktop-cta{
    display:inline-flex;
  }

  #services .services-quality-panel{
    display:none !important;
  }
}

@media (min-width: 1024px) and (max-width: 1260px){
  #services .services-signature__title{
    font-size:clamp(1.8rem, 4.1vw, 2.8rem) !important;
  }
}

/* ===== SERVICES — MOBILE LISTE COMPACTE (≤767px) ===== */
@media (max-width: 767px) {
  #services .services-flow{
    display:flex !important;
    flex-direction:column !important;
    gap:.48rem !important;
    border-top:none !important;
    margin-top:.9rem;
  }
  #services .services-flow .service-card--signature{
    min-height:auto !important;
    padding:0 !important;
    border:1px solid rgba(255,255,255,.12) !important;
    border-left:2px solid rgba(255,255,255,.17) !important;
    border-radius:10px !important;
    background:linear-gradient(180deg, rgba(8,8,8,.95), rgba(4,4,4,.96)) !important;
    overflow:hidden !important;
    transition:border-color .22s ease, background .22s ease, box-shadow .22s ease !important;
    position:relative !important;
    transform:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    box-shadow:none !important;
  }
  #services .services-flow .service-card--signature:hover{
    transform:none !important;
  }
  #services .services-flow .service-card--signature::before{
    content:"" !important;
    position:absolute !important;
    right:.9rem !important;
    top:.98rem !important;
    width:6px !important;
    height:6px !important;
    border-right:1.8px solid rgba(255,255,255,.55) !important;
    border-bottom:1.8px solid rgba(255,255,255,.55) !important;
    transform:rotate(45deg) !important;
    transition:transform .22s ease, border-color .22s ease, top .22s ease !important;
    z-index:3 !important;
  }
  #services .services-flow .service-card--signature::after{
    display:none !important;
    content:none !important;
  }
  #services .services-flow .service-card--signature > div:first-child{
    display:grid !important;
    grid-template-columns:18px minmax(0,1fr) !important;
    grid-template-areas:
      "icon title"
      "text text"
      "chips chips" !important;
    align-items:center !important;
    column-gap:.5rem !important;
    row-gap:.52rem !important;
    padding:.86rem .92rem 1.52rem .86rem !important;
    min-width:0 !important;
  }
  #services .service-card .service-card__text{
    grid-area:text !important;
    display:none !important;
    margin:0 !important;
    max-width:none !important;
    color:rgba(255,255,255,.68) !important;
    font-size:.88rem !important;
    line-height:1.5 !important;
    padding:0 .06rem 0 !important;
  }
  #services .services-flow .service-card--signature > .service-card__more{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    position:absolute !important;
    right:.72rem !important;
    bottom:.62rem !important;
    margin:0 !important;
    padding:.26rem .52rem .24rem !important;
    min-height:20px;
    border-radius:999px !important;
    font-size:8px !important;
    font-weight:900 !important;
    letter-spacing:.09em !important;
    line-height:1.1;
    color:rgba(255,255,255,.74) !important;
    text-transform:uppercase;
    border:1px solid rgba(255,255,255,.16) !important;
    background:rgba(255,255,255,.04) !important;
    box-shadow:0 6px 14px rgba(0,0,0,.24) !important;
    opacity:1 !important;
    visibility:visible !important;
    z-index:5 !important;
    transform:none !important;
  }
  #services .service-card .service-card__icon-wrap{
    grid-area:icon !important;
    display:inline-grid !important;
    place-items:center !important;
    width:18px !important;
    height:18px !important;
    margin:0 !important;
    border-radius:0 !important;
    border:none !important;
    background:transparent !important;
    flex-shrink:0 !important;
  }
  #services .service-card .service-icon-img{
    width:15px !important;
    height:15px !important;
    filter:brightness(0) saturate(100%) invert(90%) sepia(6%) saturate(208%) hue-rotate(336deg) brightness(95%) contrast(90%) !important;
    opacity:.66 !important;
  }
  #services .service-card .service-card__num{
    display:none !important;
    margin:0 !important;
    padding:0 !important;
    font-size:10px !important;
    line-height:1 !important;
    font-weight:900 !important;
    letter-spacing:.12em !important;
    color:rgba(255,255,255,.42) !important;
  }
  #services .services-flow .service-card__title{
    grid-area:title !important;
    font-size:1.03rem !important;
    font-weight:900 !important;
    color:rgba(255,255,255,.84) !important;
    text-transform:uppercase !important;
    font-style:normal !important;
    letter-spacing:.03em !important;
    margin:0 !important;
    max-width:none !important;
    line-height:1.13 !important;
    padding-right:1.35rem !important;
  }
  #services .service-card .service-card__chips{
    grid-area:chips !important;
    display:none !important;
    align-items:center;
    flex-wrap:wrap;
    gap:.4rem;
    margin:0 !important;
    padding:0 0 .02rem !important;
  }
  #services .service-card .service-card__chip{
    display:inline-flex;
    align-items:center;
    min-height:20px;
    padding:0 .56rem;
    border-radius:999px;
    background:rgba(255,255,255,.1);
    color:rgba(255,255,255,.75);
    font-size:9px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.06em;
    line-height:1;
  }
  #services .services-flow .service-card--signature.is-open-mobile{
    border-color:rgba(255,255,255,.2) !important;
    border-left-color:rgba(204,28,28,.5) !important;
    background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)) !important;
    box-shadow:0 18px 40px rgba(0,0,0,.42) !important;
  }
  #services .services-flow .service-card--signature.is-open-mobile::before{
    top:1.12rem !important;
    border-right-color:rgba(255,255,255,.74) !important;
    border-bottom-color:rgba(255,255,255,.74) !important;
    transform:rotate(-135deg) !important;
  }
  #services .services-flow .service-card--signature.is-open-mobile > div:first-child{
    padding-bottom:2.08rem !important;
  }
  #services .services-flow .service-card--signature.is-open-mobile .service-card__icon-wrap{
    border:none !important;
    background:transparent !important;
  }
  #services .services-flow .service-card--signature.is-open-mobile .service-icon-img{
    filter:brightness(0) saturate(100%) invert(79%) sepia(18%) saturate(1042%) hue-rotate(356deg) brightness(98%) contrast(92%) !important;
    opacity:1 !important;
  }
  #services .services-flow .service-card--signature.is-open-mobile .service-card__num{
    display:none !important;
  }
  #services .services-flow .service-card--signature.is-open-mobile .service-card__title{
    color:var(--primary-2) !important;
  }
  #services .services-flow .service-card--signature.is-open-mobile .service-card__text{
    display:block !important;
    color:rgba(255,255,255,.72) !important;
  }
  #services .services-flow .service-card--signature.is-open-mobile .service-card__chips{
    display:flex !important;
  }
  #services .services-flow .service-card--signature.is-open-mobile .service-card__chip{
    background:rgba(255,255,255,.12);
    color:rgba(255,255,255,.82);
  }
  #services .services-flow .service-card--signature.is-open-mobile > .service-card__more{
    color:var(--primary-2) !important;
    border-color:rgba(204,28,28,.44) !important;
    background:rgba(204,28,28,.12) !important;
  }
  #services .service-card--signature > div:first-child{
    padding-right:.92rem !important;
  }
}

/* 34) Visual system homogenization (cross-section polish) */
#services,
#process,
#realisations,
#avis,
#faq,
#contact{
  padding-top:clamp(5.15rem, 6.8vw, 7rem);
  padding-bottom:clamp(5.15rem, 6.8vw, 7rem);
}
.risk-section{
  padding-top:clamp(4.4rem, 5.8vw, 6rem);
  padding-bottom:clamp(4.4rem, 5.8vw, 6rem);
}

.section-kicker{
  font-size:11px;
  font-weight:900;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--primary-2);
  opacity:.92;
}
.section-heading{
  line-height:.96;
  letter-spacing:-.016em;
  text-wrap:balance;
}
#realisations .section-heading,
#avis .section-heading{
  font-size:clamp(2.05rem, 4.6vw, 3.85rem);
}
#faq .section-heading,
#contact .section-heading{
  font-size:clamp(1.95rem, 4vw, 3.25rem);
}
.section-intro{
  color:rgba(255,255,255,.64);
  max-width:60ch;
  font-size:clamp(.95rem, .9vw, 1.05rem);
  line-height:1.6;
}

.btn-google{
  letter-spacing:.14em !important;
}

.compare-card,
.review-card-glass,
.faq-item,
.risk-card,
#contact #mapsOuterLink{
  border-color:rgba(255,255,255,.12) !important;
}
.compare-card,
.review-card-glass,
.faq-item,
.risk-card{
  border-radius:16px;
}
.compare-card:hover,
.review-card-glass:hover,
.risk-card:hover,
#contact #mapsOuterLink:hover{
  transform:translateY(-1px);
}

#services .service-card__title,
.process-flow__title,
#realisations article h3,
#avis .review-name{
  letter-spacing:-.004em;
}
#services .service-card__text,
.process-flow__text,
#realisations .section-intro,
#avis .section-intro,
#faq .section-intro{
  color:rgba(255,255,255,.62);
}

@media (max-width: 1023px){
  #services,
  #process,
  #realisations,
  #avis,
  #faq,
  #contact{
    padding-top:3.6rem !important;
    padding-bottom:3.6rem !important;
  }
  .risk-section{
    padding-top:3.35rem !important;
    padding-bottom:3.35rem !important;
  }
  .section-kicker{
    font-size:10px;
    letter-spacing:.23em;
  }
  .section-intro{
    font-size:14px;
    line-height:1.56;
  }
}

@media (max-width: 767px){
  .btn-google{
    min-height:46px;
    padding:0 16px;
    font-size:10px;
    letter-spacing:.1em;
  }
}

/* ===== SERVICES — DESKTOP FINE-TUNING (ajustements visuels) ===== */
@media (min-width: 1024px) {
  /* Icône top-right supprimée sur desktop : lisibilité des cartes */
  #services .service-card .service-card__icon-wrap{
    display:none !important;
  }
  /* Supprimer le padding-right réservé à l'icône */
  #services .service-card .service-card__num{
    padding-right:0 !important;
  }
  /* Titre : réduit + max-width libéré pour tenir sur une ligne */
  #services .services-flow .service-card__title{
    font-size:clamp(.88rem, 1vw, 1.2rem) !important;
    max-width:none !important;
    white-space:nowrap !important;
  }
  /* Description : tronquée à 2 lignes */
  #services .services-flow .service-card__text{
    display:-webkit-box !important;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden !important;
    max-width:22ch !important;
  }
  /* Hauteur de carte réduite */
  #services .services-flow .service-card--signature{
    min-height:200px !important;
  }
}

/* ===== SERVICES — DESIGN PREMIUM (≥1024px) ===== */
@media (min-width: 1024px) {

  /* Halo cyan derrière le titre */
  #services .services-signature{
    position:relative !important;
  }
  #services .services-signature::before{
    content:'';
    position:absolute;
    top:-60px;
    left:50%;
    transform:translateX(-50%);
    width:520px;
    height:220px;
    background:radial-gradient(ellipse at 50% 0%, rgba(204,28,28,.13) 0%, transparent 68%);
    pointer-events:none;
    z-index:-1;
  }

  /* Numéros : filigrane Syne identique à .process-flow__num */
  #services .services-flow .service-card--signature{
    position:relative !important;
    overflow:hidden !important;
  }
  #services .service-card .service-card__num{
    position:absolute !important;
    top:6px !important;
    right:10px !important;
    margin:0 !important;
    padding:0 !important;
    font-family:'Syne', sans-serif !important;
    font-size:clamp(3rem, 5.2vw, 4.9rem) !important;
    font-weight:900 !important;
    font-style:italic !important;
    line-height:.88 !important;
    letter-spacing:normal !important;
    color:rgba(255,255,255,.04) !important;
    pointer-events:none !important;
    z-index:0 !important;
    transition:color .35s ease !important;
  }
  /* Carte 01 : neutralise la couleur accent du bloc LAYOUT PRO */
  #services .services-flow .service-card:first-child .service-card__num{
    color:rgba(255,255,255,.04) !important;
  }
  #services .service-card:hover .service-card__num,
  #services .services-flow .service-card:first-child:hover .service-card__num{
    color:rgba(204,28,28,.2) !important;
  }
  /* Contenu au-dessus du filigrane */
  #services .service-card > div:first-child{
    z-index:1 !important;
  }

  /* Card 01 : sweep gradient cyan gauche→transparent */
  #services .service-card:first-child{
    background:linear-gradient(105deg, rgba(204,28,28,.07) 0%, rgba(204,28,28,.02) 45%, transparent 100%) !important;
  }

  /* Transitions fluides sur toutes les cartes */
  #services .service-card{
    transition:background .28s ease, border-left-color .28s ease !important;
  }

  /* Hover non-première carte : fond accent très subtil */
  #services .service-card:not(:first-child):hover{
    background:rgba(204,28,28,.03) !important;
    border-left-color:rgba(204,28,28,.45) !important;
  }

  /* Titres : micro-spacing + contraste légèrement renforcé */
  #services .services-flow .service-card__title{
    letter-spacing:.025em !important;
    color:rgba(255,255,255,.92) !important;
  }
  #services .service-card:first-child .service-card__title{
    color:#fff !important;
  }

  /* Description : lisibilité améliorée */
  #services .services-flow .service-card__text{
    color:rgba(255,255,255,.58) !important;
    line-height:1.55 !important;
  }

  /* Barre de séparation supérieure en dégradé */
  #services .services-flow{
    border-top:none !important;
    border-image:none !important;
    position:relative !important;
  }
  #services .services-flow::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:1px;
    background:linear-gradient(90deg, var(--primary) 0%, rgba(255,255,255,.12) 25%, rgba(255,255,255,.08) 75%, rgba(255,255,255,.04) 100%);
    pointer-events:none;
  }
}

/* ===== SERVICES — UNIFORMISATION MODÈLE PROCESS MOBILE (≤1023px) ===== */
@media (max-width: 1023px) {

  /* Fond transparent : même DNA que process-flow__step */
  #services .services-flow .service-card--signature{
    background:transparent !important;
    border-left-color:rgba(204,28,28,.32) !important;
  }

  /* Titre → Syne italic comme .process-flow__title */
  #services .services-flow .service-card__title{
    font-family:'Syne', sans-serif !important;
  }

  /* Carte ouverte : fond accent subtil + accent accent renforcé */
  #services .services-flow .service-card--signature.is-open-mobile{
    background:rgba(204,28,28,.04) !important;
    border-left-color:rgba(204,28,28,.7) !important;
    box-shadow:none !important;
  }
}

/* ===== SERVICES — UNIFORMISATION PROCESS PHONE (≤767px) ===== */
@media (max-width: 767px) {

  /* Container : liste connectée arrondie (= .process-flow mobile) */
  #services .services-flow{
    gap:0 !important;
    border:1px solid rgba(255,255,255,.1) !important;
    border-radius:14px !important;
    overflow:hidden !important;
  }

  /* Carte : sans arrondi individuel, séparateur bottom */
  #services .services-flow .service-card--signature{
    border-radius:0 !important;
    border:none !important;
    border-bottom:1px solid rgba(255,255,255,.08) !important;
    border-left:2px solid rgba(204,28,28,.3) !important;
  }
  #services .services-flow .service-card--signature:last-child{
    border-bottom:none !important;
  }

  /* Numéro filigrane (span HTML) visible en fond, z-index sous le chevron */
  #services .service-card .service-card__num{
    display:block !important;
    position:absolute !important;
    top:6px !important;
    right:10px !important;
    font-family:'Syne', sans-serif !important;
    font-size:clamp(1.8rem, 5vw, 2.5rem) !important;
    font-weight:900 !important;
    font-style:italic !important;
    line-height:.9 !important;
    letter-spacing:normal !important;
    color:rgba(255,255,255,.05) !important;
    pointer-events:none !important;
    z-index:1 !important;
    margin:0 !important;
    padding:0 !important;
  }
}

/* ===== SERVICES — UNIFORMISATION MODÈLE PROCESS (≥1024px) ===== */
@media (min-width: 1024px) {

  /* 1. Fond transparent : identique aux process-flow__step */
  #services .services-flow .service-card--signature,
  #services .service-card:first-child{
    background:transparent !important;
  }

  /* 2. Ligne d'accent cyan avant le titre (= .process-flow__line) */
  #services .service-card > div:first-child::before{
    content:'';
    display:block;
    flex-shrink:0;
    width:34px;
    height:2px;
    background:var(--primary);
    margin-bottom:1rem;
    transition:width .35s ease;
  }
  #services .service-card:hover > div:first-child::before{
    width:82px;
  }

  /* 3. Titre → Syne italic comme .process-flow__title */
  #services .services-flow .service-card__title{
    font-family:'Syne', sans-serif !important;
  }

  /* 4. Chips masquées (le process n'en a pas → cohérence visuelle) */
  #services .service-card .service-card__chips{
    display:none !important;
  }

  /* 5. Hover : fond + bordure identiques au process */
  #services .service-card{
    transition:background .35s ease, border-color .35s ease !important;
  }
  #services .service-card:hover{
    background:rgba(204,28,28,.05) !important;
    border-right-color:rgba(204,28,28,.35) !important;
  }
}

/* Services typography lock:
   Keep italic only for the "Ingénierie de la jante alu" signature title. */
#services .services-signature__title{
  font-style:italic !important;
}
#services .services-flow .service-card__title{
  font-style:normal !important;
}
#services .service-card__num{
  font-style:normal !important;
}

/* Services mobile: side-number readability polish */
@media (max-width: 767px){
  #services .services-flow .service-card--signature > div:first-child{
    padding-right:3.2rem !important;
  }
  #services .services-flow .service-card__title{
    padding-right:2.6rem !important;
  }
  #services .service-card .service-card__num{
    top:8px !important;
    right:28px !important;
    font-size:clamp(1.45rem, 4.6vw, 2rem) !important;
    letter-spacing:-.02em !important;
    color:rgba(255,255,255,.14) !important;
    z-index:2 !important;
    text-shadow:0 2px 10px rgba(0,0,0,.42);
  }
}

/* Process cards typography = Services cards typography */
#process .process-flow__title{
  font-family:'Syne', sans-serif !important;
  font-style:normal !important;
  font-weight:600 !important;
  letter-spacing:.015em !important;
}
#process .process-flow__text{
  font-family:'Satoshi', "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-style:normal !important;
  font-weight:400 !important;
}

/* Services mobile: accent color harmonization with site primary */
@media (max-width: 767px){
  #services .services-flow .service-card--signature{
    border-left-color:rgba(204,28,28,.32) !important;
  }
  #services .services-flow .service-card--signature.is-open-mobile{
    border-left-color:var(--primary) !important;
    background:linear-gradient(180deg, rgba(204,28,28,.07), rgba(255,255,255,.015)) !important;
  }
  #services .services-flow .service-card--signature.is-open-mobile .service-card__title{
    color:var(--primary) !important;
  }
  #services .services-flow .service-card--signature.is-open-mobile .service-icon-img{
    filter:brightness(0) saturate(100%) invert(74%) sepia(28%) saturate(675%) hue-rotate(5deg) brightness(95%) contrast(88%) !important;
  }
  #services .services-flow .service-card--signature.is-open-mobile > .service-card__more{
    color:var(--primary) !important;
    border-color:rgba(204,28,28,.54) !important;
    background:rgba(204,28,28,.12) !important;
  }
}

/* Legal page: typography aligned with main page */
body[data-page="legal"]{
  font-family:'Satoshi', "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
body[data-page="legal"] #main .legal-hero-title{
  font-family:'Syne', sans-serif !important;
  font-weight:800 !important;
  font-style:italic !important;
  line-height:.96 !important;
  letter-spacing:-.016em !important;
  font-size:clamp(1.95rem, 6.8vw, 3.75rem) !important;
}
body[data-page="legal"] #main .legal-hero-intro{
  font-family:'Satoshi', "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  color:rgba(255,255,255,.64) !important;
  max-width:60ch !important;
  font-size:clamp(.95rem, .9vw, 1.05rem) !important;
  line-height:1.6 !important;
}
body[data-page="legal"] #main .legal-card-title{
  font-family:'Syne', sans-serif !important;
  font-weight:800 !important;
  font-style:italic !important;
  line-height:1.02 !important;
  letter-spacing:-.012em !important;
  font-size:clamp(1.2rem, 2.2vw, 1.9rem) !important;
}
body[data-page="legal"] #main .glass-card p,
body[data-page="legal"] #main .glass-card li{
  font-family:'Satoshi', "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  line-height:1.62;
}

.ui-surface{
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 10px 30px rgba(0,0,0,.4);
  transition:all .25s ease;
}
.ui-surface:hover{
  border-color:rgba(255,255,255,.25);
  transform:translateY(-2px);
}

.glass-card,
.compare-card,
.service-card,
.risk-card,
.review-card-glass,
.wizard-panel,
.service-sheet-panel{
  border-radius:14px !important;
  border:1px solid rgba(255,255,255,.12) !important;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)) !important;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 10px 30px rgba(0,0,0,.4) !important;
  transition:background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease !important;
}
.glass-card:hover,
.compare-card:hover,
.service-card:hover,
.risk-card:hover,
.review-card-glass:hover,
.wizard-panel:hover,
.service-sheet-panel:hover{
  border-color:rgba(255,255,255,.25) !important;
  box-shadow:0 16px 40px rgba(0,0,0,.46) !important;
  transform:translateY(-2px);
}

.ui-info-box{
  border-radius:0;
  clip-path:polygon(var(--cta-cut) 0, 100% 0, calc(100% - var(--cta-cut)) 100%, 0 100%);
  border:1px solid rgba(255,255,255,.25);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  padding:9px 13px;
  box-shadow:
    0 10px 25px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.12);
  transition:all .25s ease;
}
.ui-info-box:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.4);
}

.hero-proof-item{
  min-height:56px !important;
  padding:9px 13px !important;
  border-radius:0 !important;
  clip-path:polygon(var(--cta-cut) 0, 100% 0, calc(100% - var(--cta-cut)) 100%, 0 100%) !important;
  border:1px solid rgba(255,255,255,.25) !important;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)) !important;
  box-shadow:
    0 10px 25px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.15) !important;
  align-items:flex-start;
  justify-content:center;
  transition:background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease !important;
}
.hero-proof-item:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.4) !important;
  background:linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.026)) !important;
}
.hero-proof-label{
  font-size:8.5px !important;
  letter-spacing:.1em !important;
  opacity:.6;
  color:#fff !important;
  text-transform:uppercase;
}
.hero-proof-value{
  margin-top:2px !important;
  font-size:clamp(.96rem, 1vw, 1.08rem) !important;
  font-weight:900 !important;
  color:#fff !important;
  line-height:1.05 !important;
}

@media (max-width: 767px){
  .hero-proof-item{
    min-height:48px !important;
    padding:8px 11px !important;
    clip-path:polygon(var(--cta-cut-mobile) 0, 100% 0, calc(100% - var(--cta-cut-mobile)) 100%, 0 100%) !important;
  }
  .hero-proof-label,
  .hero-section .hero-proof-label{
    font-size:7px !important;
    letter-spacing:.085em !important;
  }
  .hero-proof-value,
  .hero-section .hero-proof-value{
    margin-top:2px !important;
    font-size:clamp(.9rem, 3.5vw, 1rem) !important;
  }
}

/* Global framed surfaces: aligned with beveled CTA geometry */
.ui-frame{
  border-radius:0;
  clip-path:polygon(var(--cta-cut) 0, 100% 0, calc(100% - var(--cta-cut)) 100%, 0 100%);
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.014));
  box-shadow:0 12px 30px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.11);
}

.glass-card,
.compare-card,
.service-card,
.risk-card,
.review-card-glass,
.wizard-panel,
.service-sheet-panel,
.faq-item,
.hero-proof-item,
.hero-local-card,
.process-flow,
.compare-badge{
  border-radius:0 !important;
  clip-path:polygon(var(--cta-cut) 0, 100% 0, calc(100% - var(--cta-cut)) 100%, 0 100%) !important;
  border-color:rgba(255,255,255,.18) !important;
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.014)) !important;
  box-shadow:0 12px 30px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.11) !important;
}

.glass-card:hover,
.compare-card:hover,
.service-card:hover,
.risk-card:hover,
.review-card-glass:hover,
.faq-item:hover,
.hero-proof-item:hover,
.hero-local-card:hover,
.process-flow:hover{
  border-color:rgba(255,255,255,.34) !important;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)) !important;
  box-shadow:0 16px 38px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.14) !important;
}

.wizard-panel,
.service-sheet-panel{
  clip-path:polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%) !important;
}

@media (max-width: 767px){
  .ui-frame,
  .glass-card,
  .compare-card,
  .service-card,
  .risk-card,
  .review-card-glass,
  .wizard-panel,
  .service-sheet-panel,
  .faq-item,
  .hero-proof-item,
  .hero-local-card,
  .process-flow,
  .compare-badge{
    clip-path:polygon(var(--cta-cut-mobile) 0, 100% 0, calc(100% - var(--cta-cut-mobile)) 100%, 0 100%) !important;
  }
}

#contact .contact-meta,
#contact #mapsOuterLink{
  clip-path:none !important;
  transform:none;
}

#contact #mapsOuterLink{
  border-radius:18px !important;
  border-color:rgba(255,255,255,.12) !important;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)) !important;
  box-shadow:0 10px 30px rgba(0,0,0,.4) !important;
}

#contact #mapsOuterLink:hover{
  border-color:rgba(255,255,255,.25) !important;
  box-shadow:0 16px 40px rgba(0,0,0,.46) !important;
  transform:translateY(-2px);
}

@media (max-width: 767px){
  .hero-section .hero-proof-grid{
    width:min(100%, 280px) !important;
    max-width:280px !important;
    gap:.4rem !important;
  }
  .hero-section .hero-proof-item{
    min-height:44px !important;
    padding:7px 10px !important;
    clip-path:polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%) !important;
  }
}

@media (max-width: 1023px){
  body:not(.scrolled):not(.menu-open) #top{
    background:transparent !important;
    border-bottom-color:transparent !important;
    box-shadow:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }

  body:not(.scrolled):not(.menu-open) #navInner{
    background:transparent !important;
    box-shadow:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }

  body:not(.scrolled):not(.menu-open) #mobileMenuBtn{
    background:rgba(255,255,255,.03) !important;
    border-color:rgba(255,255,255,.18) !important;
    box-shadow:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }
}

/* 36) Targeted mobile responsive audit fixes */
@media (max-width: 767px){
  #mobileMenu > div:nth-child(2){
    gap:clamp(1rem, 3.8vh, 1.5rem) !important;
    padding-left:18px !important;
    padding-right:18px !important;
    padding-bottom:calc(4rem + env(safe-area-inset-bottom)) !important;
  }

  #mobileMenu .nav-track-link{
    max-width:100%;
    text-align:center;
    font-size:clamp(1.55rem, 7.4vw, 1.875rem) !important;
    line-height:1.02 !important;
  }

  #mobileMenu .mobile-menu-actions{
    min-width:0;
    gap:10px !important;
  }

  #mobileMenu .mobile-menu-call{
    min-width:0;
    padding-left:1rem !important;
    padding-right:1rem !important;
    line-height:1.2 !important;
  }

  #homeFloatingCtas{
    max-width:calc(100vw - 24px);
  }

  #homeFloatingCtas > button[data-open-wizard="true"]{
    min-width:0;
    white-space:nowrap;
  }

  #contact .contact-meta > div:last-child{
    min-width:0;
    max-width:100%;
  }

  #clientAddress,
  #clientHours,
  #openStatus,
  #contactPhoneLink{
    max-width:100%;
    overflow-wrap:anywhere;
  }

  #branchSelector{
    display:grid !important;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:6px !important;
  }

  #contact h2 + #branchSelector{
    margin:-.95rem 0 1.35rem !important;
  }

  .branch-btn{
    width:100%;
    min-width:0;
    padding:9px 7px !important;
    font-size:9px !important;
    letter-spacing:.08em !important;
    text-align:center;
  }

  #contact .contact-whatsapp-btn{
    min-height:50px;
    padding-left:18px !important;
    padding-right:18px !important;
    letter-spacing:.16em !important;
  }

  .map-open-status{
    left:10px;
    right:10px;
    width:max-content;
    max-width:calc(100% - 20px);
    line-height:1.25;
    white-space:normal;
  }

  .review-top{
    gap:10px;
  }

  .review-name{
    min-width:0;
    overflow-wrap:anywhere;
  }

  .review-stars{
    flex:0 0 auto;
  }

  .faq-item summary{
    min-width:0;
    padding:16px 16px;
    gap:12px;
  }

  .faq-item summary::after{
    flex:0 0 auto;
  }

  #quoteWizard .option-btn{
    white-space:normal;
    line-height:1.25;
  }
}

@media (max-width: 380px){
  #homeFloatingCtas{
    right:8px;
    bottom:max(8px, env(safe-area-inset-bottom));
    gap:6px;
  }

  #homeFloatingCtas > button[data-open-wizard="true"]{
    padding:.64rem .74rem !important;
    font-size:8.5px !important;
    letter-spacing:.08em !important;
  }

  #homeFloatingCtas > button[data-open-wizard="true"] .devis-btn-icon{
    width:13px;
    height:13px;
  }

  #homeFloatingCtas > a[data-client-phone-href]{
    width:42px;
    height:42px;
    flex-basis:42px;
  }

  .site-logo--header{
    width:116px;
    height:36px;
    max-height:36px;
  }

  #mobileMenu > div:first-child{
    padding:1rem !important;
  }

  #mobileMenu .mobile-menu-actions{
    flex-wrap:wrap;
  }

  #mobileMenu .mobile-menu-call{
    flex-basis:100%;
  }

  #mobileMenu .mobile-menu-instagram{
    margin-left:auto;
    margin-right:auto;
  }

  #branchSelector{
    grid-template-columns:1fr;
  }
}
/* Adaptations du template : intro, navigation et FAQ — A2J */
/* preloader, progress, section frame, refined motion */
.site-preloader{
  position:fixed;
  inset:0;
  z-index:9999;
  display:grid;
  place-items:center;
  background:#050505;
  color:#fff;
  pointer-events:auto;
  opacity:1;
  overflow:hidden;
  transition:opacity .48s cubic-bezier(.2,.84,.3,1), visibility .48s cubic-bezier(.2,.84,.3,1);
}
.site-preloader::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(640px 260px at 50% 48%, rgba(204,28,28,.13), transparent 70%),
    linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,.05) 50%, transparent 58% 100%);
  opacity:.85;
}
.site-preloader.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.site-preloader.is-hidden .site-preloader__inner{
  opacity:0;
  transform:translateY(-10px) scale(.985);
  transition:opacity .16s ease, transform .16s ease;
}
.site-preloader__inner{
  position:relative;
  width:min(94vw, 1040px);
  min-height:120px;
  display:grid;
  place-items:center;
  overflow:visible;
  z-index:1;
}
.site-preloader__words,
.site-preloader__brand{
  position:absolute;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(10px, 2vw, 18px);
  width:100%;
  text-align:center;
  font-family:'Syne', sans-serif;
  font-size:clamp(1.15rem, 3.2vw, 2.55rem);
  font-weight:800;
  font-style:italic;
  text-transform:uppercase;
  line-height:.95;
  letter-spacing:0;
}
.site-preloader__words{
  animation:preloaderWordsOut .38s cubic-bezier(.2,.84,.3,1) 1.18s forwards;
}
.site-preloader__words span{
  opacity:0;
  transform:translateY(28px);
  animation:preloaderWordIn .72s cubic-bezier(.2,.84,.3,1) forwards;
}
.site-preloader__words span:nth-child(2){ animation-delay:.18s; color:var(--primary); }
.site-preloader__words span:nth-child(3){ animation-delay:.36s; }
.site-preloader__brand{
  opacity:0;
  min-height:1.38em;
  color:rgba(255,255,255,.9);
  animation:preloaderBrandIn .78s cubic-bezier(.2,.84,.3,1) 1.5s forwards;
}
.site-preloader__brand > span:last-child{
  position:relative;
  z-index:2;
  display:block;
  max-width:min(86vw, 720px);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  line-height:1.12;
  padding:.12em 0 .18em;
}
.site-preloader__wipe{
  position:absolute;
  left:50%;
  bottom:-12px;
  width:0;
  height:3px;
  transform:translateX(-50%);
  background:linear-gradient(90deg, transparent, var(--primary), rgba(255,255,255,.88), var(--primary), transparent);
  box-shadow:0 0 24px rgba(204,28,28,.46);
  animation:preloaderWipe 1.35s cubic-bezier(.2,.84,.3,1) 1.18s both;
}
.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:3px;
  z-index:230;
  pointer-events:none;
  background:rgba(255,255,255,.035);
}
.scroll-progress span{
  display:block;
  width:0;
  height:100%;
  background:linear-gradient(90deg, var(--primary), #fff, var(--accent));
  box-shadow:0 0 18px rgba(204,28,28,.36);
  transform-origin:left center;
}
.section-frame{
  position:fixed;
  left:22px;
  bottom:32px;
  z-index:90;
  display:flex;
  align-items:center;
  gap:22px;
  pointer-events:none;
  color:rgba(255,255,255,.52);
  font-size:10px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  transform:rotate(-90deg) translateX(0);
  transform-origin:left center;
}
.section-frame::before{
  content:"";
  width:70px;
  height:1px;
  background:linear-gradient(90deg, rgba(204,28,28,.7), rgba(255,255,255,.08));
}
.hero-shell{
  position:relative;
}
.hero-copy,
.hero-layout{
  position:relative;
  z-index:1;
}
#mobileMenu{
  opacity:0;
  visibility:hidden;
  display:flex !important;
  pointer-events:none;
  transform:translateY(12px);
  transition:opacity .34s cubic-bezier(.2,.84,.3,1), transform .34s cubic-bezier(.2,.84,.3,1), visibility .34s;
}
#mobileMenu.hidden{
  display:flex !important;
}
body.menu-open #mobileMenu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}
#mobileMenu::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(560px 280px at 78% 22%, rgba(204,28,28,.18), transparent 70%),
    linear-gradient(90deg, rgba(255,255,255,.055) 0 1px, transparent 1px 100%);
  background-size:auto, 82px 82px;
  opacity:.8;
  pointer-events:none;
}
.mobile-menu-stage,
#mobileMenu > div:first-child{
  position:relative;
  z-index:1;
}
.mobile-menu-info{
  width:min(100%, 420px);
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  padding:16px 18px;
  color:rgba(255,255,255,.7);
  text-align:center;
  clip-path:polygon(var(--cta-cut-mobile) 0, 100% 0, calc(100% - var(--cta-cut-mobile)) 100%, 0 100%);
}
.mobile-menu-info span,
.mobile-menu-info small{
  display:block;
  font-size:9px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.42);
}
.mobile-menu-info strong{
  display:block;
  margin:4px 0 3px;
  font-family:'Syne', sans-serif;
  font-size:1.15rem;
  font-style:italic;
  text-transform:uppercase;
  color:#fff;
}
.faq-item{
  overflow:hidden;
}
.faq-item p{
  max-height:none;
  transition:max-height .34s cubic-bezier(.2,.84,.3,1), opacity .28s ease, padding .28s ease;
  will-change:max-height, opacity;
}
.faq-item:not([open]) p{
  max-height:0;
  opacity:0;
  padding-top:0;
  padding-bottom:0;
}

/* FAQ premium polish: numbered technical accordion */
#faq{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(720px 320px at 84% 10%, rgba(204,28,28,.1), transparent 68%),
    linear-gradient(180deg, #030303 0%, #080808 52%, #030303 100%) !important;
}
#faq::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  opacity:.5;
}
#faq > .mx-auto{
  position:relative;
  z-index:1;
}
#faq .section-kicker{
  display:inline-flex !important;
  align-items:center;
  gap:10px;
}
#faq .section-kicker::before{
  content:"";
  width:34px;
  height:1px;
  background:linear-gradient(90deg, var(--primary), transparent);
}
.faq-list{
  counter-reset:faqItem;
  display:grid;
  gap:14px;
}
.faq-list.space-y-4 > :not([hidden]) ~ :not([hidden]){
  margin-top:0 !important;
}
#faq .faq-item{
  counter-increment:faqItem;
  position:relative;
  overflow:hidden;
  border-color:rgba(255,255,255,.16) !important;
  background:
    linear-gradient(90deg, rgba(204,28,28,.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.062), rgba(255,255,255,.012)) !important;
  transition:border-color .28s ease, background .28s ease, box-shadow .28s ease, transform .28s ease !important;
}
#faq .faq-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:3px;
  height:100%;
  background:linear-gradient(180deg, var(--primary), rgba(204,28,28,.55));
  opacity:.28;
  transition:opacity .28s ease;
}
#faq .faq-item:hover,
#faq .faq-item[open]{
  border-color:rgba(204,28,28,.5) !important;
  background:
    linear-gradient(90deg, rgba(204,28,28,.14), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.018)) !important;
  box-shadow:0 18px 46px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.16), 0 0 0 1px rgba(204,28,28,.08) !important;
}
#faq .faq-item[open]::before{
  opacity:1;
}
#faq .faq-item summary{
  position:relative;
  min-height:76px;
  padding:22px 24px 22px 78px;
  color:rgba(255,255,255,.92);
  font-size:13px;
  line-height:1.25;
  letter-spacing:.08em;
}
#faq .faq-item summary::before{
  content:counter(faqItem, decimal-leading-zero);
  position:absolute;
  left:24px;
  top:50%;
  transform:translateY(-50%);
  color:rgba(204,28,28,.82);
  font-family:'Syne', sans-serif;
  font-size:16px;
  font-style:italic;
  font-weight:800;
  letter-spacing:0;
}
#faq .faq-item summary::after{
  content:"+";
  flex:0 0 auto;
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.16);
  border-radius:50%;
  background:rgba(0,0,0,.24);
  color:var(--primary);
  font-size:18px;
  font-weight:500;
  line-height:1;
  transition:transform .28s ease, border-color .28s ease, background .28s ease, color .28s ease;
}
#faq .faq-item[open] summary::after{
  content:"-";
  transform:rotate(180deg);
  border-color:rgba(204,28,28,.65);
  background:var(--primary);
  color:#050505;
}
#faq .faq-item p{
  max-width:760px;
  margin-left:78px;
  padding:0 72px 24px 0;
  color:rgba(255,255,255,.68);
  font-size:15px;
  line-height:1.72;
}
#faq .faq-item:not([open]) p{
  padding-bottom:0;
}

@media (max-width: 767px){
  .faq-list{
    gap:10px;
  }
  #faq .faq-item summary{
    min-height:64px;
    padding:18px 16px 18px 56px;
    font-size:11px;
    letter-spacing:.055em;
  }
  #faq .faq-item summary::before{
    left:16px;
    font-size:13px;
  }
  #faq .faq-item summary::after{
    width:30px;
    height:30px;
  }
  #faq .faq-item p{
    margin-left:56px;
    padding-right:16px;
    font-size:13px;
    line-height:1.62;
  }
}
.compare-card .compare-viewport img,
.service-card .service-icon-img,
.risk-card svg,
.review-card-glass{
  transition:transform .36s cubic-bezier(.2,.84,.3,1), filter .36s ease, opacity .36s ease;
}

.service-card:hover .service-icon-img,
.risk-card:hover svg{
  transform:scale(1.08) rotate(-4deg);
}
@keyframes preloaderWordIn{
  to{ opacity:1; transform:translateY(0); }
}
@keyframes preloaderWordsOut{
  to{ opacity:0; transform:translateY(-14px) scale(.985); }
}
@keyframes preloaderBrandIn{
  from{ opacity:0; transform:translateY(18px); }
  to{ opacity:1; transform:translateY(0); }
}
@keyframes preloaderWipe{
  0%{ width:0; opacity:0; }
  38%{ width:100%; opacity:1; }
  72%{ width:100%; opacity:1; }
  100%{ width:0; opacity:0; }
}
@media (max-width: 1023px){
  .section-frame{
    display:none;
  }
}
@media (max-width: 767px){
  .site-preloader__brand{
    flex-direction:column;
    gap:8px;
    font-size:clamp(1.05rem, 6vw, 1.45rem);
  }
  .site-preloader__words{
    flex-direction:column;
    gap:8px;
  }
  #mobileMenu .mobile-menu-info{
    margin-top:2px;
  }
}
@media (prefers-reduced-motion: reduce){
  .site-preloader{
    display:none;
  }
  .site-preloader__words span,
  .site-preloader__brand,
  .site-preloader__wipe{
    animation:none !important;
  }
  .faq-item p,
  .scroll-progress span{
    transition:none !important;
  }
}

/* Intro non bloquante : masquée sans JS, respect des préférences de mouvement. */
.site-preloader[hidden]{display:none;}
.site-preloader{animation:a2jIntroFailsafe .4s ease 3.4s forwards;}
@keyframes a2jIntroFailsafe{to{opacity:0;visibility:hidden;pointer-events:none;}}
.site-preloader__brand > span:last-child{white-space:normal;overflow:visible;max-width:90vw;}
.site-preloader__skip{position:absolute;right:clamp(20px,4vw,64px);bottom:max(32px,env(safe-area-inset-bottom));padding:12px 18px;border:1px solid #ffffff30;background:#ffffff08;color:#fff;font:700 11px 'Satoshi',sans-serif;letter-spacing:.12em;text-transform:uppercase;cursor:pointer;}
.site-preloader__skip span{margin-left:20px;color:var(--primary);}
.site-preloader__skip:hover{background:#ffffff18;}
.site-preloader__skip:focus-visible{outline:2px solid white;outline-offset:5px;}
.hero-discover{display:inline-flex;align-items:center;gap:24px;margin-top:22px;color:#ffffffb3;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;border-bottom:1px solid #ffffff30;padding-bottom:7px;}
.hero-discover:hover{color:#fff;border-color:var(--primary);}
.hero-discover span{color:var(--primary);font-size:20px;}
.scroll-progress span{width:100%;transform:scaleX(0);}
#mobileMenu .mobile-menu-info small{font-size:10px;letter-spacing:.04em;line-height:1.6;}
#faq .faq-item summary{gap:16px;}
#faq .faq-item p{max-height:none;}
@media(max-width:1279px){.section-frame{display:none;}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto!important;}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;}.reveal{opacity:1!important;transform:none!important;}}

/* Le devis reste accessible dès le premier écran sur téléphone. */
@media(max-width:767px){
  .hero-section .hero-cta-row{display:grid!important;grid-template-columns:1fr;gap:8px;margin-top:10px;}
  .hero-section .hero-cta-row > *{min-height:46px;justify-content:center;padding:12px 18px!important;font-size:10px;}
  .hero-section .hero-copy{gap:10px;}
  .hero-discover{margin-top:4px;font-size:9px;justify-self:start;}
  .hero-section .mil-circle-text{display:none;}
}

/* Carte toujours claire, indépendante des horaires et des animations. */
#contact .map-panel,
#contact #mapsOuterLink,
#contact #mapsEmbedFrame{
  opacity:1 !important;
  filter:none !important;
}
#contact #mapsOuterLink{overflow:hidden;background:#f5f5f5 !important;}
#contact #mapsEmbedFrame{color-scheme:light;}

/* Avis : vitesse de lecture régulière et boucle sans saut. */
#reviewsTrack { animation-name: scrollReviews; animation-duration: 100s; }
#reviewsTrack .review-card { width: 350px; min-width: 0; flex: 0 0 350px; white-space: normal; }
@keyframes scrollReviews { to { transform: translateX(calc(-50% - 8px)); } }
@media (max-width: 767px) {
  #reviewsTrack .review-card { width: 280px; flex-basis: 280px; padding: 20px; }
  #reviewsTrack { animation-duration: 100s; }
}

/* Cadrage du logo carré sur sa bande centrale, sans déformation. */
#navBrandName .site-logo--header { width:220px; height:48px; max-width:none; max-height:none; object-fit:cover; object-position:center; }
#navBrandName > div { margin-top:2px; font-size:9px; letter-spacing:.16em; text-align:center; }
#footerBrandName .site-logo--footer { width:240px; height:54px; max-width:none; max-height:none; object-fit:cover; object-position:center; }
@media (max-width: 1023px) {
  #navBrandName .site-logo--header { width:190px; height:44px; }
}
@media (max-width: 380px) {
  #navBrandName .site-logo--header { width:170px; height:40px; }
}

/* ============================================================
   PREMIUM POLISH — même palette (noir #050505 + rouge #CC1C1C),
   plus de profondeur, de chaleur et de finesse.
   Calque additionnel, non destructif (retirable d'un bloc).
   ============================================================ */

/* 1) Accent rouge dégradé sous chaque intitulé de section */
.section-kicker{ position:relative; }
.section-kicker::after{
  content:"";
  display:block;
  width:44px;
  height:2px;
  margin-top:10px;
  border-radius:2px;
  background:linear-gradient(90deg, var(--primary), rgba(204,28,28,0));
}

/* 2) Halos rouges diffus dans les grandes sections sombres (profondeur) */
#services{ background-image:radial-gradient(120% 80% at 86% -10%, rgba(204,28,28,.12), transparent 55%); }
#realisations{ background-image:radial-gradient(110% 90% at 12% 110%, rgba(204,28,28,.10), transparent 52%); }
#avis{ background-image:radial-gradient(100% 85% at 50% -10%, rgba(204,28,28,.09), transparent 55%); }
#faq{ background-image:radial-gradient(90% 80% at 90% 110%, rgba(204,28,28,.07), transparent 55%); }

/* 3) Cartes plus premium : reflet en haut + profondeur + halo rouge au survol */
.glass-card{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06), 0 24px 60px -34px rgba(0,0,0,.95);
  transition:border-color .35s ease, box-shadow .35s ease, transform .35s ease, background .35s ease;
}
.glass-card:hover{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.09),
             0 26px 60px -28px rgba(0,0,0,.95),
             0 0 0 1px rgba(204,28,28,.28),
             0 22px 55px -22px rgba(204,28,28,.38);
}

/* 4) Cartes de service : liseré rouge en haut qui se déploie au survol */
.service-card{ position:relative; }
.service-card::after{
  content:"";
  position:absolute; top:0; left:0; height:3px; width:0;
  border-radius:3px 3px 0 0;
  background:var(--ads-gradient);
  transition:width .45s cubic-bezier(.19,.9,.3,1);
  pointer-events:none;
}
.service-card:hover::after,
.service-card:focus-within::after{ width:100%; }

/* 5) Chip d'avis certifiés : léger liseré chaud pour l'unité visuelle */
#clientReviewCount{
  box-shadow:inset 0 0 0 1px rgba(204,28,28,.18);
}
