/* ── GETA Pneumatique — Direction A v2 styles
   Palette from logo: deep navy + mid blue + sky.
   Inter (body) + Newsreader (italic accents). */

.dirA2 {
  --ink:#0a1024;
  --navy:#14213D;
  --navy-2:#1b2d52;
  --blue:#2D7BA8;
  --blue-2:#3a8fbf;
  --sky:#4AA3D9;
  --sky-soft:#7dbde6;
  --paper:#f7f9fc;
  --paper-2:#eef3f9;
  --line:#dde5ef;
  --line-strong:#c8d4e3;
  --muted:#5a6878;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--navy);
  min-height: 100%;
}
.dirA2, .dirA2 * { box-sizing: border-box; }
.dirA2-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.dirA2 a { color: inherit; text-decoration: none; cursor: pointer; }
:where(.dirA2 button) { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
.dirA2 h1,.dirA2 h2,.dirA2 h3,.dirA2 h4,.dirA2 h5 { margin: 0; font-weight: 700; letter-spacing: -0.022em; line-height: 1.1; color: var(--navy); }
.dirA2 p { margin: 0; line-height: 1.65; color: #475569; }
.dirA2 em { font-style: italic; font-family: 'Newsreader', 'Source Serif Pro', Georgia, serif; font-weight: 500; color: var(--blue); }

/* ─── 1. Utility bar with marquee ─── */
.dirA2-utility { background: var(--ink); color: rgba(255,255,255,0.72); font-size: 12.5px; padding: 8px 0; overflow: hidden; }
.dirA2-utility-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.dirA2-utility-track {
  display: inline-flex;
  white-space: nowrap;
  animation: dirA2Marquee 60s linear infinite;
  align-items: center;
  gap: 32px;
  will-change: transform;
}
.dirA2-utility-track > span { display: inline-flex; align-items: center; gap: 8px; }
.dirA2-utility-track i { color: var(--sky); font-size: 13px; }
.dirA2-utility-marquee:hover .dirA2-utility-track,
.dirA2-utility-marquee:focus-within .dirA2-utility-track { animation-play-state: paused; }
.dirA2-sep { color: rgba(255,255,255,0.25); font-size: 6px; }
@keyframes dirA2Marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── 2. Nav ─── */
.dirA2-nav {
  background: rgba(247,249,252,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  transition: padding 0.35s cubic-bezier(0.16,1,0.3,1), background 0.35s, box-shadow 0.35s;
}
.dirA2-nav.is-scrolled {
  background: rgba(247,249,252,0.95);
  box-shadow: 0 8px 28px rgba(20,33,61,0.08);
}
.dirA2-nav-row { display: flex; align-items: center; gap: 40px; padding: 16px 0; transition: padding 0.35s cubic-bezier(0.16,1,0.3,1); }
.dirA2-nav.is-scrolled .dirA2-nav-row { padding: 10px 0; }
.dirA2-brand { display: inline-flex; align-items: baseline; gap: 0; font-weight: 800; font-size: 18px; letter-spacing: -0.01em; flex-shrink: 0; }
.dirA2-brand-g { background: var(--navy); color: white; padding: 6px 9px 5px; line-height: 1; letter-spacing: -0.02em; font-weight: 900; clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%); }
.dirA2-brand-s { background: var(--blue); color: white; padding: 6px 11px 5px 12px; line-height: 1; letter-spacing: -0.01em; font-weight: 800; margin-left: -1px; clip-path: polygon(6px 0, 100% 0, 100% 100%, 0 100%); }
.dirA2-brand-sub { font-size: 12px; color: var(--muted); font-weight: 500; margin-left: 10px; font-family: 'Newsreader', serif; font-style: italic; transition: opacity 0.35s; }
.dirA2-nav.is-scrolled .dirA2-brand-sub { opacity: 0; }
.dirA2-nav-links { display: flex; gap: 4px; flex: 1; }
.dirA2-nav-links a { padding: 9px 14px; font-size: 14px; font-weight: 500; color: #475569; border-radius: 8px; transition: color 0.15s, background 0.15s; }
.dirA2-nav-links a:hover { background: var(--paper-2); color: var(--navy); }
.dirA2-nav-links a.is-active { color: var(--navy); background: rgba(45,123,168,0.1); }
.dirA2-nav-actions { display: flex; gap: 10px; align-items: center; }
.dirA2-btn-ghost { padding: 8px 14px; font-size: 14px; font-weight: 500; border-radius: 8px; color: #475569; }
.dirA2-btn-ghost:hover { background: var(--paper-2); color: var(--navy); }
.dirA2-btn-cart { padding: 9px 16px; font-size: 14px; font-weight: 600; border-radius: 999px; background: var(--navy); color: white; display: inline-flex; gap: 8px; align-items: center; }
.dirA2-btn-cart span { background: var(--sky); color: var(--navy); padding: 1px 8px; border-radius: 999px; font-size: 12px; font-weight: 700; }

/* ─── Buttons ─── */
.dirA2-btn-primary { padding: 13px 22px; font-size: 14.5px; font-weight: 700; border-radius: 10px; color: white; display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); position: relative; overflow: hidden; box-shadow: 0 8px 24px rgba(20,33,61,0.28), inset 0 1px 0 rgba(255,255,255,0.15); transition: box-shadow 0.2s ease; }
.dirA2-btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%); opacity: 0; transition: opacity 0.25s ease; }
.dirA2-btn-primary:hover::before { opacity: 1; }
.dirA2-btn-primary > * { position: relative; z-index: 1; }
.dirA2-btn-primary:hover { box-shadow: 0 12px 32px rgba(45,123,168,0.45), inset 0 1px 0 rgba(255,255,255,0.2); }
.dirA2-btn-outline-light { padding: 13px 22px; font-size: 14.5px; font-weight: 600; border-radius: 10px; background: transparent; color: white; border: 1px solid rgba(255,255,255,0.25); }
.dirA2-btn-outline-light:hover { background: white; color: var(--navy); border-color: white; }
.dirA2-btn-mini { padding: 8px 14px; font-size: 13px; font-weight: 600; border-radius: 8px; background: var(--navy); color: white; display: inline-flex; gap: 6px; align-items: center; }
.dirA2-btn-mini:hover { background: var(--blue); }
/* Quand un bouton est un <a>, le reset `.dirA2 a { color: inherit }` (0,1,1)
   bat `.dirA2-btn-*` (0,1,0) → le label hérite la couleur du texte de section
   (navy) et devient invisible sur fond navy. On réaffirme la couleur du label
   avec une spécificité supérieure (0,2,1). */
.dirA2 a.dirA2-btn-primary,
.dirA2 a.dirA2-btn-mini,
.dirA2 a.dirA2-btn-outline-light { color: #fff; }

/* ─── Eyebrows ─── */
.dirA2-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--blue); padding: 6px 14px 6px 12px; border-radius: 999px; background: rgba(45,123,168,0.08); border: 1px solid rgba(45,123,168,0.2); }
.dirA2-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 8px rgba(45,123,168,0.6); animation: dirA2DotPulse 2s ease-in-out infinite; }
@keyframes dirA2DotPulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(45,123,168,0.5); } 50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(45,123,168,0); } }
.dirA2-eyebrow-dim { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.dirA2-eyebrow-light { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sky); margin-bottom: 18px; }

/* ─── 3. Hero ─── */
.dirA2-hero { position: relative; padding: 96px 0 110px; overflow: hidden; }
/* Logo sous-marque sur plaque claire, en haut du héro (cohérent avec les verticales) */
.dirA2-hero-logo {
  display: block; height: 104px; width: auto; margin: 0 auto 24px;
  background: rgba(255,255,255,0.96); padding: 7px 12px; border-radius: 14px;
  box-shadow: 0 12px 32px rgba(10,16,36,0.28), 0 1px 0 rgba(255,255,255,0.6) inset;
}
.dirA2-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.dirA2-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,33,61,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,33,61,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, black 30%, transparent 100%);
  will-change: transform;
}
.dirA2-hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.6; will-change: transform; }
.dirA2-hero-blob-1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(74,163,217,0.5), transparent 70%); top: -120px; right: -100px; }
.dirA2-hero-blob-2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(45,123,168,0.4), transparent 70%); bottom: -80px; left: 20%; opacity: 0.5; }
.dirA2-hero-rings { position: absolute; right: 6%; top: 50%; width: 700px; height: 700px; transform: translateY(-50%); pointer-events: none; opacity: 0.35; }
.dirA2-hero-rings::before, .dirA2-hero-rings::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(45,123,168,0.25); }
.dirA2-hero-rings::after { inset: 12%; border-color: rgba(74,163,217,0.2); }
.dirA2-hero-rings::before { animation: dirA2RingPulse 6s ease-in-out infinite; }
@keyframes dirA2RingPulse { 0%,100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.04); opacity: 0.55; } }

.dirA2-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.dirA2-h1 { font-size: clamp(40px, 5.4vw, 72px); margin-top: 18px; text-wrap: balance; letter-spacing: -0.035em; }
.dirA2-h1-accent {
  background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-family: 'Newsreader', 'Source Serif Pro', Georgia, serif; font-weight: 500; font-style: italic;
}
.dirA2-lead { font-size: 18px; max-width: 540px; margin-top: 18px; }

/* Finder */
.dirA2-finder { margin-top: 36px; background: rgba(255,255,255,0.62); backdrop-filter: blur(18px) saturate(1.5); -webkit-backdrop-filter: blur(18px) saturate(1.5); border: 1px solid rgba(255,255,255,0.75); border-radius: 18px; padding: 22px; box-shadow: 0 12px 36px rgba(20,33,61,0.09), 0 1px 0 rgba(255,255,255,0.7) inset; position: relative; }
.dirA2-finder::before { content: ''; position: absolute; inset: -1px; border-radius: 19px; padding: 1px; background: linear-gradient(135deg, rgba(45,123,168,0.3), transparent 50%, rgba(74,163,217,0.2)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.dirA2-finder-tabs { display: flex; gap: 4px; padding: 4px; background: var(--paper-2); border-radius: 10px; width: fit-content; margin-bottom: 18px; }
.dirA2-finder-tabs button { padding: 7px 14px; font-size: 13px; font-weight: 600; border-radius: 7px; color: var(--muted); }
.dirA2-finder-tabs button.is-active { background: white; color: var(--navy); box-shadow: 0 1px 3px rgba(20,33,61,0.1); }
.dirA2-finder-row { display: flex; gap: 12px; align-items: end; }
.dirA2-finder-sep { font-size: 22px; color: var(--muted); padding: 0 2px 12px; font-weight: 300; }
.dirA2-field { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.dirA2-field label { font-size: 11.5px; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.dirA2-field select { padding: 12px 14px; font-size: 16px; font-weight: 600; border: 1px solid var(--line-strong); border-radius: 10px; background: white; color: var(--navy); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%232D7BA8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m4 6 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px 16px; padding-right: 36px; cursor: pointer; transition: border-color 0.15s, box-shadow 0.15s; }
.dirA2-field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(45,123,168,0.15); }
.dirA2-finder-row .dirA2-btn-primary { height: 46px; padding: 0 22px; }
.dirA2-finder-foot { margin-top: 14px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.dirA2-finder-foot a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(45,123,168,0.35); }
.dirA2-finder-foot a:hover { color: var(--blue); text-decoration-color: var(--blue); }

.dirA2-stats { display: flex; gap: 40px; margin-top: 36px; }
.dirA2-stats div { display: flex; flex-direction: column; }
.dirA2-stats strong { font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -0.025em; }
.dirA2-stat-out { font-weight: 400; color: var(--muted); font-size: 0.6em; }
.dirA2-stats > div > span { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* Hero visual */
.dirA2-hero-visual { position: relative; height: 660px; }
.dirA2-tire-stage { position: absolute; inset: 0; }
.three-tire-canvas { width: 100%; height: 100%; }
.three-tire-canvas canvas { display: block; width: 100% !important; height: 100% !important; }
.dirA2-tire-fallback {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(74,163,217,0.18), transparent 70%);
}
.dirA2-tire-fallback::before {
  content: ''; position: absolute; inset: 15%;
  background-image: url("../img/tires-hero.2e96373b68f1.avif");
  background-size: contain; background-position: center; background-repeat: no-repeat;
  filter: drop-shadow(0 30px 50px rgba(20,33,61,0.35));
}
.dirA2-tire-glow { position: absolute; inset: 8%; border-radius: 50%; background: radial-gradient(circle, rgba(74,163,217,0.18) 0%, transparent 60%); pointer-events: none; z-index: -1; }

.dirA2-hero-card { position: absolute; bottom: 30px; left: -10px; width: 295px; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 24px 60px rgba(20,33,61,0.18), 0 2px 0 rgba(255,255,255,0.5) inset; padding: 18px 20px; z-index: 2; }
.dirA2-hero-card-row { display: flex; justify-content: space-between; align-items: center; }
.dirA2-tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: white; background: var(--blue); padding: 4px 9px; border-radius: 999px; }
.dirA2-stock { font-size: 12px; color: #16a34a; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.dirA2-stock .dot { width: 6px; height: 6px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,0.2); }
.dirA2-hero-card h4 { margin: 12px 0 14px; font-size: 16px; line-height: 1.3; }
.dirA2-hero-card h4 span { font-weight: 500; color: var(--muted); font-size: 13.5px; }
.dirA2-hero-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dirA2-price { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.dirA2-price small { font-size: 12px; color: var(--muted); font-weight: 500; margin-left: 3px; }

.dirA2-hero-float { position: absolute; top: 20px; right: -20px; background: var(--navy); color: white; padding: 14px 18px; border-radius: 14px; display: flex; gap: 12px; align-items: center; box-shadow: 0 16px 40px rgba(20,33,61,0.35); z-index: 2; animation: dirA2Float 5s ease-in-out infinite; }
.dirA2-hero-float i { font-size: 22px; color: var(--sky); }
.dirA2-hero-float strong { display: block; font-size: 13px; }
.dirA2-hero-float span { font-size: 11.5px; color: rgba(255,255,255,0.6); }
@keyframes dirA2Float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ─── Sections ─── */
.dirA2-section { padding: 100px 0; }
.dirA2-section-tight { padding: 56px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dirA2-section-alt { background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dirA2-section-head { max-width: 740px; margin: 0 auto 56px; text-align: center; }
.dirA2-section-head h2 { font-size: clamp(34px, 3.6vw, 48px); }
.dirA2-section-head p { margin-top: 14px; font-size: 17px; }

/* ─── 4. Categories ─── */
.dirA2-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dirA2-cat-card { display: block; perspective: 1400px; will-change: transform; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.dirA2-cat-tilt { background: white; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: box-shadow 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s; transform-style: preserve-3d; }
.dirA2-cat-card:hover .dirA2-cat-tilt { box-shadow: 0 28px 60px rgba(20,33,61,0.18); border-color: rgba(45,123,168,0.4); }
.dirA2-cat-media { height: 230px; background-size: cover; background-position: center; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); transform: scale(1); }
.dirA2-cat-body { padding: 26px; transform: translateZ(40px); }
.dirA2-cat-row { display: flex; justify-content: space-between; align-items: center; }
.dirA2-cat-tag { font-size: 11px; font-weight: 700; padding: 4px 10px; background: rgba(45,123,168,0.12); color: var(--blue); border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase; }
.dirA2-cat-count { font-size: 13px; color: var(--muted); }
.dirA2-cat-card h3 { font-size: 22px; margin: 12px 0 6px; }
.dirA2-cat-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-weight: 600; font-size: 14px; color: var(--blue); border-bottom: 1px solid transparent; transition: border-color 0.2s, gap 0.2s; }
.dirA2-cat-card:hover .dirA2-cat-link { border-color: var(--blue); gap: 10px; }

/* ─── 5. Brands ─── */
.dirA2-brand-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; font-size: 12.5px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.dirA2-brand-head a { color: var(--blue); text-transform: none; letter-spacing: 0; font-weight: 600; }
.dirA2-brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.dirA2-brand-cell {
  background: white; border: 1px solid var(--line); border-radius: 14px; height: 86px;
  display: grid; place-items: center; padding: 18px;
  transition: border-color 0.3s, transform 0.6s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s, opacity 0.6s;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
}
.dirA2-brand-cell.is-developed { opacity: 1; transform: translateY(0) scale(1); }
.dirA2-brand-cell:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 14px 34px rgba(74,163,217,0.28); }
.dirA2-brand-cell img {
  max-height: 36px; max-width: 100%; object-fit: contain;
  filter: none;
  transition: filter 1.2s cubic-bezier(0.16,1,0.3,1);
}
.dirA2-brand-cell.is-developed img { filter: none; }
.dirA2-brand-cell:hover img { filter: drop-shadow(0 0 14px rgba(74,163,217,0.4)); }

/* ─── 6. Engagements (scrub wheel) ─── */
.dirA2-engagements { padding-bottom: 0; }
.dirA2-engagement-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 120px;
}
.dirA2-engagement-sticky {
  position: sticky;
  top: 12vh;
  align-self: start;
  height: 76vh;
}
.dirA2-scrub-stage { position: relative; width: 100%; height: 100%; }
.three-scrub-canvas { position: absolute; inset: 0; }
.three-scrub-canvas canvas { display: block; width: 100% !important; height: 100% !important; }
.dirA2-scrub-shadow {
  position: absolute; left: 10%; right: 10%; bottom: 12%;
  height: 24px;
  background: radial-gradient(ellipse, rgba(20,33,61,0.35), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.dirA2-scrub-progress {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 14px;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--blue);
  letter-spacing: 0.06em;
}
.dirA2-scrub-dots { display: flex; gap: 6px; }
.dirA2-scrub-dots span {
  width: 24px; height: 3px; border-radius: 2px;
  background: var(--line-strong);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.dirA2-scrub-dots span.is-on {
  background: var(--blue);
  box-shadow: 0 0 10px rgba(45,123,168,0.5);
}

.dirA2-engagement-steps { display: flex; flex-direction: column; gap: 16vh; padding-top: 8vh; padding-bottom: 12vh; }
.dirA2-engagement-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 30px;
  box-shadow: 0 4px 16px rgba(20,33,61,0.04);
  opacity: 0.6;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1), box-shadow 0.6s, border-color 0.6s;
  position: relative;
}
.dirA2-engagement-step.is-active {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 24px 60px rgba(45,123,168,0.18);
  border-color: rgba(45,123,168,0.35);
}
.dirA2-engagement-step.is-past { opacity: 0.7; }
.dirA2-engagement-step.is-active::before {
  content: ''; position: absolute; top: 0; left: 30px; right: 30px; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--sky));
  border-radius: 999px;
}
.dirA2-engagement-step-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.dirA2-engagement-step-num { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }
.dirA2-engagement-step-metric { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: var(--blue); padding: 4px 10px; background: rgba(45,123,168,0.08); border: 1px solid rgba(45,123,168,0.2); border-radius: 6px; letter-spacing: 0.04em; }
.dirA2-engagement-step h3 { font-size: 26px; margin-bottom: 12px; display: inline-flex; align-items: center; gap: 12px; }
.dirA2-engagement-step h3 i {
  display: inline-grid; place-items: center; width: 42px; height: 42px;
  border-radius: 11px; background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white; font-size: 18px; box-shadow: 0 6px 16px rgba(20,33,61,0.2);
}
.dirA2-engagement-step p { font-size: 15.5px; color: var(--muted); line-height: 1.6; }

/* Engagements — mobile fallback */
.dirA2-engagements-mobile { display: grid; gap: 16px; }
.dirA2-engagement-card { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.dirA2-engagement-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.dirA2-engagement-top i {
  display: inline-grid; place-items: center; width: 42px; height: 42px;
  border-radius: 11px; background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white; font-size: 18px;
}
.dirA2-engagement-metric { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: var(--blue); padding: 4px 10px; background: rgba(45,123,168,0.08); border-radius: 6px; }
.dirA2-engagement-card h4 { font-size: 18px; margin-bottom: 8px; }
.dirA2-engagement-card p { font-size: 14px; color: var(--muted); }

/* ─── 7. Testimonials — editorial vertical stack ─── */
.dirA2-testimonials { padding: 110px 0 120px; background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dirA2-testi-stack { display: flex; flex-direction: column; gap: 50px; max-width: 1080px; margin: 0 auto; }
.dirA2-testi-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 44px;
  align-items: start;
  margin: 0;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.dirA2-testi-row:first-child { border-top: 0; padding-top: 0; }
.dirA2-testi-row-right { grid-template-columns: 1fr 220px; }
.dirA2-testi-row-right .dirA2-testi-meta { order: 2; }
.dirA2-testi-row-right blockquote { order: 1; text-align: right; }
.dirA2-testi-meta { display: flex; flex-direction: column; gap: 4px; padding-top: 8px; }
.dirA2-testi-num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 8px; }
.dirA2-testi-stars { color: var(--sky); letter-spacing: 2px; font-size: 13px; margin-bottom: 10px; }
.dirA2-testi-meta strong { font-size: 16px; color: var(--navy); font-weight: 700; }
.dirA2-testi-role { font-size: 13.5px; color: var(--muted); }
.dirA2-testi-co { font-size: 13.5px; color: var(--navy); font-weight: 500; margin-top: 4px; font-family: 'Newsreader', serif; font-style: italic; }
.dirA2-testi-fleet { font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: var(--blue); margin-top: 8px; padding: 3px 8px; background: rgba(45,123,168,0.08); border-radius: 4px; align-self: flex-start; }
.dirA2-testi-row blockquote {
  font-family: 'Newsreader', 'Source Serif Pro', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.01em;
  position: relative;
  text-wrap: pretty;
}
.dirA2-testi-quote-mark {
  font-size: 1.4em; color: var(--blue);
  font-style: normal; line-height: 0;
  vertical-align: -0.15em;
  margin: 0 0.1em;
}
.dirA2-testi-quote-end { vertical-align: -0.15em; }

/* ─── 8. B2B fleet ─── */
.dirA2-b2b { padding: 110px 0; background: var(--navy); color: white; position: relative; overflow: hidden; }
.dirA2-b2b::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(74,163,217,0.5), transparent); }
.dirA2-b2b::after { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(74,163,217,0.18), transparent 60%); border-radius: 50%; filter: blur(60px); }
.dirA2-b2b-beams { display: none; }
@media (prefers-reduced-motion: no-preference) {
  .dirA2-b2b-beams { display: block; position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
  .dirA2-b2b-beams::before, .dirA2-b2b-beams::after {
    content: ''; position: absolute; left: 0; width: 38%; height: 220px;
    background: radial-gradient(ellipse at center, rgba(74,163,217,0.16), transparent 70%);
    filter: blur(34px);
    animation: dirA2Beam 17s linear infinite;
  }
  .dirA2-b2b-beams::before { top: 16%; }
  .dirA2-b2b-beams::after { top: 52%; animation-duration: 24s; animation-delay: -11s; }
}
@keyframes dirA2Beam {
  from { transform: translateX(-110%); }
  to   { transform: translateX(380%); }
}
.dirA2-b2b-fleet-layer { position: absolute; left: 0; right: 0; bottom: 0; height: 220px; opacity: 0.45; pointer-events: none; }
.dirA2-b2b-fleet-static { display: none; }
@media (max-width: 900px) {
  /* la scène 3D "fleet" ne monte pas sur mobile -> repli statique discret
     (silhouettes de pneus en SVG, aucun coût perf, pas de WebGL) */
  .dirA2-b2b-fleet-layer { opacity: 0.18; height: 180px; }
  .dirA2-b2b-fleet-static { display: block; position: absolute; inset: 0; width: 100%; height: 100%; }
}
.three-fleet-canvas { width: 100%; height: 100%; }
.three-fleet-canvas canvas { display: block; width: 100% !important; height: 100% !important; }
.dirA2-b2b-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.dirA2-b2b h2 { color: white; font-size: clamp(34px, 3.8vw, 50px); }
.dirA2-b2b h2 em { color: var(--sky); }
.dirA2-b2b p { color: rgba(255,255,255,0.72); margin-top: 18px; font-size: 17px; }
.dirA2-b2b-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 32px; }
.dirA2-b2b-bullets span { font-size: 14px; color: rgba(255,255,255,0.88); display: inline-flex; gap: 9px; align-items: center; }
.dirA2-b2b-bullets i { color: var(--sky); font-size: 16px; }
.dirA2-b2b-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.dirA2-b2b-card-tilt { perspective: 1400px; }
.dirA2-b2b-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 24px; backdrop-filter: blur(12px); transform-style: preserve-3d; }
.dirA2-b2b-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 0.04em; text-transform: uppercase; transform: translateZ(20px); }
.dirA2-dot-pulse { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,0.2); animation: dirA2Pulse 2s ease-in-out infinite; }
@keyframes dirA2Pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(74,222,128,0.2); } 50% { box-shadow: 0 0 0 9px rgba(74,222,128,0.05); } }
.dirA2-b2b-rows { display: flex; flex-direction: column; transform: translateZ(15px); }
.dirA2-b2b-row { display: grid; grid-template-columns: 76px 1fr auto; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.06); align-items: center; font-size: 13.5px; }
.dirA2-b2b-row:first-child { border-top: 0; }
.dirA2-b2b-veh { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: var(--sky); font-weight: 500; }
.dirA2-b2b-desc { color: rgba(255,255,255,0.72); }
.dirA2-b2b-status { font-weight: 600; font-size: 12.5px; }
.dirA2-b2b-foot { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; color: rgba(255,255,255,0.72); transform: translateZ(10px); }
.dirA2-b2b-foot strong { color: white; }
.dirA2-b2b-bar { margin-top: 8px; height: 6px; background: rgba(255,255,255,0.1); border-radius: 999px; overflow: hidden; }
.dirA2-b2b-bar div { height: 100%; background: linear-gradient(90deg, var(--blue), var(--sky)); border-radius: 999px; box-shadow: 0 0 12px rgba(74,163,217,0.5); }

/* ─── 9. Footer ─── */
.dirA2-footer { background: var(--ink); color: rgba(255,255,255,0.62); padding: 80px 0 36px; font-size: 14px; position: relative; }
.dirA2-footer-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--sky), var(--blue), var(--sky), transparent);
  background-size: 200% 100%;
  background-position: 100% 0;
  opacity: 0.35;
  transition: opacity 0.6s ease, background-position 1.8s cubic-bezier(0.16,1,0.3,1);
}
.dirA2-footer.is-done .dirA2-footer-bar {
  opacity: 1;
  background-position: 0% 0;
  animation: dirA2FooterPulse 2.2s ease-in-out infinite 1.5s;
}
@keyframes dirA2FooterPulse {
  0%,100% { filter: brightness(1); box-shadow: 0 0 12px rgba(74,163,217,0.2); }
  50%     { filter: brightness(1.4); box-shadow: 0 0 24px rgba(74,163,217,0.5); }
}
.dirA2-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.dirA2-footer-grid h5 { color: white; font-size: 13px; margin-bottom: 18px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.dirA2-footer-grid p { color: rgba(255,255,255,0.55); margin-top: 18px; font-size: 13.5px; }
.dirA2-footer-grid a { display: block; padding: 5px 0; color: rgba(255,255,255,0.62); transition: color 0.15s; }
.dirA2-footer-grid a:hover { color: var(--sky); }
.dirA2-social { display: flex; gap: 10px; margin-top: 22px; }
.dirA2-social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,0.05); padding: 0; font-size: 16px; transition: background 0.2s, color 0.2s; }
.dirA2-social a:hover { background: var(--blue); color: white; }
.dirA2-footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255,255,255,0.4); }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .dirA2-hero-inner, .dirA2-b2b-grid { grid-template-columns: 1fr; }
  .dirA2-hero-visual { height: 480px; }
  .dirA2-engagement-grid { grid-template-columns: 1fr; gap: 30px; }
  .dirA2-engagement-sticky { position: relative; top: auto; height: 420px; }
  .dirA2-engagement-steps { padding-top: 0; padding-bottom: 0; gap: 16px; }
  .dirA2-engagement-step { opacity: 1; transform: none; }
}
@media (max-width: 960px) {
  .dirA2-cat-grid { grid-template-columns: 1fr 1fr; }
  .dirA2-brand-grid { grid-template-columns: repeat(3,1fr); }
  .dirA2-footer-grid { grid-template-columns: 1fr 1fr; }
  .dirA2-nav-links { display: none; }
  .dirA2-testi-row { grid-template-columns: 1fr; gap: 16px; }
  .dirA2-testi-row-right { grid-template-columns: 1fr; }
  .dirA2-testi-row-right .dirA2-testi-meta { order: 1; }
  .dirA2-testi-row-right blockquote { order: 2; text-align: left; }
}
@media (max-width: 600px) {
  .dirA2-cat-grid, .dirA2-footer-grid, .dirA2-b2b-bullets { grid-template-columns: 1fr; }
  /* Finder : 3 sélecteurs côte à côte (labels au-dessus), séparateurs « / » « R »
     masqués, bouton recherche pleine largeur dessous → plus de chevauchement,
     les nombres (315 / 80 / 22.5) restent lisibles */
  .dirA2-finder { padding: 18px; }
  .dirA2-finder-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px 10px; align-items: end; }
  .dirA2-finder-sep { display: none; }
  .dirA2-field select { padding: 11px 34px 11px 12px; background-position: right 10px center; background-size: 14px 14px; }
  .dirA2-finder-row .dirA2-btn-primary { grid-column: 1 / -1; width: 100%; height: 48px; justify-content: center; }
  .dirA2-stats { gap: 24px; }
  .dirA2-brand-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .dirA2-utility-track { animation: none; }
  .dirA2-eyebrow-dot { animation: none; }
  .dirA2-hero-float { animation: none; }
  .dirA2-hero-rings::before { animation: none; }
  .dirA2-dot-pulse { animation: none; }
  .dirA2-footer.is-done .dirA2-footer-bar { animation: none; }
}

/* ─── v3 — cinematic layer ─── */
.dirA2 { position: relative; }

/* Headline clip-path stagger (initial hidden state gated on no-preference so
   reduced-motion / no-JS users always see the text) */
.dirA2-h1-line { display: block; }
.dirA2-h1-line-inner { display: block; }
@media (prefers-reduced-motion: no-preference) {
  .dirA2-h1:not(.is-in) .dirA2-h1-line-inner { clip-path: inset(0 0 110% 0); transform: translateY(28%); }
  .dirA2-h1-line-inner { clip-path: inset(-20% 0 -28% 0); transform: translateY(0); transition: clip-path 0.95s cubic-bezier(0.16,1,0.3,1), transform 0.95s cubic-bezier(0.16,1,0.3,1); }
  .dirA2-h1-line:nth-child(2) .dirA2-h1-line-inner { transition-delay: 0.16s; }
}

/* Curved section transitions — each section curves over the previous one */
.dirA2-curve { position: relative; border-radius: 56px 56px 0 0; margin-top: -56px; border-top: none; z-index: 1; }

/* Custom cursor ring */
.dirA2-cursor {
  position: fixed; top: -18px; left: -18px; width: 36px; height: 36px;
  border: 1.5px solid rgba(45,123,168,0.5); border-radius: 50%;
  pointer-events: none; z-index: 80; opacity: 0;
  transition: width 0.25s, height 0.25s, top 0.25s, left 0.25s, border-color 0.25s, background 0.25s, opacity 0.3s;
  will-change: transform;
}
.dirA2-cursor.is-active { opacity: 1; }
.dirA2-cursor.is-hover {
  width: 56px; height: 56px; top: -28px; left: -28px;
  border-color: var(--sky); background: rgba(74,163,217,0.1);
}
@media (pointer: coarse) { .dirA2-cursor { display: none; } }

/* Odometer stats */
.dirA2-odo { display: inline-flex; align-items: baseline; line-height: 1; }
.dirA2-odo-col { display: inline-block; height: 1em; overflow: hidden; }
.dirA2-odo-strip { display: flex; flex-direction: column; transform: translateY(0); transition: transform 1.5s cubic-bezier(0.16,1,0.3,1); }
.dirA2-odo-strip b { display: block; height: 1em; line-height: 1em; font-weight: inherit; }
.dirA2-odo-sep { display: inline-block; white-space: pre; }
.dirA2-stats strong { line-height: 1.1; display: inline-flex; align-items: baseline; }

/* Scrub continuous progress fill */
.dirA2-scrub-track { width: 120px; height: 3px; border-radius: 2px; background: var(--line-strong); overflow: hidden; }
.dirA2-scrub-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--blue), var(--sky)); border-radius: 2px; }

/* ─── Port Django : conteneurs de scènes & bascule desktop/mobile ─── */
.dirA2-hero-canvas { position: absolute; inset: 0; }
.dirA2-hero-canvas canvas { display: block; width: 100% !important; height: 100% !important; }
#v3-wheel-scrub, #v3-fleet-scene { position: absolute; inset: 0; }
#v3-wheel-scrub canvas, #v3-fleet-scene canvas { display: block; width: 100% !important; height: 100% !important; }
.dirA2-engagements-mobile { display: none; }
@media (max-width: 900px) {
  .dirA2-engagement-grid { display: none; }
  .dirA2-engagements-mobile { display: grid; }
  /* le pneu 3D du héro reste affiché sur mobile ; l'image de repli ne sort
     que si WebGL échoue (règle .is-three-failed plus bas) */
  .dirA2-tire-fallback-mobile { display: none; }
  /* la rangée de roues (fleet) et le scrub des engagements ne montent pas sur
     mobile → l'invite « Faites défiler » n'a pas de scène scrubbable */
  .dirA2-scrub-hint { display: none; }
  /* place pour les cartes engagements : sinon la section suivante (margin
     négatif de la courbe) recouvre et coupe la dernière carte */
  .dirA2-engagements { padding-bottom: 70px; }
  .dirA2-curve, .dirA2-engagements + .dirA2-section { border-radius: 34px 34px 0 0; }
}
@media (min-width: 901px) { .dirA2-tire-fallback-mobile { display: none; } }
.dirA2-faq { padding-top: 0; }
.dirA2-faq .accordion { max-width: 880px; margin: 0 auto; }

/* Fallback when WebGL/Three.js fails to mount */
.dirA2-tire-stage.is-three-failed .dirA2-tire-fallback-mobile { display: block; }
.dirA2-scrub-stage.is-three-failed::before {
  content: ''; position: absolute; inset: 12%;
  background: url("../img/tires-hero.2e96373b68f1.avif") center/contain no-repeat;
  filter: drop-shadow(0 30px 50px rgba(20,33,61,0.35));
}

/* ─── v3 round 3 — héro cinématique sombre + profondeur couleur ───
   Le héro passe sur fond ink→navy (miroir de la section B2B) : le pneu
   photoréaliste ressort au rim-light, le finder devient une console
   claire posée sur la scène sombre. */
.dirA2-hero {
  background: linear-gradient(178deg, var(--ink) 0%, var(--navy) 55%, var(--navy-2) 100%);
  padding: 88px 0 120px;
}
.dirA2-hero .dirA2-hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
}
.dirA2-hero-rings { opacity: 0.5; }
.dirA2-hero-rings::before { border-color: rgba(74,163,217,0.35); }
.dirA2-hero-rings::after { border-color: rgba(125,189,230,0.25); }
.dirA2-hero .dirA2-h1 { color: white; }
.dirA2-hero .dirA2-h1-accent {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-soft) 100%);
  -webkit-background-clip: text; background-clip: text;
}
.dirA2-hero .dirA2-lead { color: rgba(255,255,255,0.74); }
.dirA2-hero .dirA2-eyebrow { color: var(--sky-soft); background: rgba(74,163,217,0.14); border-color: rgba(74,163,217,0.4); }
.dirA2-hero .dirA2-eyebrow-dot { background: var(--sky); box-shadow: 0 0 8px rgba(74,163,217,0.8); }

/* Finder = console claire sur scène sombre */
.dirA2-hero .dirA2-finder {
  background: rgba(247,249,252,0.95);
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 24px 70px rgba(4,8,20,0.5), 0 1px 0 rgba(255,255,255,0.9) inset;
}
.dirA2-hero .dirA2-finder::before {
  background: linear-gradient(135deg, rgba(74,163,217,0.55), transparent 50%, rgba(125,189,230,0.4));
}

/* Stats sur sombre */
.dirA2-hero .dirA2-stats strong { color: white; }
.dirA2-hero .dirA2-stats > div > span { color: rgba(255,255,255,0.58); }
.dirA2-hero .dirA2-stat-out { color: rgba(255,255,255,0.45); }
/* finder-foot reste DANS la console claire — couleurs sombres lisibles */
.dirA2-hero .dirA2-finder-foot { color: var(--muted); }
.dirA2-hero .dirA2-finder-foot a { color: var(--navy); text-decoration-color: rgba(45,123,168,0.45); }
.dirA2-hero .dirA2-finder-foot a:hover { color: var(--blue); text-decoration-color: var(--blue); }

/* Carte produit & badge garantie : repères clairs sur la scène */
.dirA2-hero .dirA2-hero-card { box-shadow: 0 30px 80px rgba(4,8,20,0.55); border-color: rgba(255,255,255,0.65); }
.dirA2-hero .dirA2-hero-float { background: var(--navy-2); border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 16px 40px rgba(4,8,20,0.5); }
.dirA2-hero .dirA2-tire-glow { background: radial-gradient(circle, rgba(74,163,217,0.28) 0%, transparent 62%); }

/* Transition héro sombre → première section papier */
.dirA2-hero + .dirA2-section {
  position: relative; border-radius: 56px 56px 0 0; margin-top: -56px;
  background: var(--paper); z-index: 1;
}

/* Profondeur des sections claires : bandeau dégradé sur les engagements */
.dirA2-engagements { background: linear-gradient(180deg, white 0%, var(--paper-2) 100%); }

/* ── v3 round 3 — délégué CSS ── */

/* 2a. Brand marquee (continuous scroll) */
.dirA2-brand-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 60px, black calc(100% - 60px), transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 60px, black calc(100% - 60px), transparent); }
.dirA2-brand-track { display: flex; width: max-content; gap: 14px; animation: dirA2BrandScroll 38s linear infinite; }
.dirA2-brand-set { display: flex; gap: 14px; }
.dirA2-brand-set .dirA2-brand-cell { min-width: 170px; }
.dirA2-brand-marquee:hover .dirA2-brand-track { animation-play-state: paused; }
@keyframes dirA2BrandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 7px)); }
}
@media (prefers-reduced-motion: reduce) {
  .dirA2-brand-track { animation: none; flex-wrap: wrap; }
  .dirA2-brand-set[aria-hidden="true"] { display: none; }
}

/* 2b. Finder panels */
.dirA2-finder-panel { background: var(--paper); border-radius: 12px; padding: 18px; }
.dirA2-finder-choice { display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: white; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 10px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.dirA2-finder-choice:last-child { margin-bottom: 0; }
.dirA2-finder-choice > i:first-child { color: var(--sky); font-size: 20px; }
.dirA2-finder-choice > span { display: flex; flex-direction: column; flex: 1; }
.dirA2-finder-choice > span strong { color: var(--navy); font-size: 15px; }
.dirA2-finder-choice > span small { display: block; color: var(--muted); font-size: 12.5px; }
.dirA2-finder-choice > i:last-child { margin-left: auto; color: var(--blue); }
.dirA2-finder-choice:hover { border-color: var(--blue); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(45,123,168,0.12); }
.dirA2-finder-brands { display: flex; flex-wrap: wrap; gap: 8px; }
.dirA2-finder-brand { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: white; font-size: 13.5px; font-weight: 600; color: var(--navy); transition: border-color 0.2s, color 0.2s; }
.dirA2-finder-brand:hover { border-color: var(--blue); color: var(--blue); }
.dirA2-finder-brand-all { background: var(--navy); color: white; border-color: var(--navy); }

/* 2c. Conseils strip (blog cards) */
.dirA2-advice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dirA2-advice-card { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 10px; transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s; }
.dirA2-advice-card:hover { transform: translateY(-3px); border-color: var(--blue); box-shadow: 0 12px 32px rgba(45,123,168,0.14); }
.dirA2-advice-kicker { font-family: 'IBM Plex Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sky); }
.dirA2-advice-card h3 { font-size: 17px; color: var(--navy); line-height: 1.35; margin: 0; }
.dirA2-advice-link { font-size: 13.5px; font-weight: 600; color: var(--blue); }
@media (max-width: 900px) {
  .dirA2-advice-grid { grid-template-columns: 1fr; }
}

/* 2d. Contrast & accents */
.dirA2-hero-card a.dirA2-btn-mini, .dirA2-hero-card .dirA2-btn-mini { background: var(--sky); color: var(--ink); }
.dirA2-hero-card .dirA2-btn-mini:hover { background: var(--sky-soft); color: var(--ink); }
.dirA2-faq { background: var(--paper-2); }
.dirA2-hero .dirA2-stats strong { background: linear-gradient(90deg, #7dbde6, #4AA3D9); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dirA2-testi-quote-mark { font-size: 54px; color: var(--sky); opacity: 0.85; }
.dirA2-testi-fleet, .dirA2-cat-tag, .dirA2-tag, .dirA2-b2b-veh { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── v3 round 5 — rythme des sections + engagements studio sombre + vignettes blog ── */

/* Hero : scène 3D élargie derrière le texte, pneu plus grand */
.dirA2-hero .dirA2-tire-stage { inset: -20px -80px 70px -150px; z-index: 0; }
@media (max-width: 900px) {
  /* layout 1 colonne : on recadre la scène (sinon les insets négatifs
     desktop décalent le pneu vers le haut/gauche et le coupent en haut) */
  .dirA2-hero .dirA2-tire-stage { inset: 24px 0 70px 0; }
}
.dirA2-hero .dirA2-hero-card, .dirA2-hero .dirA2-hero-float { z-index: 2; }

/* Engagements : studio sombre — l'alu poli et le pneu lisent sur fond navy */
.dirA2-engagements { background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 55%, var(--ink) 100%); }
.dirA2-engagements .dirA2-section-head h2 { color: white; }
.dirA2-engagements .dirA2-section-head p { color: rgba(255,255,255,0.62); }
.dirA2-engagements .dirA2-eyebrow-dim { color: var(--sky-soft); }
.dirA2-scrub-shadow { background: radial-gradient(ellipse, rgba(0,0,0,0.55), transparent 70%); }
.dirA2-scrub-progress { color: var(--sky-soft); }
.dirA2-scrub-track { background: rgba(255,255,255,0.16); }
.dirA2-scrub-dots span { background: rgba(255,255,255,0.18); }
.dirA2-scrub-dots span.is-on { background: var(--sky); box-shadow: 0 0 10px rgba(74,163,217,0.7); }
.dirA2-engagement-step { border-color: rgba(255,255,255,0.1); box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.dirA2-engagement-step.is-active { border-color: rgba(74,163,217,0.5); box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.dirA2-engagements .dirA2-engagement-card { box-shadow: 0 16px 40px rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.1); }

/* Transition courbe : engagements sombre → section claire suivante */
.dirA2-engagements + .dirA2-section {
  position: relative; border-radius: 56px 56px 0 0; margin-top: -56px;
  z-index: 1;
}

/* Conseils / blog : bande teintée ciel + cartes avec vignette */
.dirA2-advice { background: linear-gradient(180deg, #eef3f9 0%, #e2ebf5 100%); }
.dirA2-advice-card { padding: 0; overflow: hidden; }
.dirA2-advice-thumb { aspect-ratio: 16 / 9; overflow: hidden; }
.dirA2-advice-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.dirA2-advice-card:hover .dirA2-advice-thumb img { transform: scale(1.05); }
.dirA2-advice-kicker { padding: 16px 22px 0; }
.dirA2-advice-card h3 { padding: 0 22px; }
.dirA2-advice-link { padding: 0 22px 18px; }

/* ── v3 round 6 — respiration marques → engagements ── */
.dirA2-section-tight:has(.dirA2-brand-marquee) { padding: 64px 0 96px; border-bottom: 0; }
.dirA2-engagements { padding-top: 110px; }

/* ── Avis clients — bandeau défilant (calqué sur la marquee marques) ── */
.dirA2-reviews { background: linear-gradient(180deg, #f4f8fc 0%, #eaf1f8 100%); }
.dirA2-reviews .dirA2-brand-head { margin-bottom: 4px; }
.dirA2-review-marquee {
  overflow: hidden; margin-top: 24px; padding: 8px 0 4px;
  mask-image: linear-gradient(90deg, transparent, black 80px, black calc(100% - 80px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 80px, black calc(100% - 80px), transparent);
}
.dirA2-review-track { display: flex; width: max-content; gap: 18px; animation: dirA2ReviewScroll 110s linear infinite; }
.dirA2-review-set { display: flex; gap: 18px; }
.dirA2-review-marquee:hover .dirA2-review-track { animation-play-state: paused; }
@keyframes dirA2ReviewScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 9px)); }
}
.dirA2-review-card {
  width: 340px; flex: 0 0 340px; box-sizing: border-box; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  background: white; border: 1px solid var(--line); border-radius: 16px;
  padding: 24px 26px; box-shadow: 0 6px 20px rgba(20,40,80,0.05);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.dirA2-review-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 16px 38px rgba(45,123,168,0.16); }
.dirA2-review-stars { display: flex; gap: 3px; color: #f5a623; font-size: 15px; }
.dirA2-review-stars .bi-star { color: var(--line); }
.dirA2-review-body { flex: 1; margin: 0; font-size: 14.5px; line-height: 1.62; color: var(--ink); font-style: normal; }
.dirA2-review-body::before { content: "“"; }
.dirA2-review-body::after { content: "”"; }
.dirA2-review-meta { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--line); padding-top: 12px; }
.dirA2-review-author { font-weight: 700; font-size: 14px; color: var(--navy); }
.dirA2-review-role { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
@media (prefers-reduced-motion: reduce) {
  .dirA2-review-track { animation: none; flex-wrap: wrap; }
  .dirA2-review-set[aria-hidden="true"] { display: none; }
}
@media (max-width: 600px) {
  .dirA2-review-card { width: 284px; flex-basis: 284px; padding: 20px 22px; }
}
