/* ═══════════════════════════════════════════════════════════
   KBEEN — CABINE PAGE CSS  v2.0
   Prefix: .cp-*
   ═══════════════════════════════════════════════════════════ */

:root {
  --cp-green:   #74B094;
  --cp-dark:    #0f0f0f;
  --cp-light:   #ffffff;          /* was #f8f7f5 — now pure white */
  --cp-surface: #F5F5F7;          /* Apple neutral gray — transition/spec sections */
  --cp-white:   #ffffff;
  --cp-ink:     #1d1d1f;          /* Apple deep ink (was #111111) */
  --cp-mute:    #6e6e73;          /* Apple secondary label (was #888) */
  --cp-line:    rgba(0,0,0,0.08);
  --cp-gray-100: #F5F5F7;         /* was #f3f4f6 — now Apple gray */
  --cp-gray-500: #6e6e73;
  --cp-gray-800: #1d1d1f;
  --cp-gray-900: #1d1d1f;
  --cp-font-display: 'League Spartan', sans-serif;
  --cp-font-body:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--cp-font-body); background: var(--cp-light); color: var(--cp-ink); overflow-x: hidden; }
[id="configuration"] { scroll-margin-top: 180px; }

/* ── SCROLL PROGRESS ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--cp-green); z-index: 9999; transition: width 0.1s linear;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; background: var(--cp-light);
  display: flex; align-items: center; justify-content: center;
  z-index: 9000; transition: opacity 0.5s ease;
}
#preloader .loader-logo { width: 80px; animation: cp-pulse 1s ease-in-out infinite; }
@keyframes cp-pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
body.loaded #preloader { opacity: 0; pointer-events: none; }

/* ── PAGE TRANSITION ── */
#page-transition {
  position: fixed; inset: 0; background: var(--cp-light);
  opacity: 0; pointer-events: none; z-index: 8000; transition: opacity 0.35s ease;
}
#page-transition.active { opacity: 1; pointer-events: all; }

/* ── NAVBAR ── */
.cp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 44px; height: 72px;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.cp-nav.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}
.cp-nav-logo img {
  height: 22px; width: auto; display: block;
  filter: none; object-fit: contain;
}
.cp-nav-actions { display: flex; align-items: center; gap: 24px; }
.cp-nav-back {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.03em;
  color: var(--cp-gray-500); text-decoration: none;
  transition: color 0.2s;
}
.cp-nav-back i { font-size: 13px; transition: transform 0.22s ease; }
.cp-nav-back:hover { color: var(--cp-gray-900); }
.cp-nav-back:hover i { transform: translateX(-3px); }
.cp-nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cp-white); text-decoration: none;
  background: var(--cp-green); border-radius: 100px; padding: 10px 22px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: background 0.2s, transform 0.18s;
}
.cp-nav-cta:hover { background: #5fa080; transform: translateY(-1px); }

/* ── SUB-NAVIGATION TABS ── */
.cp-subnav {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: var(--cp-white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transform: translateY(-100%); opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cp-subnav.visible { transform: translateY(0); opacity: 1; }
.cp-subnav-inner {
  display: flex; justify-content: center; gap: 0;
  max-width: 600px; margin: 0 auto;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.cp-subnav-inner::-webkit-scrollbar { display: none; }
.cp-subnav-tab {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 20px 12px;
  font-family: var(--cp-font-body); font-size: 13px; font-weight: 500;
  color: var(--cp-gray-500); text-decoration: none; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.cp-subnav-tab:hover { color: var(--cp-gray-900); }
.cp-subnav-tab.active {
  color: var(--cp-gray-900); font-weight: 700;
  border-bottom-color: var(--cp-ink);
}
/* Onglet Configurer → (CTA vert dans la subnav) */
.cp-subnav-config {
  color: var(--cp-green); font-weight: 700;
  border-left: 1px solid rgba(0,0,0,0.08);
  margin-left: 8px; padding-left: 24px;
}
.cp-subnav-config:hover { color: #5fa080; border-bottom-color: transparent; }

/* ── REVEAL ── */
.cp-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1); }
.cp-reveal.revealed { opacity: 1; transform: none; }
.cp-reveal-d1 { transition-delay: 0.1s; }
.cp-reveal-d2 { transition-delay: 0.2s; }
.cp-reveal-d3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════
   HERO — Light split layout (Apple)
════════════════════════════════════════ */
.cp-hero {
  min-height: 100vh; display: grid; grid-template-columns: 44% 56%;
  background: var(--cp-light); overflow: hidden; padding-top: 72px;
}
.cp-hero-text {
  padding: 60px 52px 60px 64px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
/* No gradient — pure white architecture */
.cp-hero-text::before {
  display: none;
}
.cp-model-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cp-green); display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.cp-model-tag::before { content:''; display:block; width:26px; height:1.5px; background:var(--cp-green); }

.cp-hero-name {
  font-family: var(--cp-font-display);
  font-size: clamp(68px, 9vw, 130px);
  font-weight: 900; line-height: 0.9; letter-spacing: -4px;
  color: var(--cp-ink); margin-bottom: 22px;
}
.cp-hero-tagline {
  font-size: clamp(15px, 1.5vw, 19px); font-weight: 400; line-height: 1.65;
  color: var(--cp-gray-500); margin-bottom: 28px; max-width: 380px;
}
.cp-hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.cp-hero-pill {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 14px; border: none; border-radius: 100px;
  background: var(--cp-gray-100); color: var(--cp-gray-800);
}
.cp-hero-pill-pop {
  background: var(--cp-green); color: #fff;
}
.cp-hero-pill-price {
  background: var(--cp-gray-100); color: var(--cp-ink);
  font-weight: 700; letter-spacing: 0.02em;
}
.cp-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.cp-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; background: #111827; color: #ffffff;
  padding: 14px 32px; border-radius: 9999px;
  transition: background 0.15s ease;
}
.cp-btn-primary:hover { background: #000000; }
.cp-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; color: #111827; background: #ffffff;
  padding: 14px 24px; border-radius: 9999px; border: 1px solid #d1d5db;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cp-btn-ghost:hover { background: #f9fafb; border-color: #9ca3af; }

/* Hero image — Transparent product panel, cabine floats on page background */
.cp-hero-image-col {
  position: relative; overflow: hidden;
  background: transparent !important; border: none !important; box-shadow: none !important;
}
.cp-hero-image-col::before { display: none; }
.cp-hero-image-col img { width: 100%; height: 100%; object-fit: contain; object-position: center center; display: block; padding: 0; }

/* Popular badge */
.cp-popular-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--cp-green); color: var(--cp-white);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 12px; width: fit-content;
}

/* ════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════ */
.cp-trust-bar {
  background: var(--cp-white); color: var(--cp-ink);
  display: flex; justify-content: center; flex-wrap: wrap; padding: 0 32px;
  border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cp-trust-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 22px 28px; gap: 4px;
  border-right: 1px solid rgba(0,0,0,0.06);
  min-width: 130px;
}
.cp-trust-item:last-child { border-right: none; }
.cp-trust-value {
  font-family: var(--cp-font-display); font-size: 21px; font-weight: 800;
  letter-spacing: -0.5px; white-space: nowrap;
}
.cp-trust-label {
  font-size: 9.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cp-gray-500); white-space: nowrap;
}

/* ════════════════════════════════════════
   ÉQUIPEMENTS
════════════════════════════════════════ */
.cp-equip-section { background: #ffffff; padding: 120px 80px; }
.cp-equip-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cp-section-tag {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cp-green); display: block; margin-bottom: 12px;
}
.cp-section-title {
  font-family: var(--cp-font-display);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 800; line-height: 1.0; letter-spacing: -1.5px;
  color: var(--cp-ink); margin-bottom: 36px;
}
.cp-section-title.light { color: var(--cp-white); }

.cp-hotspot-wrap {
  position: relative; border-radius: 0; overflow: visible;
  background: transparent !important; border: none !important; box-shadow: none !important; aspect-ratio: 1/1;
}
.cp-hotspot-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 0; }
.cp-hotspot {
  position: absolute; width: 26px; height: 26px; cursor: pointer;
  transform: translate(-50%, -50%);
}
.cp-hotspot::before {
  content:''; position:absolute; inset:0; border-radius:50%;
  background: var(--cp-green); opacity:0.85;
  transition: transform 0.2s;
}
.cp-hotspot::after {
  content:''; position:absolute; inset:-7px; border-radius:50%;
  border: 2px solid var(--cp-green); opacity:0;
  animation: cp-ring 1.8s ease-out infinite;
}
.cp-hotspot.active::before { transform: scale(1.15); }
.cp-hotspot.active::after { opacity:1; }
@keyframes cp-ring { 0%{transform:scale(0.7);opacity:0.8} 100%{transform:scale(1.9);opacity:0} }

.cp-equip-list { list-style: none; }
.cp-equip-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--cp-line);
  cursor: pointer; opacity: 0.4; transition: opacity 0.2s;
}
.cp-equip-item:first-child { border-top: 1px solid var(--cp-line); }
.cp-equip-item.active { opacity: 1; }
.cp-equip-icon {
  width: 34px; height: 34px; border-radius: 8px; background: var(--cp-surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0; color: var(--cp-green);
  transition: background 0.2s, color 0.2s;
}
.cp-equip-item.active .cp-equip-icon { background: var(--cp-green); color: #fff; }
.cp-equip-name { font-size: 13.5px; font-weight: 600; margin-bottom: 3px; }
.cp-equip-desc { font-size: 12.5px; color: var(--cp-mute); line-height: 1.5; }

/* ════════════════════════════════════════
   GALERIE / SHOWROOM
════════════════════════════════════════ */
.cp-gallery { padding: 100px 0 100px 80px; background: #ffffff; overflow: hidden; position: relative; }
.cp-gallery-header { margin-bottom: 36px; }
.cp-gallery-track {
  display: flex; gap: 32px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 20px 64px 40px 0; cursor: grab; scrollbar-width: none;
}
.cp-gallery-track::-webkit-scrollbar { display: none; }
.cp-gallery-card {
  flex: 0 0 calc(33.333% - 22px); border-radius: 20px; overflow: hidden;
  background: #F5F5F7; scroll-snap-align: start; position: relative;
  aspect-ratio: 4/5; transition: transform 0.5s ease;
}
.cp-gallery-card:hover { transform: scale(1.04); }
.cp-gallery-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; display: block; }
.cp-gallery-card-label {
  position: absolute; bottom: 12px; left: 12px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  padding: 4px 10px; border-radius: 100px;
}

/* ── SCROLL HINT — badge desktop + badge mobile ── */
.cp-gallery-swipe-hint {
  display: inline-flex;
  align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-top: 10px;
  user-select: none; pointer-events: none;
}

/* Flèche flottante droite (desktop) */
.cp-gallery-scroll-arrow {
  position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  display: flex; align-items: center; justify-content: center;
  color: #111; pointer-events: none;
  animation: arrowPulse 2.4s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { opacity: 0.65; transform: translateY(-50%) translateX(0); }
  50%       { opacity: 1;    transform: translateY(-50%) translateX(5px); }
}


.cp-showroom { padding: 100px 0 100px 80px; background: #ffffff; overflow: hidden; }
.cp-showroom-header { margin-bottom: 36px; }
.cp-showroom-track {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-right: 64px; cursor: grab; scrollbar-width: none;
}
.cp-showroom-track::-webkit-scrollbar { display: none; }
.cp-showroom-card {
  flex: 0 0 auto; width: 500px; border-radius: 8px; overflow: hidden;
  background: #F5F5F7; scroll-snap-align: start; aspect-ratio: 16/10;
}
.cp-showroom-card img { width: 100%; height: 100%; object-fit: cover; }

/* ════════════════════════════════════════
   TECHNOLOGIES EMBARQUÉES — Dark premium cards
════════════════════════════════════════ */
.cp-tech {
  background: #F5F5F7;
  padding: 120px 0 120px;
}
.cp-tech-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── Header ── */
.cp-tech-header {
  margin-bottom: 56px;
}
.cp-tech-header .cp-section-tag {
  display: block;
  margin-bottom: 12px;
}
.cp-tech-header .cp-section-title {
  color: var(--cp-ink);
  max-width: 520px;
}

/* ── Card grid ── */
.cp-tech-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cp-tech-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 28px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
}
.cp-tech-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* Card icon */
.cp-tech-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(116,176,148,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--cp-green);
}
.cp-tech-card:hover .cp-tech-card-icon {
  background: rgba(116,176,148,0.2);
}
.cp-tech-card-icon svg {
  width: 26px;
  height: 26px;
}

/* Card title */
.cp-tech-card-title {
  font-family: var(--cp-font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: #1d1d1f;
  margin-bottom: 6px;
}

/* Card subtitle */
.cp-tech-card-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cp-green);
  margin-bottom: 18px;
}

/* Card description */
.cp-tech-card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #6e6e73;
  flex: 1;
}
.cp-tech-card-desc strong {
  color: #1d1d1f;
  font-weight: 600;
}

/* Card stat (bottom) */
.cp-tech-card-stat {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.cp-tech-card-stat-value {
  font-family: var(--cp-font-display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--cp-green);
}
.cp-tech-card-stat-unit {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6e6e73;
}

/* ── Key stats bar ── */
.cp-tech-keybar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 16px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
}
.cp-tech-key {
  padding: 28px 32px;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.cp-tech-key:last-child { border-right: none; }
.cp-tech-key-val {
  font-family: var(--cp-font-display);
  font-size: 28px; font-weight: 900; letter-spacing: -0.5px;
  color: var(--cp-green); line-height: 1; margin-bottom: 4px;
}
.cp-tech-key-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: #6e6e73;
}

/* ════════════════════════════════════════
   SPÉCIFICATIONS
════════════════════════════════════════ */
.cp-specs { background: #ffffff; padding: 120px 80px; }
.cp-specs-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
/* ── Plan Switcher (iOS Segmented Control) ── */
.cp-plan-wrap { background: var(--cp-warm, #F5F2ED); border-radius: 12px; padding: 24px; }
.cp-plan-switcher {
  display: inline-flex; background: #F5F5F7; border-radius: 8px; padding: 3px; gap: 2px; margin-bottom: 20px;
}
.cp-plan-switcher button {
  background: transparent; border: none; cursor: pointer;
  font-family: var(--cp-font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(0,0,0,0.45); padding: 8px 20px; border-radius: 6px;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.cp-plan-switcher button.active {
  background: #ffffff; color: var(--cp-ink); box-shadow: 0 1px 4px rgba(0,0,0,0.08), 0 0 1px rgba(0,0,0,0.06);
}
.cp-plan-switcher button:hover:not(.active) { color: rgba(0,0,0,0.7); }
.cp-plan-display {
  width: 100%; border-radius: 8px; display: block;
  mix-blend-mode: multiply; opacity: 0.85;
  transition: opacity 0.3s ease;
}
.cp-plan-caption {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cp-mute); text-align: center; margin-top: 12px;
}

/* ── Plan Zoom hint & Lightbox ── */
.cp-plan-wrap { position: relative; }
.cp-plan-display { cursor: zoom-in; }
.cp-plan-switcher button { cursor: pointer; }

.cp-plan-zoom-hint {
  position: absolute; right: 32px; bottom: 56px;
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px; padding: 5px 10px 5px 7px;
  font-family: var(--cp-font-body);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--cp-ink);
  opacity: 0; transition: opacity 0.25s ease;
  pointer-events: none; user-select: none;
}
.cp-plan-wrap:hover .cp-plan-zoom-hint { opacity: 1; }
.cp-plan-zoom-hint svg { width: 13px; height: 13px; flex-shrink: 0; }

.cp-lightbox {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,242,237,0.85);
  backdrop-filter: blur(15px) saturate(160%);
  -webkit-backdrop-filter: blur(15px) saturate(160%);
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.4,0,0.2,1);
}
.cp-lightbox.open { opacity: 1; pointer-events: all; }
.cp-lightbox-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  touch-action: none;
}
.cp-lightbox-img {
  max-width: 92vw; max-height: 86vh;
  border-radius: 10px; background: transparent;
  mix-blend-mode: multiply;
  transform: scale(1) translate(0,0); transform-origin: center center;
  will-change: transform; user-select: none; -webkit-user-drag: none;
}
.cp-lightbox-close {
  position: fixed; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(28,28,30,0.10);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(28,28,30,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(28,28,30,0.75); z-index: 10002;
  transition: background 0.15s ease, color 0.15s ease;
}
.cp-lightbox-close:hover { background: rgba(28,28,30,0.18); color: rgba(28,28,30,1); }
.cp-lightbox-close svg { width: 15px; height: 15px; }

.cp-accordion { margin-top: 8px; }
.cp-acc-item { border-bottom: 1px solid var(--cp-line); }
.cp-acc-trigger {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 0; font-family: var(--cp-font-body);
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--cp-ink); gap: 16px;
}
.cp-acc-icon {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--cp-line); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 13px; transition: transform 0.3s, border-color 0.3s;
}
.cp-acc-item.open .cp-acc-icon { transform: rotate(45deg); border-color: var(--cp-green); color: var(--cp-green); }
.cp-acc-body { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1); }
.cp-acc-item.open .cp-acc-body { max-height: 800px; }
.cp-acc-grid { padding-bottom: 18px; }
.cp-acc-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.04); font-size: 13px; gap: 16px;
}
.cp-acc-row:last-child { border-bottom: none; }
.cp-acc-row-label { color: var(--cp-mute); flex-shrink: 0; }
.cp-acc-row-value { font-weight: 600; text-align: right; }

/* ════════════════════════════════════════
   COLORIS TEASER
════════════════════════════════════════ */
.cp-coloris {
  background: #ffffff; padding: 120px 80px; border-top: 1px solid var(--cp-line);
}
.cp-coloris-inner {
  max-width: 920px; margin: 0 auto; text-align: center;
}
.cp-coloris-inner .cp-section-tag { margin-bottom: 16px; }
.cp-coloris-inner .cp-section-title { margin-bottom: 16px; }
.cp-coloris-inner .cp-coloris-desc {
  font-size: 15px; line-height: 1.8; color: #666; max-width: 460px; margin: 0 auto 48px;
}
.cp-coloris-swatches {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px;
}
.cp-coloris-swatch {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: default;
}
.swatch-circle {
  width: 76px; height: 76px; border-radius: 10px;
  background: var(--c, #ccc);
  border: 1.5px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.cp-coloris-swatch:hover .swatch-circle {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 28px rgba(0,0,0,0.13);
}
.cp-coloris-swatch span {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #888;
}
.swatch-ral .swatch-circle {
  background: #F5F5F7;
  border: 1.5px dashed rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cp-font-display); font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em; color: #aaa; text-transform: uppercase;
}

/* ════════════════════════════════════════
   CTA FINALE
════════════════════════════════════════ */
.cp-cta-final { background: #F5F5F7; color: var(--cp-ink); padding: 120px 80px; text-align: center; border-top: none; }
.cp-cta-final h2 {
  font-family: var(--cp-font-display);
  font-size: clamp(38px, 5vw, 68px); font-weight: 900; line-height: 1.0;
  letter-spacing: -2px; margin-bottom: 18px;
}
.cp-cta-final p { font-size: 16px; color: var(--cp-gray-500); max-width: 500px; margin: 0 auto 44px; line-height: 1.75; }
.cp-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cp-cta-main {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; background: #111827; color: #ffffff;
  padding: 14px 32px; border-radius: 9999px;
  transition: background 0.15s ease;
}
.cp-cta-main:hover { background: #000000; }
.cp-cta-sec {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; color: #111827; background: #ffffff;
  padding: 12px 24px; border-radius: 9999px; border: 1px solid #d1d5db;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cp-cta-sec:hover { background: #f9fafb; border-color: #9ca3af; }

/* ════════════════════════════════════════
   NAVIGATION MODÈLES
════════════════════════════════════════ */
.cp-model-nav { background: var(--cp-white); padding: 56px 64px; border-top: 1px solid var(--cp-line); }
.cp-model-nav-label {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cp-mute); margin-bottom: 28px; text-align: center;
}
.cp-model-nav-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1160px; margin: 0 auto;
  border: 1.5px solid var(--cp-line); border-radius: 10px; overflow: hidden;
}
.cp-mnav-item {
  display: flex; align-items: center; gap: 12px; padding: 18px 22px;
  text-decoration: none; color: var(--cp-ink);
  border-right: 1.5px solid var(--cp-line);
  background: var(--cp-white); transition: background 0.2s;
}
.cp-mnav-item:last-child { border-right: none; }
.cp-mnav-item:hover { background: #F5F5F7; }
.cp-mnav-item.active { background: #F5F5F7; pointer-events: none; }
.cp-mnav-img {
  width: 52px; height: 60px; flex-shrink: 0;
  border-radius: 6px; background: transparent !important; border: none !important; box-shadow: none !important; overflow: visible;
}
.cp-mnav-img img { width: 100%; height: 100%; object-fit: contain; padding: 0; }
.cp-mnav-text { flex: 1; min-width: 0; }
.cp-mnav-name {
  font-family: var(--cp-font-display); font-size: 17px; font-weight: 900;
  letter-spacing: -0.4px; display: block; margin-bottom: 2px;
}
.cp-mnav-item.active .cp-mnav-name { color: var(--cp-green); }
.cp-mnav-cap { font-size: 10.5px; font-weight: 500; color: var(--cp-mute); text-transform: uppercase; letter-spacing: 0.07em; }
.cp-mnav-arrow { color: var(--cp-mute); font-size: 15px; margin-left: auto; flex-shrink: 0; transition: transform 0.2s; }
.cp-mnav-item:hover .cp-mnav-arrow { transform: translateX(3px); color: var(--cp-green); }
.cp-mnav-item.active .cp-mnav-arrow { color: var(--cp-green); }

/* ── FOOTER ── */
.cp-footer { background: var(--cp-white); color: var(--cp-gray-500); text-align: center; padding: 22px 40px; font-size: 11.5px; letter-spacing: 0.06em; border-top: 1px solid rgba(0,0,0,0.06); }
.cp-footer a { color: inherit; text-decoration: underline; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .cp-equip-inner, .cp-specs-inner, .cp-coloris-inner { grid-template-columns: 1fr; gap: 48px; }
  .cp-tech-cards { gap: 20px; }
  .cp-tech-keybar { grid-template-columns: repeat(2, 1fr); }
  .cp-tech-key:nth-child(2) { border-right: none; }
  .cp-tech-key:nth-child(1), .cp-tech-key:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.06); }
  .cp-model-nav-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cp-mnav-item:nth-child(2) { border-right: none; }
  .cp-mnav-item:nth-child(1), .cp-mnav-item:nth-child(2) { border-bottom: 1.5px solid var(--cp-line); }
}
@media (max-width: 768px) {
  .cp-nav { padding: 0 20px; height: 60px; position: relative; }
  .cp-nav-logo img { height: 22px; }
  .cp-subnav { top: 60px; }
  .cp-subnav-tab { padding: 12px 16px 10px; font-size: 12px; }
  .cp-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 60px; }
  .cp-hero-text { padding: 44px 24px 40px; }
  .cp-hero-name { font-size: 68px; letter-spacing: -3px; }
  .cp-hero-image-col { height: 72vw; min-height: 300px; }
  .cp-equip-section, .cp-specs, .cp-coloris, .cp-cta-final, .cp-model-nav { padding: 72px 24px; }
  .cp-equip-inner { gap: 32px; }
  /* ── FIX MOBILE IMAGE ÉQUIPEMENTS — suppression boîte grise ── */
  .cp-hotspot-wrap {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    aspect-ratio: auto;
    max-height: none;
    padding: 8px 0 20px;
  }
  .cp-hotspot-wrap img {
    width: 100%;
    max-width: 420px;
    display: block;
    margin: 0 auto;
    padding: 0;
    object-fit: contain;
    /* Ombre drop-shadow épouse la silhouette exacte de la cabine */
    filter: drop-shadow(0 28px 56px rgba(0,0,0,0.18)) drop-shadow(0 6px 16px rgba(0,0,0,0.09));
  }
  .cp-hero-ctas { flex-direction: column; align-items: flex-start; }
  .cp-hero-ctas .cp-btn-primary, .cp-hero-ctas .cp-btn-ghost { width: 100%; justify-content: center; }
  /* ── NAVBAR MOBILE : logo seul, boutons masqués ── */
  .cp-nav-actions { display: none; }
  .cp-tech { padding: 72px 0 60px; }
  .cp-tech-inner { padding: 0 24px; }
  .cp-tech-header { margin-bottom: 40px; }
  .cp-tech-cards { grid-template-columns: 1fr; gap: 16px; }
  .cp-tech-card { padding: 32px 24px 28px; border-radius: 20px; }
  .cp-tech-keybar { grid-template-columns: 1fr 1fr; border-radius: 16px; margin-top: 32px; }
  .cp-tech-key { padding: 24px 20px; }
  .cp-tech-key-val { font-size: 26px; }
  .cp-gallery, .cp-showroom { padding: 60px 0 60px 24px; }
  .cp-gallery-card { flex: 0 0 82vw; }
  .cp-showroom-card { width: 85vw; }
  /* Flèche desktop — cachée sur mobile */
  .cp-gallery-scroll-arrow { display: none; }
  /* Badge swipe — adapté mobile */
  .cp-gallery-swipe-hint {
    background: rgba(0,0,0,0.06);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 16px;
    user-select: none; pointer-events: none;
  }
  .cp-trust-item { padding: 16px 18px; min-width: 110px; }
  .cp-model-nav-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .cp-mnav-item { padding: 14px 12px; }
  .cp-mnav-img { width: 38px; height: 44px; }
  .cp-mnav-name { font-size: 13px; }
  .cp-mnav-cap { font-size: 9.5px; }
}

/* ── LOGO RESPONSIVE (desktop agrandissement) ── */
@media (min-width: 769px) {
  .cp-nav-logo img { height: 24px; }
}
@media (min-width: 1024px) {
  .cp-nav-logo img { height: 28px; }
}

/* ============================================================
   MENU HAMBURGER MOBILE — Pages Produits (focus/comfort/team/business)
   ============================================================ */

/* Bouton hamburger — caché sur desktop, visible sur mobile */
.cp-hamburger {
  display: none;
  font-size: 26px;
  color: #111;
  cursor: pointer;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
  background: none; border: none; padding: 0;
  flex-shrink: 0; line-height: 1;
}
@media (max-width: 768px) {
  .cp-hamburger { display: flex; }
}

/* Bouton "Accueil" — caché sur desktop, visible sur mobile dans la navbar */
/* Bouton "Accueil" — mobile uniquement, style identique à .cp-btn-ghost */
.cp-nav-home {
  display: none; /* caché sur desktop */
  align-items: center; justify-content: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; color: #111827; background: #ffffff;
  padding: 10px 20px; border-radius: 9999px; border: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.cp-nav-home i { display: none; } /* pas d'icône — texte seul comme ACCUEIL */
.cp-nav-home:hover { background: #f9fafb; border-color: #9ca3af; }
@media (max-width: 768px) {
  .cp-nav-home {
    display: inline-flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Overlay plein-écran (fond blanc — navbar produit toujours claire) */
.cp-mob-menu {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh; height: 100dvh;
  background: #fff;
  z-index: 9999;
  padding: 84px 32px 48px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; gap: 20px;
  overflow-y: auto;
  border-bottom: 1px solid #e5e5e5;
}
.cp-mob-menu.active { transform: translateY(0); }

/* Bouton fermer */
.cp-mob-close {
  position: absolute; top: 22px; right: 20px;
  font-size: 28px; color: #111; cursor: pointer;
  background: none; border: none; padding: 8px; line-height: 1;
}

/* Liens principaux */
.cp-mob-link {
  font-family: 'League Spartan', sans-serif;
  font-size: 28px; font-weight: 900;
  color: #111; text-transform: uppercase; text-decoration: none;
  transition: opacity 0.18s ease;
}
.cp-mob-link:hover { opacity: 0.6; }
.cp-mob-link.cp-mob-accent { color: var(--cp-green); }

/* Bouton accordéon "Nos Produits" */
.cp-mob-accordion {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left; border: none; cursor: pointer;
  font-family: 'League Spartan', sans-serif; font-size: 28px; font-weight: 900;
  text-transform: uppercase; color: #111;
  background: transparent; border-radius: 0; padding: 0;
  transition: opacity 0.22s ease;
}
.cp-mob-accordion:hover { opacity: 0.6; }
.cp-accord-chevron {
  flex-shrink: 0;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.45;
}
.cp-mob-accordion.open .cp-accord-chevron { transform: rotate(180deg); }

/* Sous-menu produits (collapse) */
.cp-mob-submenu {
  display: flex; flex-direction: column; gap: 0;
  padding-left: 18px; border-left: 2px solid rgba(116, 176, 148, 0.4);
  margin-top: 4px; overflow: hidden;
  max-height: 600px;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
  opacity: 1;
}
.cp-mob-submenu.collapsed { max-height: 0; opacity: 0; }

/* Sous-liens produits */
.cp-mob-sublink {
  font-family: 'League Spartan', sans-serif; font-size: 18px; font-weight: 800;
  color: rgba(0, 0, 0, 0.65); text-transform: uppercase; text-decoration: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 0.2s ease;
}
.cp-mob-sublink:last-child { border-bottom: none; }
.cp-mob-sublink:hover { color: #111; }
.cp-mob-sublink .cp-sl-name { flex: 1; }
.cp-mob-sublink .cp-sl-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cp-mob-sublink .cp-sl-cap {
  font-size: 10px; font-weight: 500; color: #bbb;
  text-transform: uppercase; letter-spacing: 1px;
  font-family: 'Inter', sans-serif; transition: color 0.2s ease;
}
.cp-mob-sublink .cp-sl-arrow { flex-shrink: 0; color: var(--cp-green); transition: transform 0.22s ease; }
.cp-mob-sublink:hover .cp-sl-cap { color: rgba(116, 176, 148, 0.7); }
.cp-mob-sublink:hover .cp-sl-arrow { transform: translateX(4px); }

/* === ACCESSIBILITÉ : focus-visible === */
:focus-visible {
    outline: 2px solid var(--cp-green);
    outline-offset: 3px;
    border-radius: 4px;
}

/* === ACCESSIBILITÉ : prefers-reduced-motion === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .cp-reveal { opacity: 1; transform: none; }
    .cp-hero-bg img { animation: none; }
}
