/* ============================================================
   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,
.produits::after,
.subventions::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,
.bottom-bar-call .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: var(--orange);
  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: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-orange::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-orange:hover::before { opacity: 1; }
.btn-orange:hover {
  background: var(--orange-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-orange), 0 0 20px rgba(242, 116, 5, 0.15);
}
.btn-orange:active { transform: translateY(0) scale(0.98); }
.btn-orange.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-orange.btn-full { width: 100%; }

.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 { color: var(--white); }
.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-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-badge        { animation-delay: 0.20s; }
.hero-content .hero-title        { animation-delay: 0.38s; }
.hero-content .hero-subtitle     { animation-delay: 0.52s; }
.hero-content .hero-subtitle-pro { animation-delay: 0.62s; }
.hero-content .hero-actions      { animation-delay: 0.74s; }
.hero-content .hero-note         { animation-delay: 0.88s; }

@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;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  position: relative;
}
.nav-links 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 a:hover {
  color: var(--navy);
}
.nav-links a:hover::after,
.nav-links a.active-link::after {
  width: 22px;
}
.nav-links a:hover {
  transform: translateY(-1px);
}
.nav-links a.active-link {
  color: var(--navy);
  font-weight: 700;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}

.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;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center / cover no-repeat;
  transform: scale(1.06);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(15, 25, 35, 0.92) 0%,
      rgba(27, 54, 93, 0.78) 40%,
      rgba(27, 54, 93, 0.55) 70%,
      rgba(242, 116, 5, 0.12) 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-flex;
  align-items: center;
  gap: 6px;
  background: rgba(242, 116, 5, 0.14);
  border: 1px solid rgba(242, 116, 5, 0.28);
  color: #FFB36B;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-highlight {
  color: var(--orange);
  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);
}
.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);
}
.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;
}
.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);
}
.cat-accordion:hover .cat-panel:not(:hover) .cat-panel-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.25s, transform 0.25s;
}

.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 {
  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;
}
.client-type-trust span .icon {
  color: var(--orange);
  flex-shrink: 0;
}

/* --- 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;
  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: var(--navy-dark);
  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-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-info-always .produit-overlay { opacity: 1; }
.produit-card--large .produit-overlay { opacity: 1; }

.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);
}
.produit-badge--com {
  background: rgba(0, 74, 141, 0.85);
  box-shadow: 0 2px 8px rgba(0, 74, 141, 0.30);
}

/* --- 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)
   ============================================================ */
.conformite-section {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 30, 61, 0.08);
}
.conformite-titre {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.conformite-titre .icon {
  color: var(--orange);
  width: 16px;
  height: 16px;
}
.conformite-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.conformite-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-dark);
  border: 1px solid rgba(242, 116, 5, 0.12);
  border-radius: 8px;
  padding: 7px 14px 7px 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  color: inherit;
  outline: none;
}
.conformite-badge:hover {
  border-color: rgba(242, 116, 5, 0.4);
  box-shadow: 0 2px 12px rgba(242, 116, 5, 0.1);
}
.conformite-badge[aria-expanded="true"] {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(242, 116, 5, 0.15);
}
.conformite-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.conformite-badge-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.conformite-badge-detail {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  max-width: 320px;
  background: var(--navy-dark);
  border: 1px solid rgba(242, 116, 5, 0.25);
  border-radius: 10px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  line-height: 1.55;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  pointer-events: none;
}
.conformite-badge[aria-expanded="true"] .conformite-badge-detail {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
/* Arrow on tooltip */
.conformite-badge-detail::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 18px;
  width: 10px;
  height: 10px;
  background: var(--navy-dark);
  border-left: 1px solid rgba(242, 116, 5, 0.25);
  border-top: 1px solid rgba(242, 116, 5, 0.25);
  transform: rotate(45deg);
}

@media (max-width: 640px) {
  .conformite-strip { gap: 6px; }
  .conformite-badge { padding: 6px 10px 6px 6px; }
  .conformite-badge-icon { width: 26px; height: 26px; font-size: 0.55rem; }
  .conformite-badge-label { font-size: 0.65rem; }
  .conformite-badge-detail { min-width: 220px; left: -10px; }
}

/* ============================================================
   ESTIMATEUR DE RAMPE — compact & client-friendly
   ============================================================ */
/* --- Launcher CTA button --- */
.est-launcher {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto 32px;
  padding: 16px 22px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #162340 100%);
  border: 2px solid rgba(242,116,5,0.25);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: inherit;
  text-align: left;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.est-launcher::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242,116,5,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.est-launcher:hover::before { opacity: 1; }
.est-launcher:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(242,116,5,0.2), 0 0 0 1px rgba(242,116,5,0.1);
}
.est-launcher.open {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1a2b4a 100%);
  box-shadow: 0 4px 16px rgba(242,116,5,0.12);
}
.est-launcher-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: rgba(242,116,5,0.10);
  border-radius: 14px;
  flex-shrink: 0;
  color: var(--orange);
}
.est-launcher-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 17px;
  border: 2px solid var(--orange);
  opacity: 0;
  animation: estPulse 2.5s ease-out infinite;
}
@keyframes estPulse {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.25); }
}
.est-launcher.open .est-launcher-pulse { animation: none; opacity: 0; }
.est-launcher-text {
  flex: 1;
  position: relative;
}
.est-launcher-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 2px;
}
.est-launcher-text span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
}
.est-launcher-arrow {
  flex-shrink: 0;
  color: var(--orange);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.est-launcher:hover .est-launcher-arrow { transform: translateX(3px); }
.est-launcher.open .est-launcher-arrow { transform: rotate(90deg); }

/* --- Inline estimateur panel --- */
.est-inline {
  display: none;
  max-width: 680px;
  margin: 0 auto 32px;
  animation: estInlineOpen 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.est-inline.visible { display: block; }
@keyframes estInlineOpen {
  from { opacity: 0; transform: translateY(-12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.est-card {
  background: var(--navy-dark);
  border: 1px solid rgba(242,116,5,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(10,20,40,0.4);
}
.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: var(--white);
  margin-bottom: 4px;
}
.est-subtitle {
  color: rgba(255,255,255,0.35);
  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: rgba(255,255,255,0.55);
  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: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 8px 14px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  font-size: 0.78rem;
}
.est-type .icon {
  color: rgba(255,255,255,0.3);
  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: rgba(255,255,255,0.15);
}

/* Height input */
.est-input-group {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.est-input-group:focus-within {
  border-color: var(--orange);
}
.est-input-group input {
  width: 90px;
  background: rgba(255,255,255,0.05);
  border: none;
  padding: 8px 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  outline: none;
}
.est-input-group input::placeholder {
  color: rgba(255,255,255,0.2);
  font-weight: 400;
}
.est-hint {
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  font-weight: 600;
}

/* Unit toggle + slope buttons (reused) */
.calc-unit-toggle {
  display: flex;
  background: rgba(255,255,255,0.04);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.calc-unit {
  padding: 10px 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.40);
  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: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.65);
  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: rgba(255,255,255,0.3);
  margin-top: 1px;
}
.calc-slope.active {
  background: rgba(242,116,5,0.12);
  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: rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.85);
}

/* --- 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: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.04);
}
.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.06);
  border: 1px solid rgba(242,116,5,0.2);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.est-result-main-label {
  color: rgba(255,255,255,0.45);
  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: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px 12px;
  flex: 1;
  min-width: 70px;
}
.est-spec-label {
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.est-spec-value {
  color: var(--white);
  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.06);
  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: var(--white);
  margin-bottom: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.est-form .form-group { margin-bottom: 10px; }
.est-form .form-group label {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.est-form .form-group label small { color: rgba(255,255,255,0.3); }
.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: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 6px;
  color: var(--white) !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: rgba(255,255,255,0.08) !important;
}
.est-form input::placeholder,
.est-form textarea::placeholder {
  color: rgba(255,255,255,0.2);
}
.est-form select option { background: var(--navy-dark); color: var(--white); }
.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: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 6px;
  cursor: pointer;
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  transition: border-color var(--transition);
  position: relative;
}
.est-upload:hover { border-color: var(--orange); }
.est-upload .icon { color: rgba(255,255,255,0.3); }
.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: rgba(255,255,255,0.3);
  font-size: 0.68rem;
  margin-top: 8px;
}
.est-form-note .icon { color: rgba(255,255,255,0.25); }

/* Responsive estimateur */
@media (max-width: 640px) {
  .est-launcher { flex-direction: column; text-align: center; padding: 14px 16px; gap: 10px; }
  .est-launcher-arrow { display: none; }
  .est-inline { margin-left: -12px; margin-right: -12px; }
  .est-card { border-radius: var(--radius); }
  .est-header, .est-body, .est-results, .est-form { padding-left: 16px; padding-right: 16px; }
  .est-q { flex-wrap: wrap; }
  .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; }
  .est-result-specs { gap: 6px; }
  .est-spec { min-width: 65px; }
  .calc-slopes { flex-wrap: wrap; }
  .est-form .form-row { grid-template-columns: 1fr; }
}


/* ============================================================
   SUBVENTIONS — TABBED INTERFACE
   ============================================================ */
.subventions {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}
.subventions::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(242, 116, 5, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* --- 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;
}

/* --- Panels --- */
.subv-panel {
  display: none;
}
.subv-panel.active {
  display: block;
  animation: subvFadeIn 0.4s var(--ease-out);
}
@keyframes subvFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Grid --- */
.subv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.subv-grid--two {
  grid-template-columns: repeat(3, 1fr);
}
/* --- 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;
}
.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(242, 116, 5, 0.15);
  color: #FFB36B;
}
.subv-badge-type--credit {
  background: rgba(100, 180, 255, 0.12);
  color: #7DB8FF;
}
.subv-badge-type--deduction {
  background: rgba(27, 54, 93, 0.25);
  color: rgba(255, 255, 255, 0.72);
}
.subv-badge-type--fonds {
  background: rgba(0, 74, 141, 0.18);
  color: #7DB8FF;
}

/* --- 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(242, 116, 5, 0.12);
  color: #FFB36B;
}
.subv-badge-status--active::before {
  background: var(--orange);
}
.subv-badge-status--permanent {
  background: rgba(100, 180, 255, 0.10);
  color: #7DB8FF;
}
.subv-badge-status--permanent::before {
  background: #7DB8FF;
}
.subv-badge-status--confirm {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
}
.subv-badge-status--confirm::before {
  background: rgba(255, 255, 255, 0.45);
}

/* --- Highlight (key benefit) --- */
.subv-highlight {
  display: inline-block;
  background: rgba(242, 116, 5, 0.10);
  border-left: 3px solid var(--orange);
  padding: 8px 14px;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  color: #FFB36B;
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 16px;
  width: 100%;
}

/* --- 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.80); }
.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);
}

.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);
}

/* Steps indicator */
.form-steps-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.step-dot span {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: all 0.35s var(--ease-out);
}
.step-dot.active span {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  box-shadow: 0 4px 14px rgba(242, 116, 5, 0.30);
}
.step-dot.done span {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.step-dot label {
  font-size: 0.70rem;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 500;
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 10px;
  margin-bottom: 22px;
  transition: background 0.5s var(--ease-out);
  border-radius: 2px;
}
.step-line.done { background: var(--navy); }

/* 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;
}

/* 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: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition);
}
.form-card:hover {
  box-shadow: var(--shadow);
}
.form-card h3 {
  color: var(--navy);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.83rem;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

/* 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: var(--navy-deeper);
  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);
}

/* Appeler — left half */
.bottom-bar-call {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--navy-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.3s;
  white-space: nowrap;
}
.bottom-bar-call .icon {
  width: 16px; height: 16px;
  color: var(--orange);
}
.bottom-bar-call:hover {
  background: var(--navy);
}

/* Voir les produits — right, animated, dominant */
.bottom-bar-produits {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: btnBreathe 8s ease-in-out infinite;
}

/* Breathing / wiggle at rest */
@keyframes btnBreathe {
  0%, 85%, 100% { transform: scale(1); }
  88% { transform: scale(1.03) translateY(-1px); }
  91% { transform: scale(1.05) translateY(-2px); }
  94% { transform: scale(1.03) translateY(-1px); }
  97% { transform: scale(1); }
}

/* 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: var(--orange-hover);
  padding-left: 24px;
  padding-right: 32px;
}

/* 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);
}

.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) {
  .cat-accordion { height: 420px; }
  .produits-bento { grid-template-columns: repeat(3, 1fr); }
  .subv-grid { grid-template-columns: repeat(2, 1fr); }
  .subv-grid--two { 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 { grid-template-columns: 1fr 1fr; }
  .subv-grid--two { 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--two { 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: 28px 20px; border-radius: var(--radius-lg); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  body { padding-bottom: 56px; }
  .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;
  }
}
