/* Timelapse-3D · Clean Pro Design v9 */
/* Garantit que l'attribut HTML hidden n'est jamais override par display:flex/grid */
[hidden] { display: none !important; }
:root {
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --surface: #ffffff;
  --surface-accent: #f1f5f9;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --teal: #0d9488;
  --teal-d: #0f766e;
  --teal-soft: #ccfbf1;
  --violet: #7c3aed;
  --violet-soft: #ede9fe;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.06);
  --shadow-lg: 0 20px 40px -8px rgb(0 0 0 / 0.12);
  --font: "DM Sans", system-ui, sans-serif;
  --max: 1200px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
p { margin: 0; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* ── Header ── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 180; padding: 1.25rem 0; transition: all 0.3s; }
.header--scrolled { background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); padding: 0.75rem 0; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo__img { width: 2.25rem; height: 2.25rem; }
.logo__brand { color: var(--ink); font-weight: 800; font-size: 1.2rem; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { color: var(--muted); font-weight: 600; text-decoration: none; transition: color 0.2s; font-size: 0.9rem; }
.nav a:hover { color: var(--teal); }
.header--scrolled .nav a { color: var(--muted); }
.nav .btn--primary { color: #fff !important; font-weight: 700; }

/* ── Burger / Mobile nav ── */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 2.75rem; height: 2.75rem;
  background: var(--teal); border: none; border-radius: 8px;
  cursor: pointer; padding: 0.35rem; flex-shrink: 0; z-index: 200;
}
.nav-burger span {
  display: block; width: 20px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 140; opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.nav-overlay.is-visible { opacity: 1; pointer-events: all; }

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav {
    position: fixed; top: 65px; right: -320px; width: 300px;
    height: calc(100vh - 65px);
    background: #fff; flex-direction: column; align-items: flex-start;
    gap: 0; padding: 1.5rem 1.5rem 2rem; z-index: 160;
    box-shadow: -10px 0 50px rgba(0,0,0,0.2);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
  }
  .nav.is-open { right: 0; }
  .nav-overlay { display: block; top: 65px; }
  .nav a {
    width: 100%; padding: 1.1rem 0; font-size: 1.05rem;
    color: var(--ink) !important; border-bottom: 1px solid var(--line);
    background: none !important;
  }
  .nav a:last-of-type { border-bottom: none; }
  .nav .btn--primary {
    display: flex; width: 100%; margin-top: 1.5rem;
    justify-content: center; border-radius: 10px;
    color: #fff !important; background: var(--teal) !important;
    border: none !important;
  }
  /* Header always visible on mobile */
  .header { background: rgba(255,255,255,0.97) !important; border-bottom: 1px solid var(--line); }
}

/* ── Lien retour catalogue ── */
.back-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--muted); font-size: 0.82rem; font-weight: 600;
  text-decoration: none; padding: 0.4rem 0.75rem;
  border: 1.5px solid var(--line); border-radius: 8px;
  background: #fff; transition: all 0.2s; white-space: nowrap;
  flex-shrink: 0;
}
.back-link:hover { color: var(--teal); border-color: var(--teal); }
.back-link i { font-size: 0.75rem; }
@media (max-width: 480px) { .back-link__label { display: none; } }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.875rem 1.75rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; border: none; transition: all 0.2s; text-decoration: none; white-space: nowrap;
}
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 4px 14px rgba(13,148,136,.35); }
.btn--primary:hover { background: var(--teal-d); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(13,148,136,.25); }
.btn--outline { background: #fff; border: 1.5px solid var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--teal); color: var(--teal); }
.btn--submit { position: relative; overflow: hidden; }
.btn--submit::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent); transform: translateX(-100%); transition: transform 0.5s; }
.btn--submit:hover::after { transform: translateX(100%); }

/* ── Hero ── */
.hero {
  padding: 9rem 0 5rem;
  background: radial-gradient(ellipse at 75% 15%, var(--teal-soft), transparent 45%),
              radial-gradient(ellipse at 10% 85%, var(--violet-soft), transparent 45%);
  position: relative; overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; text-align: center; } }

.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; background: var(--teal-soft); color: var(--teal-d);
  border-radius: 99px; font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--teal); }

/* Ticker d'exemples */
.hero-ticker { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.ticker-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.9rem; border-radius: 99px; font-size: 0.82rem; font-weight: 600;
  border: 1.5px solid var(--line); background: #fff; color: var(--muted);
  cursor: default; transition: all 0.2s;
}
.ticker-pill--active { background: var(--ink); color: #fff; border-color: var(--ink); }
.ticker-pill i { font-size: 0.75rem; }

.hero__lead { font-size: 1.1rem; color: var(--muted); margin-bottom: 2rem; max-width: 520px; }
@media (max-width: 900px) { .hero__lead { margin-inline: auto; } }
.hero__visual { position: relative; }
.hero__main-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 900px) { .hero__actions { justify-content: center; } }

/* Stats band sous le hero */
.stats-band {
  background: var(--ink); color: #fff;
  padding: 1.5rem 0;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; text-align: center;
}
@media (max-width: 700px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }
.stat__num { display: block; font-size: 2rem; font-weight: 900; color: var(--teal); line-height: 1; }
.stat__label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }

/* Scanner section */
.scanner-section {
  padding: 5rem 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.scanner-section::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(13,148,136,0.15), transparent 70%);
  pointer-events: none;
}
.scanner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 900px) { .scanner-grid { grid-template-columns: 1fr; text-align: left; } }
.scanner-grid h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 1.5rem; }
.scanner-grid h2 em { font-style: normal; color: var(--teal); }
.scanner-grid p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2rem; }
.scanner-list { list-style: none; padding: 0; margin: 0 0 2.5rem; display: grid; gap: 1rem; }
.scanner-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255,255,255,0.85); font-size: 0.95rem; text-align: left; }
.scanner-list li i { color: var(--teal); margin-top: 0.2rem; flex-shrink: 0; }

.scanner-visual {
  background: #1e293b; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  position: relative; border: 1px solid rgba(255,255,255,0.1);
}
.scan-obj { font-size: 5rem; color: var(--teal); position: relative; z-index: 2; animation: scanPulse 3s ease-in-out infinite; }
.scan-beam {
  position: absolute; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--teal), transparent);
  box-shadow: 0 0 12px var(--teal), 0 0 30px rgba(13,148,136,0.3);
  animation: beamScan 2.5s ease-in-out infinite;
  z-index: 3;
}
.scan-grid-lines {
  position: absolute; inset: 0; opacity: 0.08;
  background: linear-gradient(rgba(13,148,136,1) 1px, transparent 1px),
              linear-gradient(90deg, rgba(13,148,136,1) 1px, transparent 1px);
  background-size: 30px 30px;
}
.scan-dots { position: absolute; inset: 0; z-index: 1; }
.scan-dot {
  position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--teal);
  animation: dotFade 2.5s ease-in-out infinite;
}
@keyframes beamScan { 0% { top: 5%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 95%; opacity: 0; } }
@keyframes scanPulse { 0%, 100% { filter: drop-shadow(0 0 8px rgba(13,148,136,0.4)); } 50% { filter: drop-shadow(0 0 20px rgba(13,148,136,0.7)); } }
@keyframes dotFade { 0%, 100% { opacity: 0; } 50% { opacity: 1; } }

/* ── Sections ── */
.section { padding: 6rem 0; }
.section--alt { background: var(--bg-alt); }
.section--sim { background: var(--bg-alt); border-top: 1px solid var(--line); }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; text-align: center; }
.section-title em { font-style: normal; color: var(--teal); }
.section-intro { text-align: center; color: var(--muted); margin-bottom: 4rem; font-size: 1.05rem; max-width: 640px; margin-inline: auto; }

/* ── Input Paths (3 voies d'entrée) ── */
.input-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 900px) { .input-paths { grid-template-columns: 1fr; } }

.input-path {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 2px solid var(--line);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s;
}
.input-path:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.input-path--green:hover { border-color: #22c55e; }
.input-path--blue:hover  { border-color: #3b82f6; }
.input-path--teal:hover  { border-color: var(--teal); }

.input-path__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
.input-path__icon {
  width: 3.25rem; height: 3.25rem; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  flex-shrink: 0;
}
.input-path--green .input-path__icon { background: #f0fdf4; color: #16a34a; }
.input-path--blue  .input-path__icon { background: #eff6ff; color: #2563eb; }
.input-path--teal  .input-path__icon { background: var(--teal-soft); color: var(--teal-d); }

.input-path__tag {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.25rem 0.7rem; border-radius: 99px;
}
.input-path__tag--green  { background: #f0fdf4; color: #16a34a; }
.input-path__tag--blue   { background: #eff6ff; color: #2563eb; }
.input-path__tag--teal   { background: var(--teal-soft); color: var(--teal-d); }

.input-path h3 { font-size: 1.2rem; margin: 0; }
.input-path p  { font-size: 0.9rem; color: var(--muted); margin: 0; flex: 1; }

.input-path__list { list-style: none; padding: 0; display: grid; gap: 0.4rem; margin: 0.25rem 0 1rem; }
.input-path__list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); }
.input-path--green .input-path__list li i { color: #22c55e; }
.input-path--blue  .input-path__list li i { color: #3b82f6; }
.input-path--teal  .input-path__list li i { color: var(--teal); }

/* ── Source cards (formulaire étape 1) ── */
/* Type grid — 5 cartes avec scan */
.type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
@media (max-width: 600px) { .type-grid { grid-template-columns: repeat(2, 1fr); } }

.type-card--scan { border-color: var(--teal) !important; }
.type-card--scan i { color: var(--teal) !important; }
.type-card--scan.type-card--active { background: var(--teal) !important; border-color: var(--teal) !important; color: #fff; }
.type-card--scan.type-card--active i,
.type-card--scan.type-card--active strong,
.type-card--scan.type-card--active span { color: #fff !important; }

.scan-only-notice {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: var(--teal-soft); border: 1px solid rgba(13,148,136,0.3);
  border-radius: 10px; padding: 0.9rem 1rem;
  font-size: 0.85rem; color: var(--teal-d); margin-top: 0.75rem;
  animation: slideIn 0.3s ease;
}
.scan-only-notice i { flex-shrink: 0; margin-top: 0.15rem; }

.source-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
@media (max-width: 540px) { .source-grid { grid-template-columns: 1fr; } }

.source-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  padding: 1.25rem 0.75rem; border: 2px solid var(--line); border-radius: 12px;
  cursor: pointer; text-align: center; background: var(--bg-alt); transition: all 0.2s;
}
.source-card i { font-size: 1.5rem; color: var(--muted); transition: color 0.2s; }
.source-card strong { font-size: 0.88rem; color: var(--ink); }
.source-card span { font-size: 0.75rem; color: var(--muted); line-height: 1.2; }
.source-card:hover { border-color: var(--teal); }
.source-card:hover i { color: var(--teal); }
.source-card--active { border-color: var(--teal) !important; background: var(--teal-soft) !important; }
.source-card--active i { color: var(--teal) !important; }

/* ── Process Conversion ── */
.conversion-story { text-align: center; }
.conversion-visual { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 850px) { .conversion-visual { grid-template-columns: 1fr; gap: 2rem; } .cv-arrow { transform: rotate(90deg); } }
.cv-card { background: #fff; padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--line); transition: all 0.3s; }
.cv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.cv-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); margin-bottom: 1.5rem; }
.cv-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.cv-card p { font-size: 0.9rem; color: var(--muted); }
.cv-arrow { color: var(--line); font-size: 1.5rem; }
.wireframe-box { width: 100%; aspect-ratio: 4/3; background: #f8fafc; display: flex; align-items: center; justify-content: center; border: 2px dashed var(--teal); border-radius: var(--radius); margin-bottom: 1.5rem; }
.wireframe-box i { font-size: 3rem; color: var(--teal); opacity: 0.4; }

/* ════════════════════════════════════════
   WIZARD FORMULAIRE
════════════════════════════════════════ */
.wizard-wrap { max-width: 800px; margin: 0 auto; }

/* Progress bar */
.wiz-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 3rem;
}
.wiz-step {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  position: relative; cursor: default;
}
.wiz-dot {
  width: 3rem; height: 3rem; border-radius: 50%;
  border: 2px solid var(--line); background: #fff; color: var(--muted);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: all 0.4s;
}
.wiz-step--active .wiz-dot { background: var(--teal); border-color: var(--teal); color: #fff; box-shadow: 0 0 0 6px var(--teal-soft); }
.wiz-step--done .wiz-dot { background: var(--teal-d); border-color: var(--teal-d); color: #fff; }
.wiz-step span { font-size: 0.8rem; font-weight: 700; color: var(--muted); }
.wiz-step--active span { color: var(--teal); }
.wiz-line { flex: 1; height: 2px; background: var(--line); min-width: 4rem; max-width: 8rem; transition: background 0.4s; }
.wiz-line--done { background: var(--teal-d); }

/* Panels */
.wiz-grid { position: relative; overflow: hidden; }
.wiz-panel {
  display: none;
  animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.wiz-panel--active { display: block; }
.wiz-panel__inner {
  background: #fff; border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: 0 8px 40px rgba(0,0,0,0.08); border: 1px solid var(--line);
}
@media (max-width: 600px) { .wiz-panel__inner { padding: 1.5rem; } }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.wiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; gap: 1rem; }

/* Type cards */
.type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
@media (max-width: 600px) { .type-grid { grid-template-columns: repeat(2, 1fr); } }
.type-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  padding: 1.25rem 0.75rem; border: 2px solid var(--line); border-radius: var(--radius);
  cursor: pointer; text-align: center; transition: all 0.2s;
  background: var(--bg-alt);
}
.type-card i { font-size: 1.5rem; color: var(--muted); transition: all 0.2s; }
.type-card strong { font-size: 0.9rem; color: var(--ink); }
.type-card span { font-size: 0.75rem; color: var(--muted); line-height: 1.2; }
.type-card:hover { border-color: var(--teal); background: var(--teal-soft); }
.type-card:hover i { color: var(--teal); }
.type-card--active { border-color: var(--teal) !important; background: var(--teal-soft) !important; }
.type-card--active i { color: var(--teal) !important; }

/* Dropzone */
.dropzone {
  border: 2px dashed var(--line); border-radius: 16px; text-align: center;
  cursor: pointer; background: var(--bg-alt); transition: all 0.3s;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; min-height: 180px; padding: 2rem;
}
.dropzone:hover { border-color: var(--teal); background: var(--teal-soft); }
.dropzone__icon { width: 4rem; height: 4rem; border-radius: 16px; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; color: var(--teal); margin-bottom: 0.5rem; box-shadow: var(--shadow); transition: transform 0.3s; }
.dropzone:hover .dropzone__icon { transform: scale(1.1) rotate(-3deg); }
.dropzone strong { font-size: 1rem; color: var(--ink); }
.dropzone span { font-size: 0.85rem; color: var(--muted); }
.dropzone small { font-size: 0.75rem; color: var(--muted); opacity: 0.7; }
.filelist { list-style: none; padding: 0; margin: 0.75rem 0 0; }
.filelist li { display: flex; justify-content: space-between; padding: 0.5rem 0.75rem; background: var(--bg-alt); border-radius: 8px; margin-top: 0.4rem; font-size: 0.85rem; }

/* Material Picker */
.mat-pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
@media (max-width: 580px) { .mat-pick-grid { grid-template-columns: repeat(2, 1fr); } }
.mat-pick {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem; border: 2px solid var(--line); border-radius: var(--radius);
  cursor: pointer; transition: all 0.2s; position: relative; background: var(--bg-alt);
}
.mat-pick:hover { border-color: var(--teal); background: var(--teal-soft); }
.mat-pick--active { border-color: var(--teal) !important; background: var(--teal-soft) !important; }
.mat-pick__swatch { width: 1.5rem; height: 1.5rem; border-radius: 50%; flex-shrink: 0; border: 2px solid rgba(0,0,0,0.1); }
.mat-pick__body { flex: 1; min-width: 0; }
.mat-pick__body strong { display: block; font-size: 0.9rem; color: var(--ink); white-space: nowrap; }
.mat-pick__body span { display: block; font-size: 0.75rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mat-pick__badge { position: absolute; top: -0.5rem; right: 0.5rem; background: var(--teal); color: #fff; font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 99px; white-space: nowrap; }

/* Quantity control */
.qty-control { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; }
.qty-btn { width: 2.75rem; height: 2.75rem; background: var(--bg-alt); border: none; cursor: pointer; font-size: 1.25rem; color: var(--ink); transition: all 0.2s; }
.qty-btn:hover { background: var(--teal-soft); color: var(--teal); }
.qty-input { flex: 1; text-align: center; border: none !important; border-radius: 0 !important; font-size: 1rem; font-weight: 700; background: transparent; padding: 0; height: 2.75rem; }
.qty-input:focus { outline: none; }

/* Form fields */
.field { margin-bottom: 1.5rem; }
.field-label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 0.5rem; color: var(--ink); }
.input, select, textarea {
  width: 100%; background: var(--bg-alt); border: 1.5px solid var(--line);
  border-radius: 10px; padding: 0.75rem 1rem; color: var(--ink);
  font-family: inherit; font-size: 0.95rem; transition: all 0.2s;
}
.input--textarea { resize: vertical; line-height: 1.5; }
.input:focus, select:focus, textarea:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px var(--teal-soft); }

/* Finish cards */
.finish-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
@media (max-width: 500px) { .finish-grid { grid-template-columns: 1fr; } }
.finish-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  padding: 1.5rem 1rem; border: 2px solid var(--line); border-radius: var(--radius);
  cursor: pointer; text-align: center; transition: all 0.2s; background: var(--bg-alt);
}
.finish-card i { font-size: 1.75rem; color: var(--muted); transition: color 0.2s; margin-bottom: 0.25rem; }
.finish-card strong { font-size: 0.9rem; }
.finish-card span { font-size: 0.75rem; color: var(--muted); }
.finish-card b { font-size: 0.85rem; color: var(--teal); margin-top: 0.25rem; }
.finish-card:hover { border-color: var(--teal); background: var(--teal-soft); }
.finish-card:hover i { color: var(--teal); }
.finish-card--active { border-color: var(--teal) !important; background: var(--teal-soft) !important; }
.finish-card--active i { color: var(--teal) !important; }

/* ── Options supplémentaires ── */
.options-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.65rem;
  margin-top: 0.5rem;
}
@media (max-width: 600px) { .options-grid { grid-template-columns: repeat(2, 1fr); } }
.option-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  padding: 1rem 0.6rem; border: 2px solid var(--line); border-radius: var(--radius);
  cursor: pointer; text-align: center; transition: all 0.2s; background: var(--bg-alt);
  position: relative;
}
.option-card input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.option-card i { font-size: 1.4rem; color: var(--muted); transition: color 0.2s; }
.option-card span { font-size: 0.75rem; color: var(--ink); font-weight: 600; line-height: 1.3; }
.option-card b { font-size: 0.78rem; color: var(--teal); margin-top: 0.15rem; }
.option-card:hover { border-color: var(--teal); background: var(--teal-soft); }
.option-card:hover i { color: var(--teal); }
.option-card--checked,
.option-card:has(input:checked) {
  border-color: var(--teal) !important; background: var(--teal-soft) !important;
  box-shadow: 0 0 0 3px rgba(13,148,136,0.15);
}
.option-card:has(input:checked) i { color: var(--teal); }
.option-card--express b { color: #f59e0b; }
.option-card--express:hover, .option-card--express:has(input:checked) {
  border-color: #f59e0b !important; background: #fffbeb !important;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}
.option-card--express:has(input:checked) i { color: #f59e0b; }

/* Note série */
.serie-note {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-top: 0.75rem; padding: 0.75rem 1rem;
  background: linear-gradient(90deg, rgba(13,148,136,0.08), rgba(13,148,136,0.04));
  border-left: 3px solid var(--teal); border-radius: 0 8px 8px 0;
  font-size: 0.82rem; color: var(--ink);
}
.serie-note i { color: var(--teal); margin-top: 0.1rem; flex-shrink: 0; }

/* Recap card */
.recap-card {
  background: var(--teal); color: #fff; border-radius: var(--radius-lg);
  padding: 2rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.recap-card--scan {
  background: linear-gradient(135deg, var(--ink), #1e293b);
  border: 1px solid rgba(45,212,191,0.3);
}
.recap-price { text-align: center; }
.recap-price span { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; margin-bottom: 0.25rem; }
.recap-price strong { font-size: 3.5rem; font-weight: 900; line-height: 1; }
.recap-details { display: flex; flex-wrap: wrap; gap: 1rem; }
.recap-details span { background: rgba(255,255,255,0.15); padding: 0.4rem 0.8rem; border-radius: 99px; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }

/* ════════════════════════════════════════
   MATIÈRES — SHOWCASE STYLE
════════════════════════════════════════ */
.mat-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) { .mat-showcase { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .mat-showcase { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 450px) { .mat-showcase { grid-template-columns: 1fr; } }

.mat-showcase__card {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: #fff; position: relative; transition: all 0.35s cubic-bezier(0.2,1,.3,1);
  cursor: default;
}
.mat-showcase__card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

/* Layers animation (impression 3D effect) */
.mat-showcase__layers {
  height: 8rem; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0; overflow: hidden; position: relative;
}
.mat-showcase__layers .layer {
  height: 1.6rem; width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
}
/* PLA – vert */
.mat-showcase__card--pla .layer { background: #4ade80; }
.mat-showcase__card--pla .layer:nth-child(2) { background: #22c55e; }
.mat-showcase__card--pla .layer:nth-child(3) { background: #16a34a; }
.mat-showcase__card--pla .layer:nth-child(4) { background: #15803d; }
.mat-showcase__card--pla .layer:nth-child(5) { background: #166534; }

/* PETG – bleu */
.mat-showcase__card--petg .layer { background: #7dd3fc; }
.mat-showcase__card--petg .layer:nth-child(2) { background: #38bdf8; }
.mat-showcase__card--petg .layer:nth-child(3) { background: #0ea5e9; }
.mat-showcase__card--petg .layer:nth-child(4) { background: #0284c7; }
.mat-showcase__card--petg .layer:nth-child(5) { background: #0369a1; }

/* ABS – orange */
.mat-showcase__card--abs .layer { background: #fca5a5; }
.mat-showcase__card--abs .layer:nth-child(2) { background: #f87171; }
.mat-showcase__card--abs .layer:nth-child(3) { background: #ef4444; }
.mat-showcase__card--abs .layer:nth-child(4) { background: #dc2626; }
.mat-showcase__card--abs .layer:nth-child(5) { background: #b91c1c; }

/* TPU – violet */
.mat-showcase__card--tpu .layer { background: #c4b5fd; }
.mat-showcase__card--tpu .layer:nth-child(2) { background: #a78bfa; }
.mat-showcase__card--tpu .layer:nth-child(3) { background: #8b5cf6; }
.mat-showcase__card--tpu .layer:nth-child(4) { background: #7c3aed; }
.mat-showcase__card--tpu .layer:nth-child(5) { background: #6d28d9; }

/* Scanner */
.mat-showcase__card--scanner .mat-showcase__layers { display: none; }
.mat-showcase__scan-anim {
  height: 8rem; background: linear-gradient(135deg, #0f172a, #1e293b);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.mat-showcase__scan-anim i { font-size: 3rem; color: var(--teal); position: relative; z-index: 1; }
.scan-line {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  animation: scanAnim 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--teal);
}
@keyframes scanAnim {
  0% { top: 10%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

.mat-showcase__card:hover .layer:nth-child(1) { animation: layerBuild 0.6s ease; }
.mat-showcase__card:hover .layer:nth-child(2) { animation: layerBuild 0.6s 0.08s ease; }
.mat-showcase__card:hover .layer:nth-child(3) { animation: layerBuild 0.6s 0.16s ease; }
.mat-showcase__card:hover .layer:nth-child(4) { animation: layerBuild 0.6s 0.24s ease; }
.mat-showcase__card:hover .layer:nth-child(5) { animation: layerBuild 0.6s 0.32s ease; }
@keyframes layerBuild {
  0% { transform: scaleX(0); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: scaleX(1); }
}

.mat-showcase__content { padding: 1.25rem; }
.mat-showcase__tag { display: inline-block; background: var(--teal-soft); color: var(--teal-d); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.2rem 0.6rem; border-radius: 99px; margin-bottom: 0.5rem; }
.mat-showcase__content h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.mat-showcase__content p { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.75rem; }
.mat-showcase__content ul { list-style: none; padding: 0; display: grid; gap: 0.3rem; }
.mat-showcase__content ul li { font-size: 0.78rem; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; }
.mat-showcase__content ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ── Color selector ── */
.color-mode-tabs { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.color-tab {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1rem; border: 2px solid var(--line); border-radius: 10px;
  background: var(--bg-alt); color: var(--muted); font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: all 0.2s; position: relative;
}
.color-tab:hover { border-color: var(--teal); color: var(--teal); }
.color-tab--active { background: var(--teal-soft); border-color: var(--teal); color: var(--teal-d); }
.color-tab__badge {
  background: var(--teal); color: #fff; font-size: 0.65rem; font-weight: 700;
  padding: 0.1rem 0.45rem; border-radius: 99px; margin-left: 0.25rem;
}

.color-panel { padding: 1rem; background: var(--bg-alt); border-radius: 12px; }
.color-hint { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.75rem; }

.color-swatches { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.swatch {
  width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 3px solid transparent;
  cursor: pointer; transition: all 0.2s; position: relative; flex-shrink: 0;
}
.swatch:hover { transform: scale(1.2); box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.swatch--active { border-color: var(--teal) !important; transform: scale(1.15); box-shadow: 0 0 0 3px var(--teal-soft), 0 4px 10px rgba(0,0,0,0.2); }
.swatch--active::after { content: '✓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 900; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.swatch--custom { background: conic-gradient(#ef4444, #f97316, #eab308, #22c55e, #3b82f6, #8b5cf6, #ef4444); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.75rem; }
.swatch--custom::after { display: none; }

.color-selected-label { font-size: 0.82rem; color: var(--muted); margin: 0; margin-top: 0.5rem; }

.multi-preview {
  display: flex; flex-wrap: wrap; gap: 0.4rem; min-height: 2.5rem;
  padding: 0.75rem; background: #fff; border-radius: 8px; border: 1px solid var(--line);
  align-items: center; margin-top: 0.5rem;
}
.multi-preview .chip {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.6rem 0.3rem 0.4rem;
  border-radius: 99px; font-size: 0.8rem; font-weight: 600;
  background: #fff; border: 1.5px solid var(--line);
  animation: chipIn 0.25s ease;
}
.multi-preview .chip__dot { width: 1rem; height: 1rem; border-radius: 50%; flex-shrink: 0; }
.multi-preview .chip__remove { cursor: pointer; color: var(--muted); font-size: 0.7rem; line-height: 1; padding: 0 0.1rem; border: none; background: none; }
.multi-preview .chip__remove:hover { color: #ef4444; }

@keyframes chipIn { from { opacity: 0; transform: scale(0.7); } to { opacity: 1; transform: scale(1); } }

/* ── Parc machines ── */
.parc-section { background: var(--bg); }
.parc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 900px) { .parc-grid { grid-template-columns: 1fr; } }
.parc-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.parc-text h2 em { font-style: normal; color: var(--teal); }
.parc-text > p { color: var(--muted); font-size: 1rem; margin-bottom: 2rem; }
.parc-specs { display: grid; gap: 1.25rem; }
.parc-spec { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem; background: var(--bg-alt); border-radius: 12px; border: 1px solid var(--line); transition: all 0.2s; }
.parc-spec:hover { border-color: var(--teal); background: var(--teal-soft); }
.parc-spec > i { font-size: 1.25rem; color: var(--teal); margin-top: 0.2rem; flex-shrink: 0; }
.parc-spec strong { display: block; font-size: 0.95rem; margin-bottom: 0.1rem; }
.parc-spec span { display: block; font-size: 0.8rem; color: var(--muted); }

.parc-visual { position: relative; }
.parc-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.parc-badge-float {
  position: absolute; bottom: -1rem; left: 1.5rem;
  background: #fff; border-radius: 12px; padding: 0.75rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.parc-badge-float i { color: var(--teal); font-size: 1.1rem; }
.parc-badge-float strong { display: block; font-size: 0.9rem; }
.parc-badge-float span { display: block; font-size: 0.75rem; color: var(--muted); }

/* ── Nouvelles couches matière ── */
.mat-showcase__card--cf .layer   { background: #334155; }
.mat-showcase__card--cf .layer:nth-child(2) { background: #1e293b; }
.mat-showcase__card--cf .layer:nth-child(3) { background: #0f172a; }
.mat-showcase__card--cf .layer:nth-child(4) { background: #1e293b; }
.mat-showcase__card--cf .layer:nth-child(5) { background: #334155; }

.mat-showcase__card--wood .layer   { background: #a16207; }
.mat-showcase__card--wood .layer:nth-child(2) { background: #854d0e; }
.mat-showcase__card--wood .layer:nth-child(3) { background: #713f12; }
.mat-showcase__card--wood .layer:nth-child(4) { background: #78350f; }
.mat-showcase__card--wood .layer:nth-child(5) { background: #92400e; }

/* ── FAQ ── */
.faq-item { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); margin-bottom: 0.75rem; overflow: hidden; transition: box-shadow 0.2s; }
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item summary { padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--teal); line-height: 1; flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 1.5rem 1.25rem; color: var(--muted); font-size: 0.95rem; }

/* ── Section Professionnels ── */
.pro-section {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2e44 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.pro-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(13,148,136,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(99,102,241,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.pro-inner {
  position: relative;
  max-width: 780px; margin: 0 auto; text-align: center;
}
.pro-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(13,148,136,0.18); border: 1px solid rgba(13,148,136,0.4);
  color: var(--teal); border-radius: 99px;
  padding: 0.4rem 1rem; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 1.5rem;
}
.pro-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: #fff; margin-bottom: 1.25rem; line-height: 1.2;
}
.pro-title em { font-style: normal; color: var(--teal); }
.pro-lead {
  font-size: 1.1rem; color: rgba(255,255,255,0.72);
  line-height: 1.7; margin-bottom: 2rem; max-width: 680px; margin-inline: auto;
}
.pro-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.pro-tags span {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8); border-radius: 99px;
  padding: 0.4rem 0.9rem; font-size: 0.82rem; font-weight: 600;
}
.pro-tags span i { color: var(--teal); font-size: 0.75rem; }
.btn--lg { padding: 1.1rem 2.25rem; font-size: 1rem; }

/* ── Footer ── */
.footer { padding: 4rem 0; background: var(--ink); color: #fff; text-align: center; }
.footer p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.footer a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer a:hover { color: var(--teal); }

/* ── Mobile CTA (devis) ── */
.mobile-cta { display: none; position: fixed; bottom: 5.5rem; left: 1rem; right: 1rem; z-index: 100; }
@media (max-width: 768px) { .mobile-cta { display: block; } }

/* ── Floating call CTA ── */
.float-call {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 300;
  display: flex; align-items: center; gap: 0.65rem;
  background: #16a34a; color: #fff;
  padding: 0.85rem 1.4rem; border-radius: 99px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(22,163,74,0.40);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.float-call:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(22,163,74,0.50); color: #fff; }
.float-call i { font-size: 1.1rem; animation: ringPulse 1.8s ease-in-out infinite; }
@keyframes ringPulse {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
}
/* Sur desktop : affiche le numéro ; sur mobile : icône seule pour ne pas gêner */
@media (max-width: 480px) {
  .float-call { padding: 0.9rem; border-radius: 50%; bottom: 5.75rem; right: 1rem; }
  .float-call__num { display: none; }
  .float-call i { font-size: 1.3rem; }
}

/* ── Materials old grid (kept for fallback) ── */
.mat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.mat-card { background: #fff; padding: 2rem; border-radius: var(--radius); border: 1px solid var(--line); transition: all 0.3s; }
.mat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal); }
.mat-icon { width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center; background: var(--bg-alt); color: var(--teal); border-radius: 12px; font-size: 1.5rem; margin-bottom: 1.5rem; transition: all 0.3s; }
.mat-card:hover .mat-icon { background: var(--teal); color: #fff; transform: scale(1.1); }
.mat-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }

/* ── Animations ── */
[data-aos] { opacity: 0; transform: translateY(20px); transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1); }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   GLOBAL MOBILE FIXES
═══════════════════════════════════════ */
@media (max-width: 600px) {
  /* Pas de débordement horizontal */
  body { overflow-x: hidden; }
  .container { padding: 0 1rem; }

  /* Boutons : pleine largeur, ne débordent jamais */
  .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .hero__actions { flex-direction: column; }
  .wiz-nav { flex-direction: column-reverse; gap: 0.75rem; }
  .wiz-nav .btn { width: 100%; }

  /* Scanner section : padding + pas de débordement du texte */
  .scanner-section { padding: 3rem 0; }
  .scanner-grid { gap: 2rem; padding: 0; }
  .scanner-grid h2 { font-size: 1.8rem; }
  .scanner-grid p { font-size: 0.95rem; }
  .scanner-list { padding: 0; }
  .scanner-list li { font-size: 0.88rem; gap: 0.6rem; }
  .scanner-visual { display: none; } /* masquer le cube animé sur petit écran */

  /* Hero */
  .hero { padding: 7rem 0 3rem; }
  .hero h1 { font-size: 2rem; }
  .hero__lead { font-size: 1rem; }
  .hero-ticker { justify-content: flex-start; }
  .hero__main-img { border-width: 4px; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  /* Input paths */
  .input-paths { grid-template-columns: 1fr; }

  /* Matières showcase */
  .mat-showcase { grid-template-columns: 1fr 1fr; }

  /* Parc section */
  .parc-grid { grid-template-columns: 1fr; gap: 2rem; }
  .parc-visual { display: none; }

  /* Process steps */
  .conversion-visual { grid-template-columns: 1fr; }
  .cv-arrow { display: none; }

  /* Wizard */
  .wiz-progress { gap: 0; }
  .wiz-line { min-width: 1.5rem; }
  .wiz-dot { width: 2.5rem; height: 2.5rem; font-size: 0.85rem; }
  .recap-card { flex-direction: column; align-items: flex-start; }
  .recap-details { flex-direction: column; gap: 0.5rem; }
  .recap-details span { width: 100%; }

  /* Couleurs */
  .color-mode-tabs { flex-direction: row; }
  .mat-pick-grid { grid-template-columns: 1fr 1fr; }
  .finish-grid { grid-template-columns: 1fr; }
  .source-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-item summary { font-size: 0.9rem; }

  /* Section titles */
  .section-title { font-size: 1.8rem; }
  .section { padding: 3.5rem 0; }
}
