/* =================================================================
   PIXEL PROS — Style global
   Mix pixel art + moderne. 3 paliers de luminosité (slider).
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Inter:wght@400;500;600;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

:root {
  /* couleurs accent — fixes peu importe le mode */
  --blue: #0ea5ff;
  --yellow: #facc15;
  --green: #22c55e;
  --red: #ef4444;
  --pink: #ec4899;

  /* variables qui changent avec le slider de luminosité */
  --bg: #fff8ed;
  --bg-elev: #ffffff;
  --bg-shadow: rgba(11, 13, 26, 0.08);
  --fg: #0b0d1a;
  --fg-muted: #51546b;
  --line: #e8e2d1;
  --ink-shadow: #0b0d1a;
  --halo-blue: rgba(14, 165, 255, 0.12);
  --halo-yellow: rgba(250, 204, 21, 0.18);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  --shadow-pixel: 6px 6px 0 var(--ink-shadow);
  --shadow-pixel-sm: 4px 4px 0 var(--ink-shadow);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  overflow-x: hidden;
  transition: background-color .25s ease, color .25s ease;
  background-image:
    radial-gradient(circle at 12% 18%, var(--halo-blue) 0%, transparent 38%),
    radial-gradient(circle at 88% 70%, var(--halo-yellow) 0%, transparent 42%);
}

.pixel { font-family: 'Press Start 2P', monospace; letter-spacing: .02em; }

/* ====================== HEADER ====================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: 'Press Start 2P', monospace;
  font-size: 13px;
  color: var(--fg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.logo .pix { color: var(--yellow); text-shadow: 2px 2px 0 var(--ink-shadow); }
.logo-img {
  display: inline-flex;
  align-items: center;
  transition: transform .15s;
}
.logo-img:hover { transform: translate(-1px, -1px) scale(1.02); }
.logo-img img {
  height: 72px;
  width: auto;
  display: block;
  image-rendering: pixelated;
}
@media (max-width: 520px) {
  .logo-img img { height: 52px; }
}

.nav { display: flex; align-items: center; gap: 28px; }
.header-tools { display: flex; align-items: center; gap: 18px; }
.nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color .15s;
}
.nav a:hover { color: var(--blue); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--ink-shadow) !important;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-pixel-sm);
  font-weight: 800 !important;
  transition: transform .12s, box-shadow .12s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink-shadow); }
.nav-cta:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink-shadow); }

/* ====================== SLIDER LUMINOSITÉ ====================== */

.brightness-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brightness-icon {
  font-size: 14px;
  color: var(--fg-muted);
  user-select: none;
  font-family: 'Press Start 2P', monospace;
}
.brightness-track {
  position: relative;
  width: 140px;
  height: 22px;
  border-radius: 999px;
  cursor: pointer;
  touch-action: none;
  user-select: none;
  border: 2px solid var(--ink-shadow);
  outline: none;
  background: linear-gradient(90deg,
    #fff4d1 0%,
    #ffd870 20%,
    #ff9d4a 45%,
    #6b4880 68%,
    #1f2545 85%,
    #070a14 100%);
}
.brightness-track:focus-visible { box-shadow: 0 0 0 3px var(--blue); }
.brightness-thumb {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 2px solid var(--ink-shadow);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: left .12s ease-out;
  box-shadow: 2px 2px 0 var(--ink-shadow);
}

/* ====================== BOUTONS ====================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--r-md);
  transition: transform .12s, box-shadow .12s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink-shadow);
  box-shadow: 6px 6px 0 var(--blue);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--blue); }
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--blue); }

.btn-secondary {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--fg);
  box-shadow: 6px 6px 0 var(--green);
}
.btn-secondary:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--green); }
.btn-secondary:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--green); }

.btn-big { padding: 22px 40px; font-size: 18px; }

/* ====================== HERO ====================== */

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 32px 60px;
  text-align: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Press Start 2P', monospace;
  background: var(--green);
  color: var(--ink-shadow);
  padding: 8px 14px;
  font-size: 9px;
  letter-spacing: .05em;
  margin-bottom: 32px;
  box-shadow: 3px 3px 0 var(--bg-elev), 6px 6px 0 var(--red);
  border-radius: 4px;
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.highlight {
  background: var(--yellow);
  color: var(--ink-shadow);
  padding: 0 12px;
  display: inline-block;
  transform: rotate(-1.5deg);
  box-shadow: 6px 6px 0 var(--blue);
}
.text-blue { color: var(--blue); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }

.hero .lead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
  color: var(--fg-muted);
  max-width: 660px;
  margin: 0 auto 40px;
  text-wrap: balance;
}

.price-stamp {
  display: inline-block;
  margin-bottom: 36px;
}
.price-stamp .line {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: var(--green);
  margin-bottom: 8px;
  letter-spacing: .1em;
}
.price-stamp .price {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 72px);
  color: var(--fg);
  line-height: 1;
}
.price-stamp .price small {
  font-size: .35em;
  color: var(--fg-muted);
  font-weight: 600;
}
.price-stamp-slim {
  margin: 18px auto 30px;
  padding: 10px 22px;
  background: var(--bg-elev);
  border: 2px solid var(--ink-shadow);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink-shadow);
}
.price-stamp-slim .line { margin-bottom: 0; font-size: 10px; }

.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .trust {
  margin-top: 28px;
  font-size: 14px;
  color: var(--fg-muted);
}
.hero .trust strong { color: var(--fg); }

/* ====================== DÉCO PIXEL FLOTTANTE ====================== */

.deco-pixel {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  animation: floaty 3.4s ease-in-out infinite;
}
.deco-pixel::before,
.deco-pixel::after {
  content: '';
  position: absolute;
  inset: 0;
}
.deco-pixel.c-yellow { background: var(--yellow); box-shadow: -7px 0 0 var(--yellow), 7px 0 0 var(--yellow), 0 -7px 0 var(--yellow), 0 7px 0 var(--yellow); }
.deco-pixel.c-green  { background: var(--green);  box-shadow: -7px 0 0 var(--green),  7px 0 0 var(--green),  0 -7px 0 var(--green),  0 7px 0 var(--green); }
.deco-pixel.c-blue   { background: var(--blue);   box-shadow: -7px 0 0 var(--blue),   7px 0 0 var(--blue),   0 -7px 0 var(--blue),   0 7px 0 var(--blue); }
.deco-pixel.c-red    { background: var(--red);    box-shadow: -7px 0 0 var(--red),    7px 0 0 var(--red),    0 -7px 0 var(--red),    0 7px 0 var(--red); }
@keyframes floaty { 50% { transform: translateY(-14px) rotate(-4deg); } }

/* ====================== SECTIONS GÉNÉRIQUES ====================== */

.section { padding: 80px 32px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: var(--blue);
  letter-spacing: .15em;
  margin-bottom: 14px;
  display: inline-block;
}
.section-head h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.02em;
  text-wrap: balance;
  margin-bottom: 16px;
}
.section-head p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto;
  text-wrap: balance;
}

/* ====================== SECTION CASSER LES CODES ====================== */

.manifest {
  background: var(--bg-elev);
  border: 2px solid var(--ink-shadow);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  box-shadow: 10px 10px 0 var(--blue);
  position: relative;
  overflow: hidden;
}
.manifest::before {
  content: '✦';
  position: absolute;
  top: -10px;
  right: 30px;
  font-size: 80px;
  color: var(--yellow);
  opacity: .15;
}
.manifest h2 {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 28px;
  text-wrap: balance;
}
.manifest h2 strong { background: var(--green); color: var(--ink-shadow); padding: 0 8px; }
.manifest p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-muted);
  margin-bottom: 18px;
  max-width: 760px;
  text-wrap: pretty;
}
.manifest p:last-of-type { margin-bottom: 0; }
.manifest p strong { color: var(--fg); }

/* ====================== INCLUS — GRILLE ====================== */

/* Wrapper de section avec décorations pixel en fond */
#inclus { position: relative; overflow: hidden; }
#inclus::before, #inclus::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  z-index: 0;
  opacity: .45;
  image-rendering: pixelated;
  pointer-events: none;
}
#inclus::before {
  background: var(--yellow);
  box-shadow:
    0 320px 0 var(--blue),
    20px 540px 0 var(--green),
    -30px 760px 0 var(--red);
  top: 280px; left: 16px;
}
#inclus::after {
  background: var(--green);
  box-shadow:
    -20px 380px 0 var(--red),
    10px 600px 0 var(--blue),
    -10px 820px 0 var(--yellow);
  top: 280px; right: 16px;
}
@media (max-width: 720px) {
  #inclus::before, #inclus::after { display: none; }
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: inc;
  position: relative;
  z-index: 1;
}
.inc-card {
  background: var(--bg-elev);
  border: 2px solid var(--ink-shadow);
  border-radius: var(--r-lg);
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s cubic-bezier(.2,.7,.3,1.2), box-shadow .2s;
  position: relative;
  overflow: hidden;
  counter-increment: inc;
}

/* Petit ruban diagonal pixel-art en haut droit, couleur tournante */
.inc-card::before {
  content: '';
  position: absolute;
  top: -22px; right: -22px;
  width: 60px; height: 60px;
  background: var(--accent, var(--yellow));
  transform: rotate(45deg);
  z-index: 0;
}
/* Numéro 01..08 dans le coin haut-droit */
.inc-card::after {
  content: counter(inc, decimal-leading-zero);
  position: absolute;
  top: 10px; right: 10px;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--ink-shadow);
  z-index: 1;
  letter-spacing: .04em;
}

.inc-card > * { position: relative; z-index: 1; }

.inc-card:nth-child(4n+1) { box-shadow: 4px 4px 0 var(--yellow); --accent: var(--yellow); }
.inc-card:nth-child(4n+2) { box-shadow: 4px 4px 0 var(--blue);   --accent: var(--blue); }
.inc-card:nth-child(4n+3) { box-shadow: 4px 4px 0 var(--green);  --accent: var(--green); }
.inc-card:nth-child(4n)   { box-shadow: 4px 4px 0 var(--red);    --accent: var(--red); }

.inc-card:hover {
  transform: translate(-3px, -3px) rotate(-.4deg);
  box-shadow: 8px 8px 0 var(--accent), 12px 12px 0 var(--ink-shadow);
}
.inc-card:hover .inc-icon {
  transform: scale(1.1) rotate(-6deg);
}
.inc-icon {
  transition: transform .25s cubic-bezier(.4,1.6,.5,1);
}

@media (max-width: 920px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .included-grid { grid-template-columns: 1fr; }
}
.inc-icon {
  width: 44px; height: 44px;
  background: var(--bg);
  border: 2px solid var(--yellow);
  border-radius: var(--r-sm);
  font-family: 'Press Start 2P', monospace;
  font-size: 16px;
  color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  box-shadow: 3px 3px 0 var(--blue);
}
.inc-card:nth-child(2n) .inc-icon { border-color: var(--green); color: var(--green); box-shadow: 3px 3px 0 var(--red); }
.inc-card:nth-child(3n) .inc-icon { border-color: var(--blue);  color: var(--blue);  box-shadow: 3px 3px 0 var(--yellow); }
.inc-card:nth-child(5n) .inc-icon { border-color: var(--red);   color: var(--red);   box-shadow: 3px 3px 0 var(--green); }
.inc-title { font-weight: 800; font-size: 17px; margin-bottom: 6px; }
.inc-text { font-size: 15px; color: var(--fg-muted); line-height: 1.5; }

/* ====================== ÉTAPES ====================== */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
}
.step {
  background: var(--bg-elev);
  border: 2px solid var(--ink-shadow);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-pixel-sm);
  position: relative;
}
.step-num {
  position: absolute;
  top: -18px;
  left: 22px;
  background: var(--ink-shadow);
  color: var(--yellow);
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
}
.step h3 { font-weight: 800; font-size: 19px; margin: 14px 0 8px; }
.step p { font-size: 15px; color: var(--fg-muted); line-height: 1.55; }

/* ====================== UPSELLS ====================== */

.upsells {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/* Variante 3 cartes côte à côte avec la combo au milieu, mise en avant */
.upsells-three {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .upsells-three { grid-template-columns: 1fr; }
}

/* =================================================================
   CARTE COMBO en mode "upsell" (compacte, côte à côte avec les autres)
   ================================================================= */

.upsell.upsell-combo {
  position: relative;
  isolation: isolate;
  border: 3px solid var(--ink-shadow);
  box-shadow: 8px 8px 0 var(--yellow), 14px 14px 0 var(--ink-shadow);
  transform: translateY(-12px);
  background: var(--bg-elev);
  border-radius: var(--r-xl);
  padding: 38px 24px 26px;
  z-index: 2;
  overflow: visible;  /* on autorise le badge à dépasser au-dessus */
}
.upsell.upsell-combo:hover {
  transform: translateY(-16px);
  box-shadow: 11px 11px 0 var(--yellow), 17px 17px 0 var(--ink-shadow);
}

/* Halo coloré fixe derrière la carte (pas d'animation rotate, c'est l'effet de base déjà joli) */
.upsell-combo > .combo-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: conic-gradient(from 45deg, var(--yellow), var(--red), var(--blue), var(--green), var(--yellow));
  filter: blur(22px);
  opacity: .5;
  z-index: -1;
  pointer-events: none;
}

/* Badge "OFFRE EXCLUSIVE" en pastille rouge au-dessus de la carte */
.combo-burst-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--red);
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  padding: 8px 14px;
  border-radius: 6px;
  border: 2px solid var(--ink-shadow);
  box-shadow: 3px 3px 0 var(--ink-shadow);
  z-index: 3;
  white-space: nowrap;
  animation: combo-pulse 1.8s ease-in-out infinite;
}
@keyframes combo-pulse {
  0%, 100% { transform: translateX(-50%) rotate(-2deg) scale(1); }
  50%      { transform: translateX(-50%) rotate(-2deg) scale(1.05); }
}

/* Mini countdown sous le badge */
.combo-countdown-mini {
  margin-bottom: 18px;
  padding: 10px 12px;
  background: color-mix(in oklab, var(--red) 8%, var(--bg-elev));
  border: 1px dashed var(--red);
  border-radius: 8px;
  text-align: center;
  line-height: 1.4;
}
.combo-mini-label {
  display: block;
  font-size: 11.5px;
  color: var(--fg-muted);
}
.combo-mini-label strong { color: var(--red); font-weight: 700; }
.combo-mini-time {
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: var(--red);
  margin-top: 6px;
  letter-spacing: .04em;
  font-weight: 900;
}

/* Titre */
.combo-h3 {
  text-align: center;
  font-weight: 900;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.combo-name {
  background: var(--yellow);
  padding: 2px 10px;
  border-radius: 4px;
  box-shadow: 3px 3px 0 var(--blue);
  display: inline-block;
}

/* Bloc prix noir avec 49,90€ en gros jaune */
.combo-price-box {
  background: var(--ink-shadow);
  color: #fff;
  padding: 18px 14px;
  border-radius: 12px;
  margin-bottom: 18px;
  text-align: center;
}
.combo-price-old {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}
.combo-strike { text-decoration: line-through; text-decoration-thickness: 2px; }
.combo-old-lbl { color: rgba(255,255,255,.5); }
.combo-price-new {
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 38px);
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -.02em;
}
.combo-price-new .combo-amount {
  display: inline-block;
  text-shadow: 2px 2px 0 var(--blue);
}
.combo-price-new .combo-unit {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-top: 6px;
  text-shadow: none;
  letter-spacing: 0;
}
.combo-save-line {
  margin-top: 12px;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  letter-spacing: .04em;
  color: var(--green);
}
.combo-save-line strong { color: var(--yellow); }

/* Liste des inclus avec checkmark vert */
.combo-includes-mini {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.combo-line-mini {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.combo-check {
  width: 26px; height: 26px;
  background: var(--green);
  color: var(--ink-shadow);
  border: 2px solid var(--ink-shadow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}
.combo-line-mini strong {
  display: block;
  font-weight: 800;
  font-size: 13.5px;
  margin-bottom: 2px;
  color: var(--fg);
}
.combo-line-mini em {
  font-style: normal;
  font-size: 12.5px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.combo-val {
  color: var(--red);
  text-decoration: line-through;
  font-weight: 700;
}

/* CTA principal de la combo */
.combo-cta-final {
  display: block;
  text-align: center;
  background: var(--yellow);
  color: var(--ink-shadow);
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 15px;
  padding: 16px 18px;
  border: 2px solid var(--ink-shadow);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--blue);
  transition: transform .15s, box-shadow .15s;
}
.combo-cta-final:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--blue);
}
.combo-cta-final:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--blue);
}

.combo-tiny {
  margin-top: 12px !important;
  text-align: center;
  font-size: 11.5px;
  color: var(--fg-muted) !important;
}

/* Sur mobile : pas de translateY pour rester aligné */
@media (max-width: 1024px) {
  .upsell.upsell-combo { transform: none; margin-top: 14px; }
  .upsell.upsell-combo:hover { transform: translateY(-3px); }
}

/* Halo coloré animé en arrière-plan, contenu dans son parent */
.combo-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: conic-gradient(from 0deg, var(--yellow), var(--red), var(--blue), var(--green), var(--yellow));
  filter: blur(24px);
  opacity: .5;
  z-index: -1;
  pointer-events: none;
}
/* Halo fixe, pas d'animation rotate */

.combo-inner {
  background: var(--bg-elev);
  border: 3px solid var(--ink-shadow);
  border-radius: 24px;
  padding: 50px 44px 36px;
  box-shadow: 10px 10px 0 var(--ink-shadow);
  position: relative;
  overflow: hidden;
}

.combo-burst {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--red);
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  padding: 10px 22px;
  border-radius: 6px;
  border: 2px solid var(--ink-shadow);
  box-shadow: 3px 3px 0 var(--ink-shadow);
  z-index: 5;
  white-space: nowrap;
  animation: combo-pulse 1.8s ease-in-out infinite;
}
@keyframes combo-pulse {
  0%, 100% { transform: translateX(-50%) rotate(-2deg) scale(1); }
  50%      { transform: translateX(-50%) rotate(-2deg) scale(1.05); }
}

.combo-countdown {
  text-align: center;
  margin-bottom: 28px;
  padding: 14px;
  background: color-mix(in oklab, var(--red) 8%, var(--bg));
  border: 2px dashed var(--red);
  border-radius: 12px;
}
.combo-countdown-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.combo-countdown-label strong { color: var(--red); font-weight: 800; }
.combo-countdown-time {
  display: inline-block;
  font-family: 'Press Start 2P', monospace;
  font-size: 16px;
  color: var(--red);
  letter-spacing: .04em;
  font-weight: 900;
}

.combo-head {
  text-align: center;
  margin-bottom: 28px;
}
.combo-head h3 {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.combo-name {
  background: var(--yellow);
  padding: 2px 12px;
  border-radius: 6px;
  box-shadow: 3px 3px 0 var(--blue);
  display: inline-block;
}
.combo-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Bloc prix bien mis en avant */
.combo-price {
  text-align: center;
  margin: 28px 0;
  padding: 24px 18px;
  background: var(--ink-shadow);
  color: #fff;
  border-radius: 14px;
  position: relative;
}
.combo-price-old {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}
.combo-strike { text-decoration: line-through; text-decoration-thickness: 2px; }
.combo-old-lbl { color: rgba(255,255,255,.5); }
.combo-price-new {
  font-weight: 900;
  font-size: clamp(40px, 6vw, 60px);
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -.02em;
}
.combo-price-new .combo-amount {
  display: inline-block;
  text-shadow: 3px 3px 0 var(--blue);
}
.combo-price-new .combo-unit {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-top: 8px;
  text-shadow: none;
  letter-spacing: 0;
}
.combo-save {
  margin-top: 16px;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--green);
}
.combo-save strong { color: var(--yellow); font-size: 12px; }

/* Liste de ce qui est inclus */
.combo-includes {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}
.combo-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 12px;
}
.combo-check {
  width: 30px; height: 30px;
  background: var(--green);
  color: var(--ink-shadow);
  border: 2px solid var(--ink-shadow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}
.combo-line strong {
  display: block;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--fg);
}
.combo-line em {
  font-style: normal;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.45;
}
.combo-val {
  display: inline-block;
  margin-left: 6px;
  color: var(--red);
  text-decoration: line-through;
  font-weight: 700;
}

/* CTA principal */
.combo-cta {
  display: block;
  text-align: center;
  background: var(--yellow);
  color: var(--ink-shadow);
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 20px;
  padding: 22px 28px;
  border: 3px solid var(--ink-shadow);
  border-radius: 14px;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 6px 6px 0 var(--ink-shadow), 12px 12px 0 var(--blue);
  transition: transform .15s, box-shadow .15s;
}
.combo-cta:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink-shadow), 15px 15px 0 var(--blue);
}
.combo-cta:active {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink-shadow), 9px 9px 0 var(--blue);
}

.combo-tiny {
  text-align: center;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--fg-muted);
}

/* Séparateur "ou prends séparément" */
.upsells-or {
  text-align: center;
  margin: 32px 0 24px;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--fg-muted);
}

@media (max-width: 720px) {
  .combo-inner { padding: 40px 22px 30px; box-shadow: 6px 6px 0 var(--ink-shadow); }
  .combo-cta { font-size: 17px; padding: 18px 22px; box-shadow: 4px 4px 0 var(--ink-shadow), 8px 8px 0 var(--blue); }
  .combo-line { padding: 12px 14px; }
}
.upsell {
  background: var(--bg-elev);
  border: 2px solid var(--ink-shadow);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: 8px 8px 0 var(--ink-shadow);
  position: relative;
  overflow: hidden;
}
.upsell.upsell-domain { box-shadow: 8px 8px 0 var(--green); }
.upsell.upsell-seo    { box-shadow: 8px 8px 0 var(--red); }

.upsell-tag {
  display: inline-block;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  padding: 6px 12px;
  background: var(--ink-shadow);
  color: var(--yellow);
  border-radius: 4px;
  margin-bottom: 16px;
  letter-spacing: .1em;
}
.upsell h3 {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.upsell .upsell-price {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--fg);
  margin: 14px 0 18px;
  line-height: 1;
}
.upsell .upsell-price small { font-size: 14px; color: var(--fg-muted); font-weight: 600; }
.upsell p {
  font-size: 15.5px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.upsell p code {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  background: var(--line);
  color: var(--fg);
  padding: 3px 6px;
  border-radius: 4px;
  white-space: nowrap;
  display: inline-block;
}
.upsell ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.upsell li {
  font-size: 15px;
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--fg);
}
.upsell li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--green);
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
}

/* ====================== FAQ ====================== */

.faq { max-width: 800px; margin: 0 auto; }
.faq { counter-reset: faq; display: grid; gap: 12px; }

.faq-item {
  background: var(--bg-elev);
  border: 2px solid var(--ink-shadow);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  transition: transform .15s, box-shadow .15s;
}
/* Couleurs d'ombre + accent : tournent toutes les 4 questions */
.faq-item:nth-child(4n+1) { box-shadow: 4px 4px 0 var(--yellow); --accent: var(--yellow); }
.faq-item:nth-child(4n+2) { box-shadow: 4px 4px 0 var(--blue);   --accent: var(--blue); }
.faq-item:nth-child(4n+3) { box-shadow: 4px 4px 0 var(--green);  --accent: var(--green); }
.faq-item:nth-child(4n)   { box-shadow: 4px 4px 0 var(--red);    --accent: var(--red); }

.faq-item:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--accent);
}
.faq-item[open] {
  background: color-mix(in oklab, var(--accent) 5%, var(--bg-elev));
}

.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }

/* Petit numéro à gauche, discret */
.faq-item summary::before {
  counter-increment: faq;
  content: counter(faq, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: var(--accent);
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 4px;
  padding: 5px 6px;
  flex-shrink: 0;
  letter-spacing: .04em;
}

/* + / - sobre, juste accentué de la couleur */
.faq-item summary::after {
  content: '+';
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  color: var(--accent);
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s;
  margin-left: auto;
}
.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary span,
.faq-item summary {
  /* le texte de question prend la place dispo */
}

.faq-item p {
  padding: 0 26px 22px 26px;
  font-size: 16px;
  color: var(--fg);
  line-height: 1.65;
  animation: faq-open .25s ease-out;
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ====================== CTA FINAL ====================== */

.cta-final {
  text-align: center;
  background: var(--ink-shadow);
  color: #fff;
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,255,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.cta-final-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.cta-final h2 {
  font-weight: 900;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  color: #fff;
  text-wrap: balance;
}
.cta-final h2 .yellow { color: var(--yellow); }
.cta-final p {
  font-size: 19px;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  text-wrap: balance;
}
.cta-final .price-line {
  font-family: 'Press Start 2P', monospace;
  color: var(--green);
  font-size: 14px;
  margin-bottom: 28px;
  letter-spacing: .1em;
}

/* ====================== FOOTER ====================== */

.site-footer {
  background: var(--bg);
  border-top: 2px solid var(--line);
  padding: 50px 32px 30px;
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-inner a { color: var(--fg-muted); text-decoration: none; margin-right: 18px; }
.footer-inner a:hover { color: var(--blue); }

/* ====================== RESPONSIVE ====================== */

@media (max-width: 860px) {
  .nav { display: none; }
}
@media (max-width: 520px) {
  .nav-cta { display: none; }
  .brightness-track { width: 100px; }
}
@media (max-width: 720px) {
  .header-inner { padding: 14px 18px; gap: 12px; }
  .header-tools { gap: 12px; }
  .brightness-track { width: 110px; }
  .hero { padding: 60px 20px 40px; }
  .section { padding: 60px 20px; }
  .manifest { padding: 36px 24px; box-shadow: 6px 6px 0 var(--blue); }
  .upsell { box-shadow: 6px 6px 0 var(--ink-shadow); }
  .cta-final { padding: 70px 20px; }
}

/* ====================== SECTION VISITE GUIDÉE / DÉMO ====================== */

.section-demo { background: var(--bg-elev); }

.demo-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.demo-promo-text h2 {
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  margin: 14px 0 18px;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.demo-promo-text p {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 14px;
  text-wrap: pretty;
}
.demo-promo-text p strong { color: var(--fg); }
.demo-promo-text .btn-row { margin-top: 26px; }

.demo-promo-preview {
  position: relative;
  display: block;
  text-decoration: none;
}
.demo-carousel-track {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.demo-carousel-slide {
  display: none;
  text-decoration: none;
  animation: demo-slide-in .35s cubic-bezier(.2,.7,.3,1);
}
.demo-carousel-slide.is-current { display: block; }
.demo-carousel-slide.is-leaving { animation: demo-slide-out .25s cubic-bezier(.2,.7,.3,1); }
@keyframes demo-slide-in {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes demo-slide-out {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-30px); }
}

.demo-preview-frame {
  background: var(--bg-elev);
  border: 3px solid var(--ink-shadow);
  border-radius: 14px;
  box-shadow: 10px 10px 0 var(--blue);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.demo-carousel-slide:hover .demo-preview-frame {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 var(--blue);
}

/* FLÈCHES */
.demo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 3px solid var(--ink-shadow);
  color: var(--ink-shadow);
  font-size: 14px;
  font-weight: 900;
  font-family: 'Press Start 2P', monospace;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 var(--ink-shadow);
  transition: transform .12s, box-shadow .12s, background .15s, color .15s;
  padding: 0;
}
.demo-arrow:hover { background: var(--yellow); transform: translateY(-50%) translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink-shadow); }
.demo-arrow:active { transform: translateY(-50%) translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink-shadow); }
.demo-arrow-prev { left: -22px; }
.demo-arrow-next { right: -22px; }

@media (max-width: 480px) {
  .demo-arrow { width: 38px; height: 38px; font-size: 11px; }
  .demo-arrow-prev { left: -8px; }
  .demo-arrow-next { right: -8px; }
}

/* COMPTEUR + LIEN EXPLORER */
.demo-carousel-meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.demo-carousel-count {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: .08em;
}
.demo-carousel-count strong { color: var(--blue); }
.demo-carousel-trade {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--ink-shadow);
  background: var(--yellow);
  padding: 6px 10px;
  border-radius: 4px;
  border: 2px solid var(--ink-shadow);
  letter-spacing: .04em;
}
.demo-carousel-explore {
  margin-left: auto;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--blue);
  text-decoration: none;
}
.demo-carousel-explore:hover { color: var(--ink-shadow); text-decoration: underline; }
.demo-preview-dots {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: #1a1410;
  border-bottom: 2px solid var(--ink-shadow);
}
.demo-preview-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ffffff33;
}
.demo-preview-dots span:nth-child(1) { background: #e9b949; }
.demo-preview-dots span:nth-child(2) { background: #c0392b; }
.demo-preview-dots span:nth-child(3) { background: #22c55e; }

.demo-preview-body { padding: 0; }
.demo-preview-hero {
  background-color: #c0392b;
  color: #fff;
  padding: 28px 22px;
  text-align: center;
}
.demo-preview-eyebrow {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  letter-spacing: .08em;
  color: var(--accent, #e9b949);
  margin-bottom: 10px;
}
.demo-preview-title {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.demo-preview-cta {
  display: inline-block;
  background: var(--cta-bg, #e9b949);
  color: var(--cta-fg, #1a1410);
  padding: 7px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
}
.demo-preview-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f3ead9;
  padding: 12px 8px;
  border-bottom: 1px solid #e5dac5;
  gap: 4px;
  font-size: 9.5px;
  text-align: center;
  color: #6b5d50;
}
.demo-preview-trust strong {
  display: block;
  color: var(--num, #c0392b);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 2px;
}
.demo-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 8px;
  background: #fbf6ee;
}
.demo-preview-grid div {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(192,57,43,.85), rgba(233,185,73,.85)),
              repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 6px, transparent 6px 12px);
  border-radius: 4px;
}
.demo-preview-cta-overlay {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--blue);
}

@media (max-width: 820px) {
  .demo-promo { grid-template-columns: 1fr; gap: 32px; }
  .demo-preview-frame { box-shadow: 6px 6px 0 var(--blue); }
  .demo-promo-preview:hover .demo-preview-frame { box-shadow: 9px 9px 0 var(--blue); }
}

/* =================================================================
   RESPONSIVE MOBILE — règles globales pour viewports étroits
   ================================================================= */

@media (max-width: 720px) {
  /* HEADER : nav principale masquée, slider luminosité réduit, CTA compact */
  .header-inner { padding: 12px 14px; gap: 10px; }
  .nav { display: none; }
  .brightness-track { width: 80px; }
  .brightness-icon { font-size: 12px; }
  .nav-cta { padding: 8px 12px; font-size: 13px; }

  /* HERO compact */
  .hero { padding: 60px 18px 50px; }
  .hero h1 { font-size: clamp(34px, 9vw, 56px); }
  .hero .lead { font-size: 16px; }
  .price-stamp-slim { padding: 8px 14px; }
  .price-stamp-slim .line { font-size: 9px; letter-spacing: .05em; }

  /* BOUTONS plus compacts pour ne pas déborder */
  .btn { padding: 14px 18px; font-size: 14px; gap: 6px; }
  .btn-big { padding: 18px 22px; font-size: 15px; }
  .btn-row { gap: 10px; }
  .btn-row .btn { flex: 1 1 auto; min-width: 0; justify-content: center; white-space: nowrap; }

  /* SECTIONS : padding interne réduit */
  .section { padding: 50px 0; }
  .section-inner { padding: 0 16px; }
  .section-head h2 { font-size: clamp(26px, 6.5vw, 36px); }

  /* INCLUS : single column propre */
  .included-grid { grid-template-columns: 1fr; gap: 14px; }
  .inc-card { padding: 22px 18px 22px; }

  /* DÉMO PREVIEW : adapter padding */
  .section-demo .section-inner { padding: 0 16px; }
  .demo-preview-frame { box-shadow: 5px 5px 0 var(--blue); }
  .demo-preview-grid div { aspect-ratio: 4/3; }
  .demo-arrow-prev { left: 4px; }
  .demo-arrow-next { right: 4px; }

  /* COMBO mobile compact */
  .upsell-combo { margin-bottom: 24px; }
  .combo-inner { padding: 36px 18px 22px; box-shadow: 5px 5px 0 var(--ink-shadow); }
  .combo-glow { filter: blur(16px); opacity: .35; }
  .combo-burst { font-size: 9px; padding: 7px 12px; top: -12px; }
  .combo-countdown { padding: 10px; }
  .combo-countdown-time { font-size: 13px; }
  .combo-price { padding: 16px 12px; }
  .combo-price-new { font-size: clamp(32px, 9vw, 44px); }
  .combo-line { padding: 10px 12px; gap: 10px; }
  .combo-check { width: 26px; height: 26px; font-size: 14px; }
  .combo-line em { font-size: 13px; }
  .combo-cta { font-size: 16px; padding: 16px 18px; box-shadow: 4px 4px 0 var(--ink-shadow), 8px 8px 0 var(--blue); }

  /* UPSELLS : single col */
  .upsells { grid-template-columns: 1fr; gap: 16px; }
  .upsell { padding: 26px 22px; }

  /* CTA FINAL */
  .cta-final { padding: 60px 16px; }
  .cta-final h2 { font-size: clamp(28px, 7vw, 40px); }

  /* FAQ */
  .faq-item summary { padding: 16px 18px; font-size: 14.5px; }
  .faq-item summary::before { font-size: 8px; padding: 4px 5px; }
  .faq-item summary::after { width: 22px; height: 22px; font-size: 12px; }
  .faq-item p { padding: 0 18px 18px; font-size: 14.5px; }

  /* FOOTER */
  .footer-inner { padding: 24px 16px; gap: 14px; flex-direction: column; text-align: center; }

  /* STEPS (Comment ça marche) */
  .steps { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 480px) {
  /* Variations encore plus serrées pour les téléphones étroits */
  .header-inner { padding: 10px 12px; gap: 8px; }
  .brightness-wrap { gap: 4px; }
  .brightness-track { width: 60px; }
  .logo-img img { height: 44px; }
  .nav-cta { padding: 7px 10px; font-size: 12px; }
  .hero .price-stamp-slim .line { font-size: 8px; }
  .btn-row .btn { width: 100%; flex: 1 1 100%; }
}

/* Préfère-réduit-le-mouvement */
@media (prefers-reduced-motion: reduce) {
  .deco-pixel { animation: none; }
  .annot-pin { animation: none !important; }
}
