/* =========================================================
   VEOZY - components.css
   Navbar pill, boutons, cards, bento, étapes, footer, etc.
   ========================================================= */

/* ---------- Navbar (sticky pill capsule) ---------- */
.nav-wrap {
  position: fixed;
  top: 18px;
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.35s ease;
  will-change: transform;
}
/* Auto-hide : navbar slide vers le haut au scroll-down, revient au scroll-up */
.nav-wrap.nav-hidden {
  transform: translateY(-140%);
  opacity: 0;
}
.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 14px 10px 22px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
  width: min(960px, calc(100% - 32px));
  justify-content: space-between;
}
.nav-pill.scrolled {
  background: rgba(5, 5, 5, 0.88);
  border-color: var(--border-mid);
  transform: scale(0.985);
}

.nav-logo {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--white);
}
.nav-logo .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--orange);
  margin-left: 4px;
  border-radius: 2px;
  box-shadow: 0 0 12px var(--glow-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-1);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(180deg, var(--orange-light) 0%, var(--orange) 100%);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 22px rgba(255,117,31,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255,117,31,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Burger (mobile) */
.nav-burger {
  display: none;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.02);
}
.nav-burger span {
  position: relative;
  display: block;
  width: 18px; height: 2px;
  background: var(--white);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute; left: 0;
  width: 18px; height: 2px;
  background: var(--white);
  transition: transform .25s ease;
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after  { top:  6px; }
.nav-burger.open span { background: transparent; }
.nav-burger.open span::before { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Drawer mobile */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: auto; }
.nav-mobile a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.nav-mobile .nav-cta { margin-top: 12px; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta.desktop { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  background: linear-gradient(180deg, var(--orange-light) 0%, var(--orange) 100%);
  color: #0a0a0a;
  box-shadow:
    0 12px 36px rgba(255,117,31,0.40),
    inset 0 1px 0 rgba(255,255,255,0.28);
  animation: ctaPulse 3s ease-in-out infinite;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 48px rgba(255,117,31,0.55),
    inset 0 1px 0 rgba(255,255,255,0.32);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(110px, 12vw, 150px) 0 clamp(70px, 9vw, 110px);
  overflow: hidden;
}
/* Padding latéral plus généreux sur le hero (le titre ne colle plus aux bords) */
.hero > .container {
  padding-left: clamp(24px, 7vw, 130px);
  padding-right: clamp(24px, 5vw, 80px);
}
.hero::before {
  content: "";
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,117,31,0.22) 0%, transparent 60%);
  filter: blur(60px);
  top: -200px; right: -300px;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
}
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 58%;
}
.hero-eyebrow {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px 11px 18px;
  background:
    linear-gradient(180deg, rgba(255,117,31,0.18) 0%, rgba(255,117,31,0.08) 100%),
    rgba(10,10,10,0.85);
  border: 1px solid rgba(255,117,31,0.55);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  box-shadow:
    0 0 0 1px rgba(255,117,31,0.15),
    0 10px 30px rgba(255,117,31,0.28),
    inset 0 1px 0 rgba(255,255,255,0.08);
  animation: eyebrowGlow 3.2s ease-in-out infinite;
}
.hero-eyebrow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255,117,31,0.5), transparent);
  filter: blur(14px);
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
}
@keyframes eyebrowGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,117,31,0.15), 0 10px 30px rgba(255,117,31,0.28), inset 0 1px 0 rgba(255,255,255,0.08); }
  50%      { box-shadow: 0 0 0 1px rgba(255,117,31,0.30), 0 14px 40px rgba(255,117,31,0.45), inset 0 1px 0 rgba(255,255,255,0.12); }
}
.dot-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: pulseDot 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(1.95rem, 4.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 24px;
}
.hero p.lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--grey-1);
  font-weight: 500;
  max-width: 560px;
  margin: 0 0 36px;
  line-height: 1.6;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Bloc preuve sociale */
.social-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.avatars { display: flex; }
.avatars .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a2a, #444);
  border: 2px solid #0a0a0a;
  margin-left: -10px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.avatars .av:first-child { margin-left: 0; }
.stars {
  display: inline-flex; gap: 2px;
  color: var(--orange);
  filter: drop-shadow(0 0 6px rgba(255,117,31,0.5));
}
.social-proof .count {
  font-weight: 600;
  color: var(--white);
  font-size: 0.92rem;
}
.social-proof .count strong { color: var(--orange); }

/* Hero image (main) - collée au bord droit, pleine hauteur du hero */
.hero-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  max-width: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  /* Force une couche GPU dédiée → rendu plus net (anti subpixel-blur) */
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 960px) {
  .hero-text { max-width: 100%; }
  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 24px;
    opacity: 0.95;
  }
}

/* ---------- Logos bandeau (marquee) ---------- */
.logos {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.logos .label {
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-bottom: 28px;
}
.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track .logo-item {
  height: 54px;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-2);
  opacity: 0.55;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.3rem;
  transition: opacity .25s ease, color .25s ease, filter .25s ease;
  white-space: nowrap;
}
.marquee-track .logo-item:hover { opacity: 1; color: var(--white); }

/* Logos en image (SVG/PNG) - forcés en blanc monochrome, hauteur uniforme */
.marquee-track img.logo-item {
  height: 54px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.marquee-track img.logo-item:hover {
  filter: brightness(0) invert(1);
  opacity: 1;
}

/* ---------- Glow block (pellicule orange discrète englobant 2 sections) ---------- */
.glow-block {
  position: relative;
  margin: 40px clamp(16px, 3vw, 40px);
  border-radius: clamp(28px, 3.5vw, 48px);
  background: linear-gradient(180deg, #0a0a0a 0%, #060606 100%);
  border: 1px solid rgba(255,117,31,0.08);
  box-shadow:
    0 0 30px 2px rgba(255,117,31,0.025),
    0 0 80px 12px rgba(255,117,31,0.018),
    inset 0 0 60px rgba(255,117,31,0.008),
    inset 0 1px 0 rgba(255,255,255,0.03);
  isolation: isolate;
  overflow: hidden;
}
/* Léger glow externe via pseudo-élément (très subtil) */
.glow-block::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255,117,31,0.10) 0%,
    rgba(255,117,31,0.02) 30%,
    rgba(255,117,31,0.02) 70%,
    rgba(255,117,31,0.10) 100%);
  filter: blur(18px);
  opacity: 0.18;
  z-index: -1;
  pointer-events: none;
}
/* Les sections internes : padding réduit pour qu'elles respirent dans le bloc */
.glow-block .section {
  padding: clamp(56px, 8vw, 100px) 0;
}
@media (max-width: 640px) {
  .glow-block { margin: 30px 12px; border-radius: 24px; }
}

/* ---------- Cards (douleurs / bénéfices) ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 60%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
          mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-orange);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.7),
    0 0 60px rgba(255,117,31,0.10),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.card .icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(255,117,31,0.10);
  border: 1px solid var(--border-orange);
  color: var(--orange);
  margin-bottom: 20px;
}

/* Icônes emoji (section "Pour qui ?") - rendues en Twemoji (cross-platform), tilt 3D au hover */
.card .icon-emoji {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1;
  margin-bottom: 20px;
  display: inline-block;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", system-ui, sans-serif;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
  transform-origin: 50% 75%;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.4s ease;
  will-change: transform;
}
/* Twemoji injecte des <img class="emoji"> - on les dimensionne via em pour suivre font-size */
.card .icon-emoji img.emoji {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  display: inline-block;
  margin: 0;
}
.card:hover .icon-emoji {
  transform: perspective(500px) rotateX(-10deg) rotateY(10deg) scale(1.15);
  filter: drop-shadow(0 10px 22px rgba(255,117,31,0.25));
}
.card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.card p { margin: 0; color: var(--grey-2); font-weight: 500; line-height: 1.55; font-size: 0.96rem; }

/* Bento : centrage vertical du contenu pour éviter le vide en bas */
.bento .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* La card b-1 contient un calendrier - on garde le contenu en flux normal */
.bento .card.b-1 { justify-content: flex-start; }

/* Suffixe "mails/jour" en blanc derrière le 300 orange */
.big-stat-unit {
  font-size: 0.32em;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  background: none;
  text-shadow: none;
}

/* ---------- Bento (bénéfices) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 18px;
}
.bento .card { padding: 28px; }
.bento .b-1 { grid-column: span 4; grid-row: span 2; }   /* large */
.bento .b-2 { grid-column: span 2; }
.bento .b-3 { grid-column: span 2; }
.bento .b-4 { grid-column: span 3; }
.bento .b-5 { grid-column: span 3; }                     /* big number */
.bento .b-6 { grid-column: span 6; }
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .b-1 { grid-column: span 2; grid-row: auto; }
  .bento .b-2, .bento .b-3, .bento .b-4, .bento .b-5 { grid-column: span 1; }
  .bento .b-6 { grid-column: span 2; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento .b-1, .bento .b-2, .bento .b-3, .bento .b-4, .bento .b-5, .bento .b-6 { grid-column: span 1; }
}

.big-stat {
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 6px 0 10px;
  background: linear-gradient(180deg, var(--orange-light) 0%, var(--orange) 60%, var(--orange-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: 0 0 32px rgba(255,117,31,0.35);
}

/* Mini-calendrier animé (carte "Remplir votre agenda") */
.mini-calendar {
  margin-top: 24px;
  padding: 22px 20px 20px;
  background:
    radial-gradient(ellipse at top, rgba(255,117,31,0.07), transparent 70%),
    linear-gradient(180deg, #0b0b0b 0%, #080808 100%);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 32px repeat(5, 1fr);
  grid-auto-rows: 40px;
  gap: 7px;
  position: relative;
  overflow: hidden;
}
.mini-calendar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(255,117,31,0.10), transparent 60%);
  pointer-events: none;
}
.mini-calendar .cal-corner { /* coin vide en haut à gauche */ }
.mini-calendar .cal-day {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--grey-3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mini-calendar .cal-h {
  font-size: 11px;
  font-weight: 600;
  color: var(--grey-3);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  font-feature-settings: "tnum";
}
.mini-calendar .cal-cell {
  background: rgba(255,255,255,0.025);
  border-radius: 4px;
  position: relative;
  transition: background 0.3s ease;
}

/* Event RDV : pop-in animé avec glow orange */
.mini-calendar .cal-event {
  position: absolute;
  inset: 1px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  box-shadow:
    0 0 8px rgba(255,117,31,0.5),
    inset 0 1px 0 rgba(255,255,255,0.25);
  opacity: 0;
  transform: scale(0.4);
  animation: calEventPop 7s ease-in-out infinite both;
}
.mini-calendar .ev1 { animation-delay: 0.3s; }
.mini-calendar .ev2 { animation-delay: 1.0s; }
.mini-calendar .ev3 { animation-delay: 1.7s; }
.mini-calendar .ev4 { animation-delay: 2.4s; }
.mini-calendar .ev5 { animation-delay: 3.1s; }
.mini-calendar .ev6 { animation-delay: 3.8s; }
.mini-calendar .ev7 { animation-delay: 4.5s; }

@keyframes calEventPop {
  0%       { opacity: 0; transform: scale(0.4); }
  8%       { opacity: 1; transform: scale(1.18); }
  14%, 82% { opacity: 1; transform: scale(1); }
  92%      { opacity: 0.6; transform: scale(0.9); }
  100%     { opacity: 0; transform: scale(0.5); }
}

/* ---------- Méthode (4 étapes) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr) ;
  gap: 14px;
  align-items: stretch;
  position: relative;
}
@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 30px 26px;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: border-color .3s ease, transform .3s ease;
}
.step:hover { border-color: var(--border-orange); transform: translateY(-3px); }
.step .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  /* 01 par défaut : gris dégradé */
  background: linear-gradient(180deg, #f0f0f0 0%, #555 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Progression de teinte orange sur les chiffres (01 → 04) */
/* Note : on utilise nth-of-type pour ignorer les .chevron intercalés */

/* 02 : orange clair (premier touch d'orange) */
.steps article.step:nth-of-type(2) .num {
  background: linear-gradient(180deg, #ffd5b3 0%, #d68a4e 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 03 : orange moyen (intensité croissante) */
.steps article.step:nth-of-type(3) .num {
  background: linear-gradient(180deg, var(--orange-light) 0%, var(--orange) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255,117,31,0.25);
}

/* 04 : orange intense avec glow marqué */
.steps article.step:nth-of-type(4) .num {
  background: linear-gradient(180deg, var(--orange-light) 0%, var(--orange) 50%, var(--orange-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 32px rgba(255,117,31,0.55);
}
.step h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}
.step p { margin: 0; color: var(--grey-2); font-weight: 500; font-size: 0.93rem; line-height: 1.55; }

/* Chevrons entre étapes (desktop) */
.steps .chevron {
  display: none;
}
@media (min-width: 981px) {
  .steps { grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr; }
  .steps .chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    opacity: 0.8;
  }
}

/* ---------- Avis clients (layout main + carrousel vertical) ---------- */
#cas { overflow: hidden; } /* La main déborde à gauche, on coupe proprement */

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
/* La colonne gauche reste vide en flow (la main est en position: absolute par-dessus) */

/* Main pouce collée au bord gauche de la fenêtre, pleine hauteur de la section */
.reviews-hand {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 44%;
  max-width: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
/* Forcer le carrousel d'avis dans la colonne de droite */
.reviews-layout .reviews-marquee { grid-column: 2; }
@media (max-width: 900px) {
  .reviews-layout .reviews-marquee { grid-column: 1; }
}
.reviews-hand img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 80px rgba(255,117,31,0.30));
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}
.reviews-hand { animation: floatyThumb 6s ease-in-out infinite; }
@keyframes floatyThumb {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Carrousel vertical d'avis (marquee bottom-to-top) */
.reviews-marquee {
  position: relative;
  height: 560px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
}
.reviews-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: scrollReviews 50s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes scrollReviews {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

/* Card d'avis individuelle */
.review-card {
  flex-shrink: 0;
  background: linear-gradient(180deg, #0d0d0d 0%, #161616 100%);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
  transition: border-color .3s ease, transform .3s ease;
}
.review-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-2px);
}
.review-stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px rgba(255,117,31,0.5));
}
.review-text {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 16px;
}
.review-text strong {
  color: var(--white);
  font-weight: 700;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.review-name {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
}
.review-role {
  color: var(--grey-2);
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .reviews-layout { grid-template-columns: 1fr; gap: 30px; }
  .reviews-hand {
    position: relative;
    left: auto; top: auto; bottom: auto;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 20px;
    animation: none;
  }
  .reviews-marquee { height: 480px; }
}

/* ---------- Études de cas ---------- */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }

.case {
  position: relative;
  padding: 28px;
  background: linear-gradient(160deg, #0e0e0e 0%, #161616 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.case:hover {
  transform: translateY(-4px);
  border-color: var(--border-orange);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 80px rgba(255,117,31,0.10);
}

/* Mini workflow schematic (deux blocs + nœud orange) */
.workflow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 22px;
  background: radial-gradient(circle at 30% 30%, rgba(255,117,31,0.10), transparent 60%), #0a0a0a;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  margin-bottom: 22px;
  min-height: 130px;
}
.workflow .node {
  flex: 0 0 90px;
  height: 80px;
  border-radius: 14px;
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-1);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 8px;
}
.workflow .link-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,117,31,0.6), transparent);
  position: relative;
}
.workflow .hub {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--orange-light), var(--orange));
  display: flex; align-items: center; justify-content: center;
  color: #0a0a0a;
  box-shadow: 0 0 24px var(--glow-orange);
}
.workflow .live {
  position: absolute;
  top: 12px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; color: #22c55e; font-weight: 600;
}
.workflow .live .dot-live { width: 6px; height: 6px; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tag {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  color: var(--grey-1);
}

.case .cat {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.case h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.case p { margin: 0 0 18px; color: var(--grey-2); font-weight: 500; line-height: 1.55; font-size: 0.96rem; }
.case .case-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.92rem;
  transition: gap .2s ease;
}
.case .case-link:hover { gap: 12px; }

/* ---------- Panneau de réservation (Calendly) ---------- */
.booking {
  position: relative;
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 64px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,180,120,0.45), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(214,90,16,0.7), transparent 55%),
    linear-gradient(135deg, #ff8633 0%, #ff751f 60%, #d65a10 100%);
  box-shadow:
    0 40px 120px rgba(255,117,31,0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 110%, rgba(0,0,0,0.35), transparent 60%);
  pointer-events: none;
}
.booking-head {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.booking-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 16px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.booking-head p { color: rgba(255,255,255,0.92); font-weight: 500; margin: 0; font-size: 1.05rem; }

.calendly-wrap {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  min-height: 700px;
}
.calendly-inline-widget { min-width: 320px; height: 700px; }

/* ---------- FAQ (accordion) ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item:hover { border-color: var(--border-orange); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.faq-q .plus {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.4rem;
  transition: transform .25s ease;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 22px;
  color: var(--grey-2);
  font-weight: 500;
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 22px; }

/* ---------- Footer ---------- */
.footer {
  background: #050505;
  border-top: 1px solid var(--border-soft);
  padding: 70px 0 30px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 80px;
  background: radial-gradient(ellipse, rgba(255,117,31,0.20), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin: 0 0 16px;
  font-weight: 700;
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  font-size: 0.94rem;
  color: var(--grey-1);
  font-weight: 500;
  transition: color .2s ease;
}
.footer ul li a:hover { color: var(--orange); }
.footer-brand p {
  color: var(--grey-2);
  font-weight: 500;
  font-size: 0.94rem;
  margin: 14px 0 18px;
  max-width: 320px;
  line-height: 1.55;
}
.footer-brand .mini-proof {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--grey-1);
}

/* Icônes réseaux sociaux dans le footer */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  color: var(--grey-1);
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.footer-socials a:hover {
  background: rgba(255,117,31,0.10);
  border-color: var(--border-orange);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,117,31,0.20);
}
.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--grey-3);
}
.to-top {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  color: var(--grey-1);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background .2s ease, color .2s ease;
}
.to-top:hover { background: rgba(255,117,31,0.10); color: var(--orange); }

/* =========================================================
   RESPONSIVE ENHANCEMENTS
   Ajustements ciblés pour grand écran, tablette, mobile fine
   ========================================================= */

/* ---------- Très grand écran / 4K (≥ 1700px) ---------- */
@media (min-width: 1700px) {
  .container { max-width: 1400px; }
  .hero h1 { font-size: clamp(2.4rem, 3.8vw, 4.5rem); }
  .h-display { font-size: clamp(2.8rem, 4.8vw, 5.4rem); }
  .reviews-hand { max-width: 720px; }
  .hero-visual { max-width: 780px; }
}

/* ---------- Grand écran (≥ 1440px) ---------- */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
  .section { padding: clamp(96px, 11vw, 150px) 0; }
}

/* ---------- Tablette landscape (1025px - 1280px) ---------- */
@media (max-width: 1280px) and (min-width: 1025px) {
  .hero-text { max-width: 60%; }
  .hero-visual { max-width: 580px; }
  .reviews-hand { max-width: 540px; }
}

/* ---------- Tablette (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  /* Hero : la main rétrécit, texte plus large */
  .hero-text { max-width: 64%; }
  .hero-visual { width: 46%; max-width: 460px; }

  /* Sections : padding un peu réduit */
  .section { padding: clamp(70px, 10vw, 110px) 0; }

  /* Méthode : 2 cols, plus de chevrons (déjà géré sous 980px mais on rebascule plus tôt) */
  .steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .steps .chevron { display: none; }
}

/* ---------- Tablette portrait & mobile large (≤ 768px) ---------- */
@media (max-width: 768px) {
  /* Hero : empilé, main par-dessus le texte */
  .hero {
    padding: clamp(110px, 14vw, 140px) 0 clamp(50px, 7vw, 80px);
    text-align: center;
  }
  .hero-text { max-width: 100%; text-align: center; }
  .hero-visual {
    position: relative;
    right: auto; top: auto; bottom: auto;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 24px;
    opacity: 0.95;
  }
  .hero-cta-row { justify-content: center; }
  .social-proof { justify-content: center; }

  /* Méthode 1 col */
  .steps { grid-template-columns: 1fr; }

  /* Réservation : panneau orange + Calendly compact */
  .booking { padding: 40px 22px; border-radius: 24px; }
  .calendly-inline-widget { height: 640px !important; }

  /* Footer */
  .footer { padding: 50px 0 24px; }
}

/* ---------- Mobile (≤ 480px) ---------- */
@media (max-width: 480px) {
  /* Container padding réduit */
  .container { padding: 0 18px; }

  /* Navbar pill compacte */
  .nav-pill {
    width: calc(100% - 16px);
    padding: 8px 10px 8px 16px;
    gap: 12px;
  }
  .nav-logo { font-size: 1rem; }
  .nav-cta {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  /* Hero typo réduite */
  .hero { padding: 100px 0 50px; }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); line-height: 1.1; }
  .hero-visual { max-width: 280px; }
  .hero-eyebrow {
    font-size: 0.78rem;
    padding: 9px 16px;
    margin-bottom: 22px;
  }
  .btn { padding: 12px 18px; font-size: 0.92rem; }

  /* Section "Pour qui" : emojis et titre */
  .card .icon-emoji { font-size: clamp(20px, 5vw, 26px); }

  /* Card padding */
  .card { padding: 24px 22px; }
  .card h3 { font-size: 1.2rem; }
  .card p { font-size: 0.92rem; }

  /* Mini-calendrier compact */
  .mini-calendar {
    grid-template-columns: 24px repeat(5, 1fr);
    grid-auto-rows: 30px;
    gap: 4px;
    padding: 14px 12px;
  }
  .mini-calendar .cal-day { font-size: 8px; letter-spacing: 0.06em; padding-bottom: 4px; }
  .mini-calendar .cal-h { font-size: 9px; padding-right: 4px; }

  /* Glow block moins de marge */
  .glow-block { margin: 24px 6px; border-radius: 20px; }

  /* Section méthode : padding step plus serré */
  .step { padding: 24px 22px; }
  .step .num { font-size: 2.4rem; margin-bottom: 14px; }

  /* Section avis : carrousel hauteur réduite */
  .reviews-marquee { height: 420px; }
  .review-card { padding: 18px 20px; }
  .review-text { font-size: 0.92rem; }

  /* Booking */
  .booking { padding: 32px 18px; border-radius: 20px; }
  .booking-head h2 { font-size: clamp(1.6rem, 6.5vw, 2.1rem); }
  .booking-head p { font-size: 0.95rem; }
  .calendly-inline-widget { height: 580px !important; }

  /* FAQ */
  .faq-q { padding: 16px 18px; font-size: 0.95rem; }
  .faq-item.open .faq-a { padding: 0 18px 18px; font-size: 0.92rem; }

  /* Footer compact */
  .footer { padding: 40px 0 20px; }
  .footer-grid { gap: 24px; margin-bottom: 30px; }

  /* Bandeau logos un peu plus discret */
  .marquee-track .logo-item { height: 42px; }
  .marquee-track img.logo-item { height: 42px; max-width: 180px; }
  .marquee-track { gap: 40px; }
}

/* ---------- Très petit mobile (≤ 360px) ---------- */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero h1 { font-size: clamp(1.55rem, 7vw, 1.9rem); }
  .nav-links { display: none; }
}

/* ---------- Mode paysage mobile (court en hauteur) ---------- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { padding: 80px 0 40px; }
  .reviews-marquee { height: 360px; }
  .calendly-inline-widget { height: 480px !important; }
}

/* =========================================================
   MOBILE FIXES (correctifs forts, dernier dans la cascade)
   ========================================================= */

/* Garde-fou anti-overflow horizontal sur tous les niveaux */
main, section, .container { max-width: 100%; }
.section { overflow-x: clip; }

/* ---------- Tablette & mobile (≤ 1024px) : section Avis ---------- */
@media (max-width: 1024px) {
  /* La main pouce passe en flow normal, centrée au-dessus du carrousel */
  #cas .reviews-hand {
    position: relative;
    left: auto; right: auto; top: auto; bottom: auto;
    width: 100%;
    max-width: 240px;
    margin: 0 auto 24px;
    z-index: auto;
    animation: none;
    pointer-events: auto;
  }
  /* Layout : 1 colonne, carrousel pleine largeur */
  #cas .reviews-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #cas .reviews-layout .reviews-marquee {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
  }
  /* Pareil sur le hero : la main repasse en flow normal */
  .hero .hero-visual {
    position: relative;
    right: auto; left: auto; top: auto; bottom: auto;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 28px;
    z-index: auto;
  }
  .hero .hero-text { max-width: 100%; }
  .hero .hero-grid { display: block; }
  .hero { text-align: left; }
}

/* ---------- Glow block sur mobile : on coupe les halos qui débordent ---------- */
@media (max-width: 900px) {
  .glow-block {
    margin: 28px 8px;
    border-radius: 22px;
    box-shadow:
      0 0 18px 2px rgba(255,117,31,0.025),
      0 0 32px 6px rgba(255,117,31,0.015),
      inset 0 0 30px rgba(255,117,31,0.008),
      inset 0 1px 0 rgba(255,255,255,0.03);
  }
  /* Pseudo halo désactivé sur mobile (peut visuellement déborder) */
  .glow-block::before { display: none; }
}

/* ---------- Mobile (≤ 600px) : ajustements supplémentaires ---------- */
@media (max-width: 600px) {
  /* Container plus étroit pour aérer */
  .container { padding: 0 16px; }

  /* Navbar pill : padding fin */
  .nav-pill {
    width: calc(100% - 12px);
    padding: 8px 8px 8px 14px;
    gap: 8px;
  }
  .nav-cta { padding: 7px 12px; font-size: 0.78rem; }

  /* Sections : padding vertical réduit */
  .section { padding: 56px 0; }

  /* Hero : centrer le texte sur mobile */
  .hero-text {
    text-align: center;
  }
  .hero h1 { text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-cta-row { justify-content: center; }
  .social-proof { justify-content: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }

  /* Titres "Vous êtes ici car..." plus compacts */
  .h-display {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    line-height: 1.1;
  }
  .section-head { margin-bottom: 32px; }

  /* Card padding réduit */
  .card { padding: 22px 20px; }

  /* Steps padding */
  .step { padding: 22px 20px; }
  .step .num { font-size: 2.2rem; margin-bottom: 12px; }

  /* Mini calendrier compact */
  .mini-calendar {
    grid-template-columns: 22px repeat(5, 1fr);
    grid-auto-rows: 28px;
    gap: 4px;
    padding: 14px 12px;
  }
  .mini-calendar .cal-day {
    font-size: 7.5px;
    letter-spacing: 0.04em;
    padding-bottom: 3px;
  }
  .mini-calendar .cal-h { font-size: 8.5px; padding-right: 3px; }

  /* Carrousel avis */
  .reviews-marquee {
    height: 440px;
    margin: 0 auto;
    width: 100%;
  }
  .review-card { padding: 18px 18px; }
  .review-text { font-size: 0.92rem; }

  /* Booking */
  .booking { padding: 32px 18px; border-radius: 22px; }
  .booking-head h2 { font-size: clamp(1.5rem, 6.5vw, 2.1rem); }
  .booking-head p { font-size: 0.93rem; }
  .calendly-inline-widget { height: 560px !important; min-width: auto !important; }
  .calendly-wrap { min-height: 560px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Logo marquee plus discret */
  .marquee-track { gap: 32px; }
  .marquee-track .logo-item { height: 38px; font-size: 1rem; }
  .marquee-track img.logo-item { height: 38px; max-width: 140px; }
}

/* ---------- Mobile : on cache les deux mains (intégration compliquée) ---------- */
@media (max-width: 768px) {
  .hero-visual,
  .reviews-hand {
    display: none !important;
  }
  /* Hero padding compact puisque la main est gone */
  .hero { padding: 110px 0 60px; }
  /* Cas section : remet le padding normal puisque la main n'est plus là */
  #cas { padding-top: 70px; }
}

/* ---------- Très petit écran (≤ 380px) ---------- */
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .hero h1 {
    font-size: clamp(1.5rem, 8vw, 1.9rem);
    line-height: 1.12;
  }
  .h-display { font-size: clamp(1.6rem, 9vw, 2.1rem); }
  .btn { padding: 11px 16px; font-size: 0.88rem; }
  .hero-cta-row { gap: 10px; flex-direction: column; align-items: stretch; }
  .nav-cta.desktop { display: none; } /* on cache le CTA dans le pill très petit */
}
