/* ============================================================
   ACCÈS ÉLÉVATION — styles.css
   Palette: Orange #F27405 | Navy #1B365D | Blue #004A8D | Gray #A7A9AC
   Fonts: Bricolage Grotesque (display) + Plus Jakarta Sans (body)
   Aesthetic: Refined Industrial — Confident, Textured, Modern
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --orange:        #F27405;
  --orange-hover:  #D96504;
  --orange-light:  rgba(242, 116, 5, 0.07);
  --orange-glow:   rgba(242, 116, 5, 0.22);
  --navy:          #1B365D;
  --navy-dark:     #0F1923;
  --navy-deeper:   #0A1118;
  --blue-accent:   #004A8D;
  --gray:          #A7A9AC;
  --gray-light:    #F4F5F7;
  --gray-warm:     #FAFAFA;
  --white:         #FFFFFF;
  --black:         #0F1923;
  --text-main:     #1A1A2E;
  --text-secondary:#5A6072;
  --text-muted:    #8B8FA3;
  --border:        #E2E4E9;
  --border-subtle: #ECEDF0;

  --shadow-xs:     0 1px 3px rgba(27, 54, 93, 0.04);
  --shadow-sm:     0 2px 8px rgba(27, 54, 93, 0.06);
  --shadow:        0 4px 20px rgba(27, 54, 93, 0.08);
  --shadow-md:     0 8px 32px rgba(27, 54, 93, 0.10);
  --shadow-lg:     0 16px 56px rgba(27, 54, 93, 0.13);
  --shadow-xl:     0 24px 80px rgba(27, 54, 93, 0.18);
  --shadow-orange: 0 8px 32px rgba(242, 116, 5, 0.30);
  --shadow-card:   0 2px 12px rgba(27, 54, 93, 0.06), 0 0 0 1px rgba(27, 54, 93, 0.03);

  --radius-xs:     6px;
  --radius-sm:     10px;
  --radius:        16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --radius-2xl:    40px;

  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:    0.32s var(--ease-smooth);
  --transition-fast: 0.18s var(--ease-smooth);

  --max-width:     1280px;
  --font-display:  'Bricolage Grotesque', sans-serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;
}

/* ===== SVG ICONS ===== */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 56px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ===== TYPOGRAPHIE ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(0.95rem, 1.5vw, 1.1rem); }

p {
  font-size: clamp(0.94rem, 1.4vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.72;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ===== GRAIN TEXTURE OVERLAY ===== */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 1;
}

/* ===== INLINE ICON SIZING ===== */
.btn-tel .icon,
.btn-outline-white .icon {
  width: 16px;
  height: 16px;
}
.hero-note .icon {
  width: 14px;
  height: 14px;
  color: var(--orange);
}
.form-note .icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}
.footer-contact .icon {
  width: 15px;
  height: 15px;
  color: var(--orange);
  opacity: 0.55;
}
.partenaires-avantages .icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
  vertical-align: -3px;
  margin-right: 3px;
}
.stars .icon {
  color: var(--orange);
}

/* ===== BOUTONS ===== */
.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #F27405 0%, #FF8C42 100%);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.005em;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  white-space: nowrap;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(242, 116, 5, 0.40);
}
.btn-orange::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.20) 0%, transparent 55%);
  opacity: 1;
  pointer-events: none;
}
.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(242, 116, 5, 0.50);
}
.btn-orange:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(242, 116, 5, 0.35);
}
.btn-orange.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-orange.btn-full { width: 100%; }

/* Compact nav variant */
.nav-cta .btn-orange {
  padding: 9px 18px;
  font-size: 0.84rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 54, 93, 0.22);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all var(--transition);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.06);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}
.btn-outline-white.btn-lg { padding: 17px 36px; font-size: 1rem; }

.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.btn-tel:hover {
  background: var(--gray-light);
  color: var(--orange);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition);
}
.btn-link:hover { gap: 10px; }
.btn-link--light { color: rgba(255, 255, 255, 0.85); }
.btn-link--light:hover { color: white; }

/* ===== SECTION HEADERS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-accent);
  background: rgba(0, 74, 141, 0.07);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label--orange {
  color: var(--orange);
  background: var(--orange-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header h2 {
  color: var(--navy);
  margin: 8px 0 16px;
  position: relative;
}
/* Section header accent line */
.section-header h2::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #FF9A3C);
  border-radius: 3px;
  margin: 18px auto 0;
  transition: width 0.8s var(--ease-out);
}
.section-header.is-visible h2::after,
[data-animate].is-visible .section-header h2::after,
.section-header h2.is-visible::after {
  width: 48px;
}
.section-header--light h2 {
  background: linear-gradient(
    105deg,
    #C8D7EB 0%,
    #C8D7EB 35%,
    #1B365D 44%,
    #5B8FC2 47%,
    #A8BFD9 50%,
    #C8D7EB 53%,
    #C8D7EB 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: aluminumShine 4s ease-in-out 0.5s infinite;
}
.section-header--light p { color: rgba(255, 255, 255, 0.68); }

/* ===== ANIMATIONS SCROLL ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  filter: blur(3px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out), filter 0.75s var(--ease-out);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
[data-animate]:nth-child(2) { transition-delay: 0.08s; }
[data-animate]:nth-child(3) { transition-delay: 0.16s; }
[data-animate]:nth-child(4) { transition-delay: 0.24s; }
[data-animate]:nth-child(5) { transition-delay: 0.32s; }
[data-animate]:nth-child(6) { transition-delay: 0.40s; }

/* ===== HERO STAGGERED REVEAL ===== */
.hero-content .hero-logo-block,
.hero-content .hero-badge,
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-subtitle-pro,
.hero-content .hero-actions,
.hero-content .hero-note {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  filter: blur(6px);
  animation: heroReveal 0.9s var(--ease-out) forwards;
}
.hero-content .hero-logo-block   { animation-delay: 0.05s; }
.hero-content .hero-badge        { animation-delay: 0.28s; }
.hero-content .hero-title        { animation-delay: 0.40s; }
.hero-content .hero-subtitle     { animation-delay: 0.54s; }
.hero-content .hero-subtitle-pro { animation-delay: 0.64s; }
.hero-content .hero-actions      { animation-delay: 0.76s; }
.hero-content .hero-note         { animation-delay: 0.90s; }

/* ===== HERO LOGO BLOCK ===== */
.hero-logo-block {
  display: block;
  margin-bottom: 1.75rem;
}
.hero-logo-main {
  display: block;
  height: 220px;
  width: auto;
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.55));
}
@media (max-width: 640px) {
  .hero-logo-main { height: 160px; }
  .hero-logo-block { margin-bottom: 1.25rem; }
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px) scale(0.97); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(27, 54, 93, 0.06);
  transition: all 0.4s var(--ease-smooth);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 16px rgba(27, 54, 93, 0.07);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.nav-logo img {
  height: 46px;
  object-fit: contain;
  width: auto;
}
.nav-icon-only {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li > a {
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform: translateX(-50%);
}
.nav-links > li > a:hover {
  color: var(--navy);
  transform: translateY(-1px);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active-link::after {
  width: 22px;
}
.nav-links > li > a.active-link {
  color: var(--navy);
  font-weight: 700;
}

/* Séparateur vertical entre liens nav */
.nav-links > li + li {
  position: relative;
}
.nav-links > li + li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 1px;
  background: rgba(27, 54, 93, 0.12);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.nav-hamburger:hover { background: var(--gray-light); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: none; }
.nav-mobile.is-open {
  display: block;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  padding: 16px clamp(1.25rem, 4vw, 3rem) 24px;
  box-shadow: var(--shadow-lg);
  animation: mobileSlideDown 0.35s var(--ease-out);
}
@keyframes mobileSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
}
.nav-mobile a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: all var(--transition-fast);
}
.nav-mobile a:hover {
  background: var(--gray-light);
  color: var(--orange);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1525 0%, #142640 60%, var(--navy) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.png') center right 5% / 58% auto no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(10, 21, 37, 0.94) 0%,
      rgba(10, 21, 37, 0.85) 38%,
      rgba(10, 21, 37, 0.35) 62%,
      rgba(10, 21, 37, 0.08) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px clamp(1.25rem, 4vw, 3rem) 100px;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.90rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
@media (max-width: 640px) {
  .hero-badge { font-size: 0.78rem; }
}

/* Aluminum shimmer keyframe */
@keyframes aluminumShine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-title {
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  background: linear-gradient(
    105deg,
    #C8D7EB 0%,
    #C8D7EB 35%,
    #1B365D 44%,
    #5B8FC2 47%,
    #A8BFD9 50%,
    #C8D7EB 53%,
    #C8D7EB 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: aluminumShine 4s ease-in-out 1.2s infinite;
}

.hero-highlight {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  position: relative;
  display: inline-block;
}
.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #FF9A3C);
  border-radius: 4px;
  opacity: 0.5;
  animation: accentLineGrow 0.8s var(--ease-out) 0.9s forwards;
}
@keyframes accentLineGrow {
  from { width: 0; }
  to   { width: 100%; }
}

.hero-subtitle {
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
  max-width: 550px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-subtitle-pro {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 32px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.hero-subtitle-pro .icon {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
}
.hero-pro-link {
  color: rgba(255, 255, 255, 0.70);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 3px;
  transition: all var(--transition-fast);
}
.hero-pro-link:hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  align-items: center;
}

.hero-note {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll-indicator span {
  display: block;
  width: 2px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0.3) translateY(-8px); }
  20%  { opacity: 0.8; }
  50%  { opacity: 1; transform: scaleY(1) translateY(0); }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: scaleY(0.5) translateY(12px); }
}

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust-band {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.trust-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(242,116,5,0.06) 0%, transparent 30%, transparent 70%, rgba(242,116,5,0.06) 100%);
  pointer-events: none;
}

.trust-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.84rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon .icon {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.trust-item {
  transition: all 0.35s var(--ease-out);
  text-decoration: none;
}
a.trust-item { cursor: pointer; }
.trust-item:hover {
  color: var(--white);
}
.trust-item:hover .trust-icon .icon {
  filter: drop-shadow(0 0 6px rgba(242, 116, 5, 0.5));
}

.trust-divider {
  width: 1px; height: 24px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

/* Trust band shimmer effect */
.trust-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 200px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation: trustShimmer 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes trustShimmer {
  0%   { left: -200px; }
  40%  { left: 110%; }
  100% { left: 110%; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--gray-light);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* --- Category Accordion (Interactive Panels) --- */
.cat-accordion {
  display: flex;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: none;
}

/* --- Panel base --- */
.cat-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cat-panel--active,
.cat-accordion:hover .cat-panel:hover {
  flex: 5;
}
.cat-accordion:hover .cat-panel:not(:hover) {
  flex: 0.6;
}

/* --- Background image --- */
.cat-panel-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.9);
  transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cat-panel--active .cat-panel-bg,
.cat-accordion:hover .cat-panel:hover .cat-panel-bg {
  filter: brightness(0.72) saturate(1.1);
  transform: scale(1.05);
}
/* Non-active panels dimmed in default state + when another panel is hovered */
.cat-panel:not(.cat-panel--active) .cat-panel-bg,
.cat-accordion:hover .cat-panel:not(:hover) .cat-panel-bg {
  filter: brightness(0.3) saturate(0.6);
}

/* --- Dark overlay gradient --- */
.cat-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 25, 40, 0.92) 0%,
    rgba(15, 25, 40, 0.40) 40%,
    rgba(15, 25, 40, 0.15) 70%,
    transparent 100%
  );
  z-index: 1;
  transition: opacity 0.5s;
}

/* --- Vertical label (collapsed state) --- */
.cat-panel-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s 0.15s;
}
/* Labels always visible on non-active panels (default = hover(active) state) */
.cat-panel:not(.cat-panel--active) .cat-panel-label {
  opacity: 1;
}
/* Hide label on active panel (only content shows) */
.cat-panel--active .cat-panel-label {
  opacity: 0 !important;
}
.cat-accordion:hover .cat-panel:not(:hover) .cat-panel-label {
  opacity: 1;
}
.cat-panel-label span {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* --- Content (expanded state) — glassmorphism --- */
.cat-panel-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 36px 32px;
  background: linear-gradient(
    135deg,
    rgba(15, 25, 40, 0.50) 0%,
    rgba(15, 25, 40, 0.30) 100%
  );
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s 0.15s, transform 0.45s 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Non-active panels: hide content in default + when another panel is hovered */
.cat-panel:not(.cat-panel--active) .cat-panel-content,
.cat-accordion:hover .cat-panel:not(:hover) .cat-panel-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.25s, transform 0.25s;
}
/* Hovered panel: always show content + hide label */
.cat-accordion:hover .cat-panel:hover .cat-panel-content {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.45s 0.15s, transform 0.45s 0.15s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.cat-accordion:hover .cat-panel:hover .cat-panel-label {
  opacity: 0 !important;
}

.cat-panel-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.cat-panel-content p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.55;
  margin-bottom: 18px;
  max-width: 400px;
}

/* --- CTA Button --- */
.cat-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  background: var(--orange);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
  text-shadow: none;
}
.cat-panel:hover .cat-panel-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 116, 5, 0.35);
}

/* --- Magnetic cursor --- */
.mag-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(242, 116, 5, 0.15);
  border: 2px solid rgba(242, 116, 5, 0.40);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  transition: opacity 0.3s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mag-cursor span {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}
.mag-cursor.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.mag-cursor.active span {
  opacity: 1;
}

/* --- Service Icon (client-type cards) --- */
.service-icon {
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  transition: all 0.4s var(--ease-out);
}
.service-icon .icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
}
.client-type-card:hover .service-icon {
  background: rgba(242, 116, 5, 0.14);
  box-shadow: 0 4px 16px rgba(242, 116, 5, 0.12);
  transform: scale(1.06);
}
.client-type-card--dark .service-icon {
  background: rgba(242, 116, 5, 0.12);
}

/* --- Client Type Selector --- */
.client-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 44px;
}
.client-type-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.client-type-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.client-type-card--res::before {
  background: linear-gradient(90deg, var(--orange), #FF9A3C);
}
.client-type-card--com::before {
  background: linear-gradient(90deg, #3B7DD8, #5BA3E6);
}
.client-type-card:hover::before { opacity: 1; }
.client-type-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(242, 116, 5, 0.08);
}
.client-type-card--dark {
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.08);
}
.client-type-card--dark::before { opacity: 1; }
.client-type-card--dark:hover {
  border-color: rgba(91, 163, 230, 0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.30), 0 0 20px rgba(59, 125, 216, 0.08);
}

/* Eyebrow label */
.client-type-eyebrow {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.client-type-eyebrow--light {
  color: rgba(255, 255, 255, 0.45);
}

.client-type-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.client-type-header h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy);
  margin: 0;
}

/* Subtitle (commercial) */
.client-type-subtitle {
  font-size: 0.82rem !important;
  color: rgba(255, 255, 255, 0.50) !important;
  font-weight: 500;
  margin-bottom: 14px !important;
  letter-spacing: 0.01em;
}

/* Lead text (residential) */
.client-type-lead {
  font-size: 1.05rem !important;
  color: var(--navy) !important;
  font-weight: 600;
  margin-bottom: 10px !important;
  line-height: 1.4;
}

.client-type-card p {
  font-size: 0.90rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.65;
}
.client-type-card--dark .client-type-header h3 { color: var(--white); font-size: 1.45rem; }
.client-type-card--dark p { color: rgba(255, 255, 255, 0.85); }

/* Trust badges (residential) */
.client-type-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.client-type-trust span,
.client-type-trust a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(242, 116, 5, 0.07);
  border: 1px solid rgba(242, 116, 5, 0.12);
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.25s var(--ease-smooth);
}
.client-type-trust span .icon,
.client-type-trust a .icon {
  color: var(--orange);
  flex-shrink: 0;
}
.client-type-trust a:hover {
  background: rgba(242, 116, 5, 0.14);
  border-color: rgba(242, 116, 5, 0.25);
  transform: translateY(-1px);
}

/* --- Audience Tags (commercial card) --- */
.client-type-audiences {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.audience-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
}
.audience-tag:hover {
  background: rgba(91, 163, 230, 0.12);
  border-color: rgba(91, 163, 230, 0.30);
  color: #8CC4FF;
  transform: translateY(-1px);
}

/* --- Service Badges (Résidentiel/Commercial) --- */
.service-badges {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.badge-res,
.badge-com,
.badge-mun {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.badge-res {
  background: rgba(27, 54, 93, 0.08);
  color: var(--navy);
}
.badge-com {
  background: rgba(242, 116, 5, 0.10);
  color: var(--orange);
}
.badge-mun {
  background: rgba(0, 74, 141, 0.10);
  color: var(--blue-accent);
}

/* ============================================================
   GALERIE PRODUITS — BENTO GRID
   ============================================================ */
.produits {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: linear-gradient(180deg, #0a1525 0%, #142640 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.produits::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(242,116,5,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.produits::after {
  content: '';
  position: absolute;
  left: var(--rx, 50%);
  top: var(--ry, 50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(220, 235, 250, 0.07) 25%,
    rgba(200, 222, 242, 0.03) 45%,
    transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease, left 0.12s ease-out, top 0.12s ease-out;
}
.produits:hover::after { opacity: 1; }
.produits .container { position: relative; z-index: 2; }

/* --- CTA "Voir catalogue" bottom of produits section --- */
.produits-cta-wrap {
  text-align: center;
  margin-top: clamp(32px, 4vw, 52px);
}
.produits-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--orange) 0%, #e06800 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 18px 42px;
  border-radius: 100px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 20px rgba(242, 116, 5, 0.35),
    0 0 0 0 rgba(242, 116, 5, 0);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.produits-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%);
  transform: translateX(-110%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.produits-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 8px 32px rgba(242, 116, 5, 0.45),
    0 0 0 4px rgba(242, 116, 5, 0.12);
  gap: 18px;
}
.produits-cta-btn:hover::before {
  transform: translateX(110%);
}
.produits-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.produits-cta-btn:hover .produits-cta-arrow {
  background: rgba(255, 255, 255, 0.30);
  transform: translateX(4px);
}

.produits-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  grid-auto-flow: dense;
}

.produit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}
.produit-card:hover {
  transform: scale(1.03) translateY(-3px);
  border-color: rgba(242, 116, 5, 0.40);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 0 20px rgba(242, 116, 5, 0.08);
}
.produit-card:hover .produit-overlay {
  opacity: 1;
}
.produit-card--large {
  grid-column: span 2;
  grid-row: span 2;
}
.produit-card--wide {
  grid-column: span 2;
}

.produit-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.produit-card:hover img { transform: scale(1.06); }

.produit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 25, 35, 0.95) 0%,
    rgba(27, 54, 93, 0.4) 35%,
    transparent 65%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.produit-overlay h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.produit-overlay p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

/* --- Product Filters --- */
.produits-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.produit-filter-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  font-weight: 500;
  margin-right: 4px;
}
.produit-filter {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
}
.produit-filter:hover {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.80);
}
.produit-filter.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  box-shadow: 0 2px 12px rgba(242, 116, 5, 0.35);
}

/* --- Product Badges --- */
.produit-badge {
  position: relative;
  top: auto; left: auto;
  background: var(--orange);
  color: white;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(242, 116, 5, 0.35);
  display: inline-block;
  margin-bottom: 6px;
  margin-right: 4px;
}
.produit-badge--res {
  background: rgba(27, 54, 93, 0.85);
  box-shadow: 0 2px 8px rgba(27, 54, 93, 0.30);
}
/* Dans la section Solutions : badge Résidentiel en orange pour distinguer du Commercial */
.solutions-col .produit-badge--res {
  background: var(--orange);
  box-shadow: 0 2px 8px rgba(242, 116, 5, 0.35);
}
.produit-badge--com {
  background: rgba(0, 74, 141, 0.85);
  box-shadow: 0 2px 8px rgba(0, 74, 141, 0.30);
}
/* Dans la section Solutions : badge Commercial en glassmorphism */
.solutions-col .produit-badge--com {
  background: rgba(0, 74, 141, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 120, 210, 0.55);
  box-shadow: 0 2px 8px rgba(0, 74, 141, 0.18);
}

/* --- Product card filter animation --- */
.produit-card {
  transition: all 0.4s var(--ease-out), opacity 0.35s var(--ease-smooth);
}
.produit-card.filtered-out {
  opacity: 0.12;
  transform: scale(0.96);
  pointer-events: none;
}


/* ============================================================
   CONFORMITÉ & NORMES — compact badges (inside Partenaires)
   ============================================================ */
/* ===== CONFORMITÉ & NORMES — Standalone Dark Section ===== */
.conformite {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: linear-gradient(180deg, #0a1525 0%, #142640 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.conformite::before {
  content: '';
  position: absolute;
  top: -40%; left: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(242, 116, 5, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
/* Reflet aluminium interactif — suit la souris */
.conformite::after {
  content: '';
  position: absolute;
  left: var(--rx, 50%);
  top: var(--ry, 50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(220, 235, 250, 0.07) 25%,
    rgba(200, 222, 242, 0.03) 45%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease, left 0.12s ease-out, top 0.12s ease-out;
}
.conformite:hover::after {
  opacity: 1;
}
.conformite .container { position: relative; z-index: 1; }

/* --- Header --- */
.conformite-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.conformite-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(242, 116, 5, 0.10);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.conformite-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.conformite-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

/* --- 5-card strip --- */
.conformite-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

/* --- Card: dark glassmorphism --- */
.conf-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 16px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease, background 0.35s ease;
  position: relative;
}
.conf-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(242, 116, 5, 0.35);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(242, 116, 5, 0.15),
    0 0 80px rgba(242, 116, 5, 0.08),
    0 4px 20px rgba(242, 116, 5, 0.12);
}

/* --- Icon --- */
.conf-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 116, 5, 0.10);
  border: 1px solid rgba(242, 116, 5, 0.15);
  border-radius: 14px;
  color: var(--orange);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.conf-card-icon svg {
  width: 24px;
  height: 24px;
}
.conf-card:hover .conf-card-icon {
  background: rgba(242, 116, 5, 0.18);
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(242, 116, 5, 0.15);
}

/* --- Text --- */
.conf-card-label {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}
.conf-card-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.40);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 2px 0 0;
  line-height: 1.4;
}

/* --- Stagger scroll-reveal animation --- */
.conf-card:nth-child(1) { --conf-delay: 0s; }
.conf-card:nth-child(2) { --conf-delay: 0.12s; }
.conf-card:nth-child(3) { --conf-delay: 0.24s; }
.conf-card:nth-child(4) { --conf-delay: 0.36s; }
.conf-card:nth-child(5) { --conf-delay: 0.48s; }

/* Cards hidden before scroll reveal */
.conf-card[data-animate] {
  opacity: 0;
  transform: translateY(32px) scale(0.96);
}
.conf-card[data-animate].is-visible {
  animation: confBounceUp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: var(--conf-delay);
}
@keyframes confBounceUp {
  0%   { opacity: 0; transform: translateY(32px) scale(0.96); }
  60%  { opacity: 1; transform: translateY(-6px) scale(1.02); }
  80%  { transform: translateY(2px) scale(0.995); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Conformité responsive --- */
@media (max-width: 900px) {
  .conformite-strip {
    grid-template-columns: repeat(3, 1fr);
    max-width: 600px;
  }
  .conf-card { padding: 22px 14px 20px; }
}
@media (max-width: 640px) {
  .conformite-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 400px;
  }
  .conformite-header { margin-bottom: 32px; }
  .conformite-desc { font-size: 0.84rem; }
  .conf-card { padding: 20px 12px 18px; border-radius: 12px; gap: 8px; }
  .conf-card-icon { width: 44px; height: 44px; border-radius: 12px; }
  .conf-card-icon svg { width: 20px; height: 20px; }
  .conf-card-label { font-size: 0.84rem; }
  .conf-card-sub { font-size: 0.60rem; }
}
@media (max-width: 400px) {
  .conformite-strip { grid-template-columns: repeat(2, 1fr); max-width: 340px; }
  .conf-card { padding: 16px 10px 14px; }
}

/* ===== TRUST BADGES — Under form steps ===== */
.form-trust-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(27, 54, 93, 0.40);
  background: rgba(27, 54, 93, 0.03);
  border: 1px solid rgba(27, 54, 93, 0.06);
  border-radius: 20px;
  padding: 5px 12px;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.trust-badge svg {
  color: var(--orange);
  opacity: 0.6;
  flex-shrink: 0;
}
.trust-badge:hover {
  color: var(--orange);
  border-color: rgba(242, 116, 5, 0.20);
  background: rgba(242, 116, 5, 0.04);
}
.trust-badge:hover svg {
  opacity: 1;
}
@media (max-width: 640px) {
  .form-trust-badges { gap: 8px; margin-bottom: 22px; }
  .trust-badge { font-size: 0.56rem; padding: 4px 9px; gap: 4px; }
  .trust-badge svg { width: 12px; height: 12px; }
}

/* ============================================================
   ESTIMATEUR DE RAMPE — compact & client-friendly
   ============================================================ */
@keyframes estInlineOpen {
  from { opacity: 0; transform: translateY(-12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.est-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15,30,61,0.06), 0 1px 4px rgba(15,30,61,0.04);
  scroll-margin-top: 100px;
}
.est-header {
  padding: 24px 28px 16px;
  text-align: center;
}
.est-badge {
  display: inline-block;
  background: rgba(242,116,5,0.12);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.est-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
  font-weight: 800;
  color: #1E293B;
  margin-bottom: 4px;
}
.est-subtitle {
  color: #94a3b8;
  font-size: 0.78rem;
  max-width: 420px;
  margin: 0 auto;
}

/* --- Body: condensed questions --- */
.est-body {
  padding: 0 28px 24px;
}
.est-q {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.est-q-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(242,116,5,0.12);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.est-q-label {
  color: #475569;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  flex-shrink: 0;
  min-width: 50px;
}

/* Type toggle (inline) */
.est-type-toggle {
  display: flex;
  gap: 6px;
}
.est-type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 8px 14px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  color: #64748b;
  font-weight: 600;
  font-size: 0.78rem;
}
.est-type .icon {
  color: #94a3b8;
  transition: color var(--transition);
}
.est-type.active {
  border-color: rgba(242,116,5,0.35);
  background: rgba(242,116,5,0.06);
  color: var(--orange);
}
.est-type.active .icon { color: var(--orange); }
.est-type:hover:not(.active) {
  border-color: #cbd5e1;
}

/* Height input */
.est-input-group {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.est-input-group:focus-within {
  border-color: var(--orange);
}
.est-input-group input {
  width: 90px;
  background: #fff;
  border: none;
  padding: 8px 12px;
  color: #1E293B;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  outline: none;
}
.est-input-group input::placeholder {
  color: #cbd5e1;
  font-weight: 400;
}
.est-hint {
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Unit toggle + slope buttons (reused) */
.calc-unit-toggle {
  display: flex;
  background: #f1f5f9;
  border-left: 1px solid #e2e8f0;
}
.calc-unit {
  padding: 10px 12px;
  background: none;
  border: none;
  color: #94a3b8;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.calc-unit.active {
  color: var(--orange);
  background: rgba(242,116,5,0.10);
}
.calc-slopes {
  display: flex;
  gap: 6px;
  flex: 1;
}
.calc-slope {
  flex: 1;
  padding: 10px 6px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  color: #475569;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
}
.calc-slope span {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  color: #94a3b8;
  margin-top: 1px;
}
.calc-slope.active {
  background: rgba(242,116,5,0.08);
  border-color: rgba(242,116,5,0.35);
  color: var(--orange);
}
.calc-slope.active span { color: rgba(242,116,5,0.6); }
.calc-slope:hover:not(.active) {
  border-color: #cbd5e1;
  color: #1E293B;
}

/* --- Progressive reveal panel --- */
.est-reveal {
  display: none;
  animation: estSlide 0.4s var(--ease-out);
}
.est-reveal.visible {
  display: block;
}
@keyframes estSlide {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Diagram */
.est-diagram {
  margin: 8px 0 14px;
  padding: 12px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
}
.est-diagram-svg {
  width: 100%;
  max-height: 160px;
}
.est-diagram-svg text { font-family: var(--font-display); }
.est-q--slope { margin-bottom: 16px; }

/* Calculate button */
.est-calc-btn {
  width: 100%;
  background: var(--orange);
  border: none;
  border-radius: var(--radius);
  color: var(--white);
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition);
}
.est-calc-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242,116,5,0.3);
}

/* --- Results panel --- */
.est-results {
  padding: 0 28px 24px;
  display: none;
}
.est-results.visible {
  display: block;
  animation: estSlide 0.5s var(--ease-out);
}
.est-result-hero {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(242,116,5,0.05);
  border: 1px solid rgba(242,116,5,0.15);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.est-result-main-label {
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.est-result-main-value {
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
}
.est-result-specs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.est-spec {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 12px;
  flex: 1;
  min-width: 70px;
}
.est-spec-label {
  color: #94a3b8;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.est-spec-value {
  color: #1E293B;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
}
.est-spec--badge {
  flex-direction: row;
  align-items: center;
  gap: 5px;
  background: rgba(242,116,5,0.05);
  border-color: rgba(242,116,5,0.15);
}
.est-spec--badge .icon { color: var(--orange); flex-shrink: 0; }
.est-spec--badge span {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
}

/* Soumission button */
.est-soumission-btn {
  display: block;
  width: 100%;
  background: transparent;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  color: var(--orange);
  padding: 11px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}
.est-soumission-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242,116,5,0.25);
}

/* --- Inline form --- */
.est-form {
  padding: 0 28px 28px;
  display: none;
}
.est-form.visible {
  display: block;
  animation: estSlide 0.4s var(--ease-out);
}
.est-form-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 14px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}
.est-form .form-group { margin-bottom: 10px; }
.est-form .form-group label {
  display: block;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.est-form .form-group label small { color: #94a3b8; }
.est-form .form-group input,
.est-form .form-group textarea,
.est-form .form-group select,
.est-form input,
.est-form textarea,
.est-form select {
  width: 100%;
  background: #fff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 6px;
  color: #1E293B !important;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 0.82rem;
  outline: none;
  transition: border-color var(--transition);
  box-shadow: none !important;
  transform: none !important;
}
.est-form .form-group input:focus,
.est-form .form-group textarea:focus,
.est-form .form-group select:focus,
.est-form input:focus,
.est-form textarea:focus,
.est-form select:focus {
  border-color: var(--orange) !important;
  background: #fff !important;
}
.est-form input::placeholder,
.est-form textarea::placeholder {
  color: #cbd5e1;
}
.est-form select option { background: #fff; color: #1E293B; }
.est-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.est-upload {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 6px;
  cursor: pointer;
  color: #64748b;
  font-size: 0.78rem;
  transition: border-color var(--transition);
  position: relative;
}
.est-upload:hover { border-color: var(--orange); }
.est-upload .icon { color: #94a3b8; }
.est-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.est-submit-btn {
  width: 100%;
  background: var(--orange);
  border: none;
  border-radius: var(--radius);
  color: var(--white);
  padding: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  margin-top: 6px;
  transition: all var(--transition);
}
.est-submit-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
.est-form-note {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.68rem;
  margin-top: 8px;
}
.est-form-note .icon { color: #cbd5e1; }

/* --- Structure: est-card within form context --- */
.form-step .est-card {
  margin: 0 -8px;
  border-radius: var(--radius-lg);
}
.est-header {
  padding: 20px 24px 12px;
}
.est-body {
  padding: 0 24px 20px;
}
.est-results {
  padding: 0 24px 20px;
}
.est-badge {
  font-size: 0.62rem;
  padding: 3px 10px;
}

/* Responsive estimateur — Tablet */
@media (max-width: 900px) {
  .form-step .est-card { margin: 0 -4px; }
  .est-header { padding: 18px 20px 10px; }
  .est-body { padding: 0 20px 18px; }
  .est-results { padding: 0 20px 18px; }
  .est-q-label { min-width: auto; }
  .calc-slopes { flex-wrap: wrap; }
  .calc-slope { min-width: calc(33% - 6px); }
}

/* Responsive estimateur — Mobile */
@media (max-width: 640px) {
  .est-card { border-radius: var(--radius); }
  .form-step .est-card { margin: 0; }
  .est-header { padding: 16px 16px 10px; }
  .est-body { padding: 0 16px 16px; }
  .est-results { padding: 0 16px 16px; }
  .est-form { padding-left: 16px; padding-right: 16px; }
  .est-q { flex-wrap: wrap; gap: 8px; }
  .est-q-label { font-size: 0.74rem; min-width: auto; }
  .est-type-toggle { width: 100%; }
  .est-type { flex: 1; justify-content: center; font-size: 0.72rem; padding: 7px 10px; }
  .est-calc-btn { width: 100%; }
  .est-result-hero { flex-direction: column; gap: 4px; padding: 14px 16px; }
  .est-result-specs { gap: 6px; }
  .est-spec { min-width: 65px; padding: 6px 10px; }
  .est-spec-label { font-size: 0.55rem; }
  .est-spec-value { font-size: 0.78rem; }
  .calc-slopes { flex-wrap: wrap; gap: 5px; }
  .calc-slope { flex: 1 1 calc(33% - 5px); min-width: 80px; padding: 8px 4px; font-size: 0.78rem; }
  .calc-slope span { font-size: 0.55rem; }
  .est-form .form-row { grid-template-columns: 1fr; }
  .est-diagram { padding: 8px; margin: 6px 0 12px; }
  .est-subtitle { font-size: 0.72rem; }
  .est-input-group input { width: 70px; padding: 7px 10px; font-size: 0.92rem; }
  .calc-unit { padding: 8px 10px; font-size: 0.72rem; }
  .est-hint { font-size: 0.65rem; }
  .est-soumission-btn { font-size: 0.82rem; padding: 10px 16px; }
}


/* ============================================================
   SUBVENTIONS — TABBED INTERFACE
   ============================================================ */
.subventions {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: linear-gradient(180deg, #0a1525 0%, #142640 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.subventions::before {
  content: '';
  position: absolute;
  top: -40%; left: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(242, 116, 5, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
/* Reflet interactif souris */
.subventions::after {
  content: '';
  position: absolute;
  left: var(--rx, 50%);
  top: var(--ry, 50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(220, 235, 250, 0.07) 25%,
    rgba(200, 222, 242, 0.03) 45%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease, left 0.12s ease-out, top 0.12s ease-out;
}
.subventions:hover::after {
  opacity: 1;
}
.subventions .container { position: relative; z-index: 1; }

/* --- Tabs --- */
.subv-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.subv-tab {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-display);
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  white-space: nowrap;
}
.subv-tab:hover {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.80);
}
.subv-tab[aria-selected="true"] {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  box-shadow: 0 2px 12px rgba(242, 116, 5, 0.35);
}
.subv-tab:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* --- Grid --- */
.subv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.subv-grid--all {
  grid-template-columns: repeat(3, 1fr);
}
/* Filtered-out cards */
.subv-card.subv-dimmed {
  opacity: 0.22;
  transform: scale(0.97);
  pointer-events: none;
  filter: grayscale(0.4);
  transition: all 0.4s var(--ease-out);
}
/* --- Cards --- */
.subv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.4s var(--ease-out);
  position: relative;
}
.subv-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.subv-card--featured {
  border-color: rgba(242, 116, 5, 0.35);
  background: rgba(242, 116, 5, 0.06);
}
.subv-card--featured:hover {
  background: rgba(242, 116, 5, 0.10);
  border-color: rgba(242, 116, 5, 0.5);
}
.subv-card--large {
  grid-column: span 2;
}

/* Card content */
.subv-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.subv-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0;
}
.subv-card-desc {
  font-size: 0.76rem !important;
  color: rgba(255, 255, 255, 0.38) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px !important;
}
.subv-card > p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 14px;
  font-size: 0.90rem;
  line-height: 1.65;
}
/* Description paragraph hidden by default, revealed on hover */
.subv-highlight + p {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), opacity 0.35s var(--ease-out), margin-bottom 0.35s var(--ease-out);
}
.subv-card:hover .subv-highlight + p {
  max-height: 8em;
  opacity: 1;
  margin-bottom: 14px;
}
.subv-card ul {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.subv-card li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

/* Amount */
.subvention-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

/* --- Badges type --- */
.subv-badge-type {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.subv-badge-type--sub {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.85);
}
.subv-badge-type--credit {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}
.subv-badge-type--deduction {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
}
.subv-badge-type--fonds {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

/* --- Badges statut --- */
.subv-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.subv-badge-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.subv-badge-status--active {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.80);
}
.subv-badge-status--active::before {
  background: rgba(255, 255, 255, 0.65);
}
.subv-badge-status--permanent {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.70);
}
.subv-badge-status--permanent::before {
  background: rgba(255, 255, 255, 0.50);
}
.subv-badge-status--confirm {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.50);
}
.subv-badge-status--confirm::before {
  background: rgba(255, 255, 255, 0.35);
}

/* --- Highlight (key benefit) --- */
.subv-highlight {
  display: inline-block;
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid rgba(255, 255, 255, 0.35);
  padding: 8px 14px;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 16px;
  width: 100%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* --- Notice (suspended/warning/info) --- */
.subv-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  line-height: 1.55;
  margin-top: 24px;
}
.subv-notice--warning {
  background: rgba(242, 116, 5, 0.06);
  border: 1px solid rgba(242, 116, 5, 0.18);
  color: rgba(255, 255, 255, 0.60);
}
.subv-notice--info {
  background: rgba(100, 180, 255, 0.06);
  border: 1px solid rgba(100, 180, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
}
.subv-notice-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 1px;
}

/* --- CTA bottom --- */
.subv-cta-bottom {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.subv-cta-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.90rem;
  margin-bottom: 18px;
}

/* --- Disclaimer --- */
.subventions-note {
  text-align: center;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.30);
  font-size: 0.80rem;
}

/* ============================================================
   À PROPOS / PRÉSIDENT
   ============================================================ */
.apropos {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--white);
  position: relative;
}
.apropos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.apropos-content h2 {
  color: var(--navy);
  margin: 8px 0 24px;
}
.apropos-text {
  font-size: 1.03rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.apropos-text--pro {
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  font-size: 0.95rem;
}
.apropos-values {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-light);
  border-radius: var(--radius-xs);
  margin-top: 2px;
}
.value-icon .icon {
  width: 22px;
  height: 22px;
  color: var(--orange);
}
.value-item strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.value-item p { margin: 0; font-size: 0.90rem; }

.president-card {
  background: var(--navy);
  border-radius: var(--radius-2xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.president-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(242, 116, 5, 0.10) 0%, transparent 65%);
}
.president-card::after {
  content: '\201C';
  position: absolute;
  bottom: -30px; right: 24px;
  font-family: Georgia, serif;
  font-size: 16rem;
  color: rgba(242, 116, 5, 0.04);
  line-height: 1;
  pointer-events: none;
}

.president-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(242, 116, 5, 0.25);
  border: 3px solid var(--orange);
}
.president-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.president-initials {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
}

.president-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.42;
  margin-bottom: 20px;
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  font-style: normal;
}
.president-info {
  margin-bottom: 24px;
}
.president-info strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
}
.president-info span {
  color: var(--orange);
  font-size: 0.83rem;
  font-weight: 500;
}
.president-message p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.72;
  margin-bottom: 10px;
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.temoignages {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--gray-light);
  position: relative;
}
.temoignages::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.temoignage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: all 0.4s var(--ease-out);
  border: 1px solid rgba(27, 54, 93, 0.04);
}
.temoignage-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(242, 116, 5, 0.06);
}
.temoignage-card--featured {
  background: var(--navy);
  border: 1px solid rgba(242, 116, 5, 0.25);
}
.temoignage-card--featured:hover {
  border-color: rgba(242, 116, 5, 0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.temoignage-card--featured .stars { color: var(--orange); }
.temoignage-card--featured > p { color: rgba(255, 255, 255, 0.92) !important; }
.temoignage-card--featured .temoignage-author strong { color: var(--white); }
.temoignage-card--featured .temoignage-author span { color: rgba(255, 255, 255, 0.42); }

.stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.temoignage-card > p {
  font-style: italic;
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 20px;
  color: var(--text-secondary);
}
.temoignage-author strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
}
.temoignage-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   PARTENAIRES / ERGO
   ============================================================ */
.partenaires {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--white);
  position: relative;
}
.partenaires::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* --- Partenaires Trust Band --- */
.partenaires-trust {
  margin-bottom: 48px;
}
.partenaires-trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 18px 28px;
}
.partenaires-trust-items span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--navy);
  padding: 6px 16px;
  white-space: nowrap;
}
.partenaires-trust-items span:not(:last-child) {
  border-right: 1px solid var(--border);
  padding-right: 24px;
}
.partenaires-trust-items .icon {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

.partenaires-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.partenaires-content h2 {
  color: var(--navy);
  margin: 8px 0 20px;
}
.partenaires-content > p {
  font-size: 1.03rem;
  margin-bottom: 32px;
  line-height: 1.78;
}
.partenaires-avantages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.partenaires-avantages li {
  padding: 16px 20px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--orange);
  font-size: 0.90rem;
  color: var(--text-main);
  line-height: 1.55;
  transition: all var(--transition);
}
.partenaires-avantages li:hover {
  background: var(--orange-light);
  transform: translateX(6px);
  border-left-color: var(--orange-hover);
  box-shadow: -3px 0 12px rgba(242, 116, 5, 0.08);
}
.partenaires-avantages li strong {
  color: var(--navy);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

/* --- SEAO Block --- */
.partenaires-seao {
  background: var(--gray-light);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  margin-top: 28px;
}
.partenaires-seao h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 10px;
}
.partenaires-seao h4 .icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
}
.partenaires-seao > p {
  font-size: 0.90rem;
  margin-bottom: 14px;
}
.seao-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seao-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.seao-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.75;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 8px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   FORMULAIRE PRINCIPAL MULTI-ÉTAPES
   ============================================================ */
.contact {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--gray-light);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* --- Form intro & sections --- */
.form-step-intro {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.5;
}
.est-section {
  margin-bottom: 24px;
  scroll-margin-top: 100px;
}
.est-section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.est-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* --- White pill buttons --- */
.est-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 6px 11px;
  background: white;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: inherit;
}
.est-pill svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
.est-pill span {
  font-size: 0.74rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
.est-pill:hover {
  border-color: var(--orange);
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(242,116,5,0.10);
}
.est-pill:hover svg {
  transform: scale(1.1);
  color: var(--orange);
}
.est-pill.active {
  border-color: var(--orange);
  background: rgba(242,116,5,0.04);
  color: var(--orange);
  box-shadow: 0 4px 24px rgba(242,116,5,0.12);
}
.est-pill.active svg { color: var(--orange); }

/* Product pills grid — 5 sur une ligne */
.est-product-pills {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

/* Usage pills grid (2 columns) */
.est-use-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
/* Variante 3 colonnes (Q3 Configuration) */
.est-use-pills--3 {
  grid-template-columns: repeat(3, 1fr);
}
.est-pill--use {
  flex-direction: row;
  gap: 10px;
  padding: 16px 20px;
}
.est-pill--use svg {
  width: 22px;
  height: 22px;
}
.est-pill--use span {
  font-size: 0.84rem;
}

/* --- Responsive pills — Tablet --- */
@media (max-width: 900px) {
  .est-product-pills { gap: 8px; }
  .est-pill { padding: 14px 8px 12px; }
}

/* --- Responsive pills — Mobile --- */
@media (max-width: 480px) {
  .est-product-pills { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .est-pill { padding: 11px 6px 9px; gap: 5px; }
  .est-pill svg { width: 20px; height: 20px; }
  .est-pill span { font-size: 0.70rem; }
  .est-use-pills { grid-template-columns: 1fr 1fr; gap: 8px; }
  .est-pill--use { padding: 12px 14px; gap: 8px; }
  .est-pill--use svg { width: 18px; height: 18px; }
  .est-pill--use span { font-size: 0.78rem; }
  .est-section { margin-bottom: 18px; }
  .est-section-label { font-size: 0.84rem; margin-bottom: 10px; gap: 8px; }
  .est-section-num { width: 24px; height: 24px; font-size: 0.70rem; }
}

/* --- Progressive step reveal --- */
.est-step-hidden { display: none; }
.est-step-visible { animation: estStepReveal 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes estStepReveal {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Pill above contact form --- */
.form-entry-badge {
  text-align: center;
  margin: 28px 0 20px;
}
.form-entry-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 100px;
  box-shadow: 0 4px 18px rgba(242, 116, 5, 0.35);
}
.form-entry-pill svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.contact-wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 52px 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(27, 54, 93, 0.04);
  animation: estInlineOpen 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin: 0 0 6px;
}
.form-title-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0 0 28px;
  line-height: 1.5;
}

/* Progress bar steps — bottom of form */

/* Form steps */
.form-step { display: none; }
.form-step.active {
  display: block;
  animation: stepFadeIn 0.4s var(--ease-out);
}
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}
.form-step h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 24px;
}

/* Fields */
.form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  transition: all 0.25s var(--ease-smooth);
  background: var(--gray-warm);
  color: var(--text-main);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 4px rgba(242, 116, 5, 0.08), 0 2px 12px rgba(242, 116, 5, 0.06);
  transform: translateY(-1px);
}
.form-group input.error { border-color: #EF4444; }

.char-count {
  display: block;
  text-align: right;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 5px;
}
.form-help {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.form-label-section {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  margin-top: 8px;
}

/* Upload */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--gray-warm);
}
.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--orange);
  background: rgba(242, 116, 5, 0.03);
}
.upload-icon {
  margin-bottom: 12px;
}
.upload-icon .icon {
  width: 38px;
  height: 38px;
  color: var(--text-muted);
}
.upload-zone > p { font-size: 0.88rem; margin-bottom: 4px; color: var(--text-secondary); }
.upload-link { color: var(--orange); font-weight: 600; cursor: pointer; }
.upload-hint {
  font-size: 0.74rem !important;
  color: var(--text-muted) !important;
}

.upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.preview-item {
  position: relative;
  width: 78px; height: 78px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border-subtle);
  flex-shrink: 0;
  transition: border-color var(--transition-fast);
}
.preview-item:hover { border-color: var(--orange); }
.preview-item img { width: 100%; height: 100%; object-fit: cover; }
.preview-remove {
  position: absolute;
  top: 4px; right: 4px;
  background: rgba(0,0,0,0.55);
  color: white;
  border-radius: 50%;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
}
.preview-remove:hover { background: #EF4444; transform: scale(1.1); }

.form-nav {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  align-items: center;
}
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 17px;
  font-size: 0.98rem;
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

/* Form card (ergo) */
.form-card {
  background: linear-gradient(180deg, #0a1525 0%, #142640 50%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.form-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
/* Reflet interactif souris */
.form-card::after {
  content: '';
  position: absolute;
  left: var(--rx, 50%);
  top: var(--ry, 50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(220, 235, 250, 0.05) 25%,
    rgba(200, 222, 242, 0.02) 45%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease, left 0.12s ease-out, top 0.12s ease-out;
}
.form-card:hover::after { opacity: 1; }
.form-card > * { position: relative; z-index: 1; }
.form-card h3 {
  color: var(--white);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.83rem;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.55);
}
/* Labels et champs sur fond sombre */
.form-card .form-group label {
  color: rgba(255, 255, 255, 0.80);
}
.form-card .form-group input,
.form-card .form-group select,
.form-card .form-group textarea {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.form-card .form-group input::placeholder,
.form-card .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.30);
}
.form-card .form-group input:focus,
.form-card .form-group select:focus,
.form-card .form-group textarea:focus {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 116, 5, 0.12);
  color: var(--white);
}
.form-card .form-group select option {
  background: var(--navy-dark);
  color: var(--white);
}
.form-card .form-note {
  color: rgba(255, 255, 255, 0.45);
}

/* Success */
.form-success {
  text-align: center;
  padding: 52px 0 28px;
}
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 24px;
  box-shadow: 0 8px 28px rgba(16,185,129,0.28);
}
.form-success h3 {
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p { font-size: 0.95rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, #0a1525 0%, #0e1a2c 50%, var(--navy-dark) 100%);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #FF9A3C, var(--orange));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.6fr;
  gap: 52px;
  margin-bottom: 52px;
}

.footer-brand img {
  margin-bottom: 12px;
  filter: brightness(1.15);
}
.footer-slogan {
  color: var(--orange) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem !important;
  margin-bottom: 8px !important;
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.38) !important;
  font-size: 0.84rem !important;
  line-height: 1.68;
  max-width: 270px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-nav ul,
.footer-produits ul,
.footer-pro ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a,
.footer-pro a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.48);
  transition: all var(--transition-fast);
}
.footer-nav a:hover,
.footer-pro a:hover { color: var(--orange); transform: translateX(3px); display: inline-block; }
.footer-produits li {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer-contact p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.50);
  transition: color var(--transition-fast);
}
.footer-contact a:hover { color: var(--orange); }
.footer-hours {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-hours p {
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.30);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.24);
}

/* ============================================================
   BOTTOM BAR — APPELER + VOIR LES PRODUITS
   ============================================================ */
.bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  gap: 0;
  z-index: 998;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
}

/* Catalogue de produits — right 50% */
.bottom-bar-call {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.80rem;
  text-decoration: none;
  text-align: center;
  line-height: 1.25;
  transition: background 0.3s;
}
.bottom-bar-call:hover {
  background: var(--orange-hover);
}

/* Soumission gratuite — left 50% */
.bottom-bar-produits {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #06111f 0%, #0f2240 35%, #1B365D 70%, #1e3f72 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(11, 28, 60, 0.45), inset 0 1px 0 rgba(255,255,255,0.07);
  animation: btnLive 5s ease-in-out infinite;
}

/* Pulsation glow + micro-lift cyclique */
@keyframes btnLive {
  0%, 60%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 14px rgba(27, 54, 93, 0.30);
  }
  70% {
    transform: scale(1.02) translateY(-1px);
    box-shadow: 0 6px 22px rgba(27, 54, 93, 0.50);
  }
  80% {
    transform: scale(1.045) translateY(-2px);
    box-shadow: 0 10px 32px rgba(27, 54, 93, 0.65), 0 0 50px rgba(27, 54, 93, 0.18);
  }
  90% {
    transform: scale(1.02) translateY(-1px);
    box-shadow: 0 6px 22px rgba(27, 54, 93, 0.50);
  }
}

/* Reflet aluminium — diagonale périodique */
.bottom-bar-produits::after {
  content: '';
  position: absolute;
  top: -15%;
  left: -70%;
  width: 42%;
  height: 130%;
  background: linear-gradient(
    108deg,
    transparent 18%,
    rgba(255, 255, 255, 0.04) 36%,
    rgba(255, 255, 255, 0.24) 50%,
    rgba(255, 255, 255, 0.04) 64%,
    transparent 82%
  );
  transform: skewX(-12deg);
  animation: aluminiumShine 5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes aluminiumShine {
  0%, 100% { left: -70%; }
  28% { left: 125%; }
}

/* Color sweep on hover */
.bottom-bar-produits::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.bottom-bar-produits:hover::before {
  left: 100%;
}

.bottom-bar-produits:hover {
  animation: none;
  background: linear-gradient(135deg, #0c1e38 0%, #162e58 40%, #1e4080 100%);
  padding-left: 24px;
  padding-right: 32px;
  box-shadow: 0 6px 28px rgba(11, 28, 60, 0.60), inset 0 1px 0 rgba(255,255,255,0.10);
}
.bottom-bar-produits:hover::after {
  animation-play-state: paused;
  opacity: 0;
  transition: opacity 0.2s;
}

/* Text */
.bbp-text {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* Arrow — hidden at rest, slides in on hover */
.bbp-arrow {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}
.bottom-bar-produits:hover .bbp-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   SCROLL NOTIFICATION — FINANCIAL AID BANNER
   ============================================================ */
.scroll-notif {
  position: fixed;
  bottom: 72px;
  right: 28px;
  left: auto;
  transform: translateY(16px) scale(0.97);
  z-index: 995;
  width: 340px;
  max-width: calc(100vw - 40px);
  /* Dark gradient — modern, readable */
  background: linear-gradient(135deg, rgba(12, 28, 52, 0.92) 0%, rgba(20, 42, 78, 0.88) 50%, rgba(14, 32, 60, 0.92) 100%);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.scroll-notif.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Top accent — gradient bar */
.scroll-notif-accent {
  height: 3px;
  background: linear-gradient(90deg, rgba(242, 116, 5, 0.15), rgba(242, 116, 5, 0.70), rgba(255, 180, 60, 0.50), rgba(242, 116, 5, 0.15));
}

.scroll-notif-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: rgba(255, 255, 255, 0.30);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
  z-index: 2;
}
.scroll-notif-close:hover {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.70);
}

.scroll-notif-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px 14px;
}

.scroll-notif-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 116, 5, 0.15);
  border: 1px solid rgba(242, 116, 5, 0.20);
  border-radius: 10px;
}
.scroll-notif-icon .icon {
  color: var(--orange);
  width: 20px;
  height: 20px;
}

/* Headline */
.scroll-notif-headline {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.3;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.scroll-notif-body p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 8px;
}
.scroll-notif-body p strong {
  color: rgba(255, 255, 255, 0.80);
  font-weight: 600;
}

/* Profile tags — who it's for */
.scroll-notif-profiles {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.scroll-notif-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}
.scroll-notif-tag .icon {
  width: 14px;
  height: 14px;
  color: var(--orange);
}

/* Actions */
.scroll-notif-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
/* CTA — compact pill */
.scroll-notif-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(242, 116, 5, 0.22);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(242, 116, 5, 0.18);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.74rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.scroll-notif-cta:hover {
  background: rgba(242, 116, 5, 0.40);
  color: var(--white);
}

/* --- Wow line: prix + message sur une ligne --- */
.notif-wow-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin: 6px 0 10px;
}

.notif-price-full {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.6s var(--ease-out);
  letter-spacing: -0.02em;
}
.notif-price-full.faded {
  opacity: 0.35;
  font-size: 0.82rem;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.30);
}

.notif-price-arrow {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.4s var(--ease-out) 0.2s;
}
.notif-price-arrow.visible {
  opacity: 1;
  transform: translateX(0);
}

.notif-price-split {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--orange);
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.5s var(--ease-out) 0.35s;
}
.notif-price-split.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== INSTALLATION 4 SAISONS ===== */
.quatre-saisons {
  background: #0a1525 url('../images/produits/rampe-hiver.jpg') center / cover no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  padding: 140px 0 120px;
}
/* Dark overlay — texte lisible sur la photo */
.quatre-saisons::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 28, 0.82);
  pointer-events: none;
  z-index: 0;
}
/* Mouse-follow glow décoratif */
.quatre-saisons::after {
  content: '';
  position: absolute;
  left: var(--rx, 50%);
  top: var(--ry, 50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.11) 0%,
    rgba(220, 235, 250, 0.07) 25%,
    rgba(200, 222, 242, 0.03) 45%,
    transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease, left 0.12s ease-out, top 0.12s ease-out;
}
.quatre-saisons:hover::after { opacity: 1; }
/* Container au-dessus de l'overlay */
.quatre-saisons .container { position: relative; z-index: 1; }
/* Fallback tablette/mobile : iOS ne supporte pas background-attachment: fixed */
@media (max-width: 768px) {
  .quatre-saisons { background-attachment: scroll; }
}
/* Header */
.qs-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.qs-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 16px;
  line-height: 1.12;
}
.qs-highlight { color: var(--orange); }
.qs-header p {
  color: rgba(255, 255, 255, 0.60);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
  font-size: 1rem;
}

/* Carousel témoignages clients */
.qs-reviews {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 52px auto 60px;
  text-align: center;
}
.qs-reviews-track {
  min-height: 110px;
}
.qs-review {
  display: none;
}
.qs-review.active {
  display: block;
  animation: qsReviewIn 0.45s var(--ease-out) both;
}
@keyframes qsReviewIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.qs-review p {
  font-size: clamp(0.97rem, 1.7vw, 1.13rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 14px;
  font-weight: 400;
}
.qs-review cite {
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.qs-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
}
.qs-reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.25s;
}
.qs-reviews-dot.active {
  background: var(--orange);
  transform: scale(1.35);
}
.qs-reviews-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.50);
}

/* Grid 4 cards */
.qs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}

/* Stagger via --delay */
.qs-card[data-animate] {
  transition-delay: var(--delay, 0s);
}

.qs-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 36px 24px 32px;
  text-align: center;
  transition:
    transform 0.4s var(--ease-out),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}
.qs-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(242, 116, 5, 0.32);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(242, 116, 5, 0.12);
}
.qs-card-icon {
  width: 60px; height: 60px;
  background: rgba(242, 116, 5, 0.10);
  border: 1px solid rgba(242, 116, 5, 0.20);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--orange);
  transition: background 0.3s, transform 0.35s var(--ease-out);
}
.qs-card:hover .qs-card-icon {
  background: rgba(242, 116, 5, 0.20);
  transform: scale(1.10) rotate(-3deg);
}
.qs-card-icon svg { width: 26px; height: 26px; }
.qs-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.3;
}
.qs-card p {
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

/* Trust bar */
.qs-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 56px;
  position: relative;
  z-index: 1;
  background: rgba(10, 18, 28, 0.50);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 4px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.qs-trust[data-animate] { transition-delay: 0.4s; }
.qs-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.80);
  white-space: nowrap;
}
.qs-trust-check {
  width: 20px; height: 20px;
  background: rgba(242, 116, 5, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.qs-trust-check svg { width: 10px; height: 10px; }
.qs-trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .qs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .quatre-saisons { padding: 100px 0 80px; }
  .qs-reviews { margin: 40px auto 48px; }
}
@media (max-width: 600px) {
  .qs-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .quatre-saisons { padding: 80px 0 64px; }
  .qs-trust { border-radius: 20px; flex-direction: column; gap: 0; max-width: 100%; }
  .qs-trust-sep { width: 80%; height: 1px; }
  .qs-reviews { margin: 32px auto 40px; }
  .qs-card { padding: 26px 18px 22px; }
}
/* Très petit mobile : 1 colonne pour lisibilité */
@media (max-width: 440px) {
  .qs-grid { grid-template-columns: 1fr; gap: 10px; }
  .qs-card { padding: 24px 20px 20px; text-align: left; }
  .qs-card-icon { margin: 0 0 16px; }
}

/* ===== CONFORMITÉ — conf-card en liens ===== */
a.conf-card {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
a.conf-card:hover .conf-card-sub {
  color: rgba(242, 116, 5, 0.8);
}

.notif-slider-msg {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.50);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.5s var(--ease-out) 0.6s;
}
.notif-slider-msg.visible {
  opacity: 1;
  transform: translateY(0);
}
.notif-slider-msg strong {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ============================================================
   SECTION TRANSITION DIVIDERS
   ============================================================ */
.services + .produits::before,
.temoignages + .partenaires::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-links > li > a {
    padding: 6px 10px;
    font-size: 0.84rem;
  }
  .nav-cta .btn-orange {
    padding: 8px 14px;
    font-size: 0.80rem;
  }
  .lang-switcher {
    margin-left: 4px;
  }
}

@media (max-width: 1100px) {
  .cat-accordion { height: 420px; }
  .produits-bento { grid-template-columns: repeat(3, 1fr); }
  .subv-grid, .subv-grid--all { grid-template-columns: repeat(2, 1fr); }
  .subv-card--large { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .apropos-grid { grid-template-columns: 1fr; gap: 48px; }
  .partenaires-grid { grid-template-columns: 1fr; gap: 48px; }
  .temoignages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .client-types { grid-template-columns: 1fr 1fr; }
  .cat-accordion { height: 380px; }
  .cat-panel-content h3 { font-size: 1.15rem; }
  .cat-panel-content p { font-size: 0.82rem; }
  .cat-panel-content { padding: 28px 24px; }
  .produits-bento { grid-template-columns: repeat(2, 1fr); }
  .subv-grid, .subv-grid--all { grid-template-columns: 1fr 1fr; }
  .subv-card--large { grid-column: span 1; }
  .temoignages-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { padding: 38px 28px; }
  .partenaires-trust-items span:not(:last-child) { border-right: none; padding-right: 16px; }
}

@media (max-width: 640px) {
  .client-types { grid-template-columns: 1fr; }
  /* Accordion stacks vertically on mobile */
  .cat-accordion {
    flex-direction: column;
    height: auto;
    cursor: auto;
  }
  .cat-panel {
    flex: none !important;
    height: 120px;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .cat-panel--active,
  .cat-panel.touch-active {
    height: 280px;
  }
  .cat-panel-label { opacity: 0; }
  .cat-panel-label span { writing-mode: horizontal-tb; }
  .cat-accordion:hover .cat-panel:not(:hover) .cat-panel-label { opacity: 1; }
  .cat-panel-content { padding: 20px 18px; }
  .cat-panel-content h3 { font-size: 1.05rem; }
  .cat-panel-content p { font-size: 0.80rem; margin-bottom: 12px; }
  .mag-cursor { display: none; }
  .scroll-notif {
    bottom: 64px;
    right: 12px;
    width: calc(100vw - 24px);
    max-width: 340px;
  }
  .produits-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .produit-card--large { grid-column: span 2; grid-row: span 1; }
  .produit-card--wide { grid-column: span 2; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .subv-grid,
  .subv-grid--all { grid-template-columns: 1fr; }
  .subv-tabs { gap: 6px; }
  .subv-tab { padding: 8px 16px; font-size: 0.75rem; }
  .trust-divider { display: none; }
  .trust-item { padding: 10px 16px; font-size: 0.80rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .partenaires-trust-items { flex-direction: column; gap: 4px; padding: 14px 20px; }
  .partenaires-trust-items span { padding: 4px 0; }
  .partenaires-trust-items span:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border-subtle); padding-right: 0; padding-bottom: 8px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-wrapper { padding: 24px 16px; border-radius: var(--radius-lg); }
  .form-title { font-size: 1.1rem; }
  .form-title-sub { font-size: 0.80rem; margin-bottom: 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  body { padding-bottom: 56px; }
  /* iOS auto-zoom prevention — inputs need 16px minimum */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }
  .scroll-notif {
    bottom: 62px;
    right: 8px;
    width: calc(100% - 16px);
    border-radius: var(--radius-lg);
  }
  .scroll-notif-inner {
    padding: 22px 20px 18px;
    gap: 14px;
  }
  .scroll-notif-icon {
    width: 42px;
    height: 42px;
  }
  .scroll-notif-icon .icon {
    width: 22px;
    height: 22px;
  }
  .scroll-notif-headline {
    font-size: 1rem;
  }
  .scroll-notif-headline span {
    font-size: 1.1rem;
  }
  .scroll-notif-profiles {
    gap: 6px;
  }
  .scroll-notif-tag {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
  .scroll-notif-actions {
    gap: 10px;
  }
  .scroll-notif-cta {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .hero-content .hero-badge,
  .hero-content .hero-title,
  .hero-content .hero-subtitle,
  .hero-content .hero-subtitle-pro,
  .hero-content .hero-actions,
  .hero-content .hero-note {
    animation-duration: 0.6s;
    filter: none;
  }
  [data-animate] {
    filter: none;
    transform: translateY(24px);
  }
}

/* ===== REDUCED MOTION ===== */
@media (max-width: 420px) {
  .produits-bento { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .produit-card--large { grid-column: span 1; }
  .produit-card--wide { grid-column: span 1; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .hero-content .hero-badge,
  .hero-content .hero-title,
  .hero-content .hero-subtitle,
  .hero-content .hero-subtitle-pro,
  .hero-content .hero-actions {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ============================================================
   BANNIÈRE COOKIES — Loi 25 Québec
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 72px;
  left: 16px;
  right: 16px;
  z-index: 9990;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(10, 18, 28, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--orange);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(242,116,5,0.06);
  animation: cookieBannerIn 0.35s cubic-bezier(.22,.68,0,1.2) both;
}
@keyframes cookieBannerIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 220px;
  color: rgba(255,255,255,0.78);
  font-size: 0.875rem;
  line-height: 1.55;
}
.cookie-banner-text svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}
.cookie-banner-text p { margin: 0; }
.cookie-banner-text a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.cookie-banner-text a:hover { color: #ff8c1a; }
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.cookie-btn--refuse {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65);
}
.cookie-btn--refuse:hover {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
}
.cookie-btn--accept {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: var(--white);
}
.cookie-btn--accept:hover {
  background: #ff8c1a;
  border-color: #ff8c1a;
}
@media (max-width: 600px) {
  .cookie-banner {
    bottom: 66px;
    left: 8px;
    right: 8px;
    padding: 14px 14px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cookie-banner-actions {
    justify-content: flex-end;
  }
}

/* ============================================================
   SPECS POPOVER — Badges produit Résidentiel / Commercial
   ============================================================ */
.produit-badge[data-specs] {
  cursor: pointer;
  position: relative;
  user-select: none;
}
.produit-badge[data-specs]::after {
  content: ' ⓘ';
  font-size: 0.7em;
  opacity: 0.7;
  font-style: normal;
}
.badge-specs-popover {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  z-index: 300;
  background: rgba(8, 14, 22, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.13);
  border-top: 2px solid var(--orange);
  border-radius: 12px;
  padding: 14px 16px;
  min-width: 230px;
  max-width: 268px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  pointer-events: none;
  animation: specsPopIn 0.2s cubic-bezier(.22,.68,0,1.15) both;
}
@keyframes specsPopIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.badge-specs-popover::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 18px;
  width: 12px;
  height: 12px;
  background: rgba(8, 14, 22, 0.98);
  border-right: 1px solid rgba(255,255,255,0.13);
  border-bottom: 1px solid rgba(255,255,255,0.13);
  transform: rotate(45deg);
}
.badge-specs-popover-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 11px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.badge-specs-popover-title span { flex: 1; }
.badge-specs-popover-title small {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  font-weight: 500;
  text-transform: none;
}
.badge-specs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.badge-specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}
.badge-specs-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 6px;
}
.badge-specs-list strong {
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  font-size: 0.78rem;
}
/* Flèche inversée quand popover est en dessous du badge */
.badge-specs-popover--below::after {
  bottom: auto;
  top: -7px;
  transform: rotate(225deg);
}

/* ============================================================
   LANG SWITCHER
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 8px;
  background: rgba(27, 54, 93, 0.07);
  border: 1px solid rgba(27, 54, 93, 0.12);
  border-radius: 6px;
  padding: 3px 5px;
}
.lang-switcher-sep {
  color: rgba(27, 54, 93, 0.25);
  font-size: .75rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  padding: 0 1px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 2px 5px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 3px;
  transition: color .2s, background .2s;
  font-family: inherit;
  line-height: 1;
}
.lang-btn:hover {
  color: var(--navy);
  background: rgba(27, 54, 93, 0.08);
}
.lang-btn--active {
  color: var(--navy);
  background: rgba(27, 54, 93, 0.12);
}

/* ============================================================
   RÉALISATIONS COMMERCIALES
   ============================================================ */
.realisations {
  background: var(--dark);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.realisations::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
}
.realisations .section-header {
  margin-bottom: 3rem;
}
.realisations .section-header h2 {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #fff;
  color: #fff;
  animation: none;
}
.realisations .section-header h2::after {
  background: var(--orange);
}
.realisations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.realisation-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  min-height: 220px;
}
.realisation-card--featured {
  grid-row: span 2;
  min-height: 460px;
}
.realisation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.realisation-card:hover img {
  transform: scale(1.04);
}
.realisation-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 20px;
  background: linear-gradient(to top, rgba(15,25,35,0.92) 0%, rgba(15,25,35,0.0) 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.realisation-type {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.realisation-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.realisation-location {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}
.realisations-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.real-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.real-badge::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.realisations-cta {
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .realisations-grid {
    grid-template-columns: 1fr;
  }
  .realisation-card--featured {
    grid-row: span 1;
    min-height: 260px;
  }
  .realisation-card {
    min-height: 200px;
  }
  .realisations-badges {
    flex-direction: column;
    align-items: stretch;
  }
  .real-badge {
    justify-content: center;
  }
}

/* Safety: ensure [hidden] always hides regardless of display rules */
[hidden] { display: none !important; }

/* ============================================================
   SOLUTIONS — Onglets Résidentiel / Commercial
   ============================================================ */
.solutions {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: linear-gradient(180deg, #0a1525 0%, #142640 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.solutions::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(242,116,5,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.solutions .container { position: relative; z-index: 2; }
.solutions .section-header h2 {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #fff;
  color: #fff;
  animation: none;
}
.solutions .section-header h2::after {
  background: var(--orange);
}

/* Onglets pill-toggle */
.solutions-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 3rem;
}
.solutions-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.7);
}
.solutions-tab:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.solutions-tab--active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(242,116,5,0.35);
}
.solutions-tab--active:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
}
.solutions-tab:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.solutions-tab-icon { flex-shrink: 0; }

/* Grille produits 3 colonnes */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  grid-auto-flow: dense;
  margin-bottom: 2.5rem;
}
.solutions-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* Colonnes côte à côte Résidentiel / Commercial */
.solutions-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.solutions-col .solutions-grid {
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 180px;
}
@media (max-width: 960px) {
  .solutions-columns {
    grid-template-columns: 1fr;
  }
}

/* Séparateurs de section Résidentiel / Commercial */
.solutions-section-div {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 2rem;
}
.solutions-section-div--com {
  margin-top: 0;
}
.solutions-section-div-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.solutions-section-div-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.solutions-section-div-label--res {
  background: rgba(242,116,5,0.15);
  color: var(--orange);
  border: 1px solid rgba(242,116,5,0.3);
}
.solutions-section-div-label--com {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.18);
}

/* Séparateur "Projets livrés" */
.solutions-real-sep {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 2.5rem 0 2rem;
}
.solutions-real-sep-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.solutions-real-sep-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .solutions-tabs {
    flex-direction: column;
    align-items: center;
  }
  .solutions-tab {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .solutions-card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 480px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }
  .solutions-card--featured {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ============================================================
   SOLUTIONS — Balayage reveal + Parallaxe images
   ============================================================ */
@keyframes sol-reveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0%   0 0); }
}

/* État initial : cartes masquées avant le scroll */
.solutions-col .solutions-grid .produit-card {
  clip-path: inset(0 100% 0 0);
}
/* Déclenchement : la grille entre dans le viewport (is-visible via IntersectionObserver) */
.solutions-col .solutions-grid.is-visible .produit-card {
  animation: sol-reveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.solutions-col .solutions-grid.is-visible .produit-card:nth-child(1) { animation-delay: 0s; }
.solutions-col .solutions-grid.is-visible .produit-card:nth-child(2) { animation-delay: 0.15s; }
.solutions-col .solutions-grid.is-visible .produit-card:nth-child(3) { animation-delay: 0.30s; }

/* Images : zoom pour absorber le déplacement parallaxe */
.solutions-col .produit-card img {
  transform: scale(1.1) translateY(0px);
  will-change: transform;
  transition: none;
}

/* Respect des préférences d'accessibilité */
@media (prefers-reduced-motion: reduce) {
  .solutions-col .solutions-grid .produit-card { clip-path: none; }
  .solutions-col .solutions-grid.is-visible .produit-card { animation: none; }
  .solutions-col .produit-card img { transform: none; will-change: auto; }
}

/* ============================================================
   RESPONSIVE ADDITIONS — mobile/tablet fixes
   ============================================================ */

/* Step 4 — Trust Band mobile */
@media (max-width: 900px) {
  .trust-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 0 clamp(1rem, 3vw, 2rem);
  }
  .trust-divider {
    display: none;
  }
  .trust-item {
    width: calc(50% - 2px);
    padding: 10px 12px;
    justify-content: center;
    border-bottom: 1px solid var(--border-subtle);
  }
  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--border-subtle);
  }
}
@media (max-width: 480px) {
  .trust-item {
    width: 100%;
    font-size: 0.80rem;
    padding: 9px 12px;
  }
  .trust-item:nth-child(odd) {
    border-right: none;
  }
}

/* Step 5 — Hero mobile padding */
@media (max-width: 480px) {
  .hero-content {
    padding-top: 100px;
    padding-bottom: 70px;
  }
  .hero-logo-main {
    height: 120px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-actions .btn-orange,
  .hero-actions .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
}

/* Step 6 — Mobile nav extra-small screens */
@media (max-width: 380px) {
  .nav-mobile.is-open {
    padding: 12px 1rem 16px;
  }
  .nav-mobile a {
    padding: 10px 12px;
    font-size: 0.90rem;
  }
}

/* Step 7 — Conformite section at tablet */
@media (max-width: 640px) {
  .conformite-header {
    margin-bottom: 28px;
  }
  .conformite-strip {
    gap: 10px;
  }
}

/* Step 8 — Safe-area-inset for notched phones */
@media (max-width: 480px) {
  .bottom-bar {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }
}

/* Step 9 — Solutions tabs scrollable at 768px */
@media (max-width: 768px) {
  .solutions-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .solutions-tabs::-webkit-scrollbar { display: none; }
  .solutions-tab {
    flex-shrink: 0;
  }
}

/* Step 10 — Footer nav at mobile */
@media (max-width: 480px) {
  .footer-nav ul,
  .footer-produits ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .footer-nav ul li a,
  .footer-produits ul li a {
    font-size: 0.80rem;
  }
}

/* ============================================================
   LOCATION — Section location d'équipements
   ============================================================ */
.location {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: #0F1923 url('../images/catalogue/install-IMG_0500.jpg') center / cover no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
/* Dark overlay pour lisibilité */
.location::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 17, 28, 0.80);
  pointer-events: none;
  z-index: 0;
}
/* Orange glow décoratif */
.location::after {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(242,116,5,0.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
/* Fallback mobile : pas de fixed attachment sur iOS */
@media (max-width: 768px) {
  .location { background-attachment: scroll; }
}
.location .container { position: relative; z-index: 1; }
.location .section-header { text-align: center; }
.location .section-header h2 {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #fff;
  color: #fff;
  animation: none;
}
.location .section-header h2::after { background: var(--orange); }
.location .section-header p { color: rgba(255,255,255,0.60); max-width: 580px; margin: 0 auto; }

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.location-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.30s ease, transform 0.30s ease, box-shadow 0.30s ease, background 0.30s ease;
}
.location-card:hover {
  border-color: rgba(242,116,5,0.45);
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.32), 0 0 0 1px rgba(242,116,5,0.12);
}
.location-card--featured {
  background: rgba(242,116,5,0.06);
  border-color: rgba(242,116,5,0.22);
}
.location-card--featured:hover {
  border-color: rgba(242,116,5,0.70);
  background: rgba(242,116,5,0.12);
}

.location-card-popular {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.location-card-icon {
  width: 50px; height: 50px;
  background: rgba(242,116,5,0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
  transition: background 0.30s ease, transform 0.30s ease;
}
.location-card:hover .location-card-icon {
  background: rgba(242,116,5,0.22);
  transform: scale(1.12);
}
.location-card-duration {
  display: inline-block;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.location-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.30s ease;
}
.location-card:hover h3 { color: #fff; }
.location-card p {
  color: rgba(255,255,255,0.58);
  font-size: 0.88rem;
  line-height: 1.65;
  transition: color 0.30s ease;
}
.location-card:hover p { color: rgba(255,255,255,0.82); }
.location-avantages {
  margin-top: 52px;
  text-align: center;
}
.location-avantages ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  list-style: none;
  padding: 0; margin: 0;
}
.location-avantages li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.68);
  font-size: 0.86rem;
}
.location-avantages li svg { color: var(--orange); flex-shrink: 0; }
.location-cta {
  margin-top: 48px;
  text-align: center;
}
.location-cta-pre {
  color: rgba(255,255,255,0.45);
  font-size: 0.84rem;
  margin-bottom: 22px;
}

/* Responsive */
@media (max-width: 900px) {
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid .location-card:last-child {
    grid-column: span 2;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .location-grid { grid-template-columns: 1fr; gap: 16px; }
  .location-grid .location-card:last-child { grid-column: auto; max-width: none; }
  .location-avantages ul { flex-direction: column; align-items: flex-start; padding: 0 8px; }
}
