/* ============================================================================
   QREAT — Design System
   DA plaquette : #FF6B35 orange / #FFB627 jaune / #0F0F1A ink
   Polices : Poppins (display) + Inter (body)
   Style web moderne : dark background dominant, gradient mesh, glassmorphism,
   animations soignées, mockup phone hero
   ============================================================================ */

:root {
  --orange:        #FF6B35;
  --orange-deep:   #E85420;
  --orange-soft:   #FFF4EE;
  --yellow:        #FFB627;
  --yellow-deep:   #E89D0E;

  --ink:           #080706;
  --ink-100:       #12100E;
  --ink-200:       #1B1815;
  --ink-300:       #26221E;
  --ink-border:    rgba(255, 255, 255, 0.08);

  --text:          #F4F4F8;
  --text-mute:     rgba(244, 244, 248, 0.65);
  --text-soft:     rgba(244, 244, 248, 0.5);

  --green:         #2BB673;
  --purple:        #6B4FBB;

  --sh-1: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --sh-2: 0 8px 24px -6px rgb(0 0 0 / 0.35), 0 4px 12px -2px rgb(0 0 0 / 0.2);
  --sh-3: 0 24px 48px -12px rgb(0 0 0 / 0.45);
  --sh-orange: 0 20px 48px -12px rgb(255 107 53 / 0.45);
  --sh-glow: 0 0 60px -10px rgb(255 107 53 / 0.5);

  --r-card: 20px;
  --r-md: 14px;
  --r-sm: 10px;
  --r-pill: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1280px;
  --container-tight: 1080px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(5rem, 10vw, 9rem);
}

/* ============================================================================
   RESET
   ============================================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Ambient gradient mesh background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255, 107, 53, 0.12), transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(255, 182, 39, 0.08), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.04), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

img, video, svg { max-width: 100%; height: auto; display: block; }
img { user-select: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--orange); color: var(--white); }

/* ============================================================================
   TYPOGRAPHIE
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
}

.h-display {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.h-display .word-orange { color: var(--orange); }
.h-display .word-yellow { color: var(--yellow); }

.h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.h1 .accent { color: var(--orange); }

.h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 107, 53, 0.12);
  color: var(--orange);
  border: 1px solid rgba(255, 107, 53, 0.25);
}

.tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.tag.yellow { background: rgba(255, 182, 39, 0.12); color: var(--yellow); border-color: rgba(255, 182, 39, 0.25); }
.tag.yellow::before { background: var(--yellow); box-shadow: 0 0 12px var(--yellow); }

.lede {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-mute);
}

.text-orange { color: var(--orange); }
.text-yellow { color: var(--yellow); }

/* ============================================================================
   LAYOUT
   ============================================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container-tight {
  max-width: var(--container-tight);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding: var(--section-y) 0; position: relative; }

.section-header { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section-header.center { text-align: center; }
.section-header.center .lede { margin-left: auto; margin-right: auto; }
.section-header .tag { margin-bottom: 1.5rem; }
.section-header h2, .section-header .h1 { margin-bottom: 1.25rem; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.85rem;
  border-radius: var(--r-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-deep), var(--orange));
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}

.btn-primary {
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  box-shadow: var(--sh-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px -10px rgba(255, 107, 53, 0.6);
  color: var(--text);
}

.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-ghost { color: var(--text); padding: 1rem 1rem; }
.btn-ghost:hover { color: var(--orange); }

.btn-lg { padding: 1.15rem 2.25rem; font-size: 1rem; }

.btn .arrow { transition: transform 0.35s var(--ease-out); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================================
   NAV
   ============================================================================ */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 7, 6, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.nav-wrap.scrolled {
  background: rgba(8, 7, 6, 0.92);
  border-bottom-color: var(--ink-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.03em;
}

.brand .dot { color: var(--orange); }
.brand img { width: 36px; height: 36px; object-fit: contain; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: var(--r-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-mute);
  transition: all 0.25s var(--ease-out);
}

.nav-menu a:hover, .nav-menu a.active {
  background: rgba(255, 107, 53, 0.1);
  color: var(--orange);
}

.nav-cta { display: flex; gap: 0.75rem; align-items: center; }

.nav-login {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-mute);
  padding: 0.55rem 0.85rem;
  transition: color 0.25s;
}
.nav-login:hover { color: var(--orange); }

.menu-toggle { display: none; }

@media (max-width: 1160px) {
  .nav-menu { display: none; }
  .nav-login { display: none; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
  }
}

/* Petit téléphone : logo, bouton démo et menu ne tiennent pas sur une ligne.
   La démo reste accessible dans le menu et juste sous le titre. */
@media (max-width: 480px) {
  .nav { gap: 1rem; }
  .nav-cta { display: none; }
}

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink); color: var(--text);
  z-index: 100; padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-menu nav a {
  display: block; padding: 1.25rem 0;
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 1.5rem; color: var(--text);
  border-bottom: 1px solid var(--ink-border);
}
.mobile-menu nav a:last-child { border-bottom: none; }

/* ============================================================================
   HERO — split avec mockup phone à droite + animations
   ============================================================================ */

.hero {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(5rem, 9vw, 7rem);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: 50%; height: 80%;
  top: -10%; right: -10%;
  background: radial-gradient(circle, var(--orange), transparent 60%);
  opacity: 0.35;
  animation: hero-glow 12s ease-in-out infinite alternate;
}

.hero::after {
  width: 40%; height: 60%;
  bottom: -20%; left: -5%;
  background: radial-gradient(circle, var(--yellow), transparent 60%);
  opacity: 0.18;
  animation: hero-glow 14s ease-in-out infinite alternate-reverse;
}

@keyframes hero-glow {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-30px) scale(1.1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.hero-text { position: relative; }
.hero-text .tag { margin-bottom: 1.5rem; }
.hero-text h1 { margin-bottom: 1.5rem; }
.hero-text .lede { max-width: 36em; margin-bottom: 2.25rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust .avatars { display: flex; }
.hero-trust .avatars img {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  object-fit: cover;
  margin-left: -10px;
  box-shadow: var(--sh-1);
}
.hero-trust .avatars img:first-child { margin-left: 0; }

.hero-trust .stars { color: var(--yellow); font-size: 0.95rem; letter-spacing: 1px; }

.hero-trust .trust-text {
  font-size: 0.92rem;
  color: var(--text-mute);
}
.hero-trust .trust-text strong { color: var(--text); font-weight: 600; }

/* Mots animés du hero */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%);
  animation: word-up 0.5s var(--ease-out) forwards;
}
.word:nth-child(1) { animation-delay: 0s; }
.word:nth-child(2) { animation-delay: 0.08s; }
.word:nth-child(3) { animation-delay: 0.16s; }

@keyframes word-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero visual: mockup phone */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}

.hero-visual .phone-main {
  position: relative;
  z-index: 2;
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 80px rgba(255, 107, 53, 0.2));
  animation: float-y 6s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-18px) rotate(0deg); }
}

.hero-visual .phone-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual .phone-bg::before {
  content: '';
  position: absolute;
  width: 90%; height: 90%;
  top: 5%; left: 5%;
  background: conic-gradient(from 0deg, var(--orange), var(--yellow), var(--orange));
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.4;
  animation: spin 15s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Float cards autour du mockup */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-radius: var(--r-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 3;
  box-shadow: var(--sh-2);
}

.float-card .live-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse-dot 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

.float-card .ic { width: 20px; height: 20px; flex-shrink: 0; }

.float-card.f1 { top: 8%; left: -5%; animation: float-y 7s ease-in-out infinite 0.3s; }
.float-card.f2 { bottom: 18%; right: -8%; animation: float-y 8s ease-in-out infinite 0.6s; }
.float-card.f3 { top: 55%; left: -10%; animation: float-y 6.5s ease-in-out infinite 1s; }

@media (max-width: 1100px) {
  .float-card.f1 { left: 0; }
  .float-card.f2 { right: 0; }
  .float-card.f3 { display: none; }
}

/* ============================================================================
   STATS BANNER (in dark with glow)
   ============================================================================ */

.stats {
  padding: 0;
  position: relative;
}

.stats-band {
  background: linear-gradient(135deg, var(--ink-100), var(--ink-200));
  border-top: 1px solid var(--ink-border);
  border-bottom: 1px solid var(--ink-border);
  padding: clamp(3rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05), transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  position: relative;
}

.stat {
  text-align: center;
  position: relative;
}

.stat + .stat::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(0.75rem, 2vw, 1.75rem));
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--ink-border), transparent);
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-num sup { font-size: 0.5em; vertical-align: top; margin-left: 0.1em; }

.stat-label {
  font-size: 0.92rem;
  color: var(--text-mute);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stat + .stat::before { display: none; }
}

/* ============================================================================
   MODES SECTION (3 cards Sur place / À emporter / Livraison)
   ============================================================================ */

.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) { .modes-grid { grid-template-columns: 1fr; } }

.mode-card {
  position: relative;
  background: linear-gradient(180deg, var(--ink-200), var(--ink-100));
  border: 1px solid var(--ink-border);
  border-radius: var(--r-card);
  padding: 2rem;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
}

.mode-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.mode-card:hover {
  border-color: rgba(255, 107, 53, 0.35);
  transform: translateY(-6px);
  box-shadow: var(--sh-3);
}

.mode-card:hover::before { opacity: 1; }

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

.mode-card .mode-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: rgba(255, 107, 53, 0.1);
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.mode-card.emporter .mode-icon { background: rgba(255, 182, 39, 0.1); border-color: rgba(255, 182, 39, 0.2); }
.mode-card.livraison .mode-icon { background: rgba(43, 182, 115, 0.1); border-color: rgba(43, 182, 115, 0.2); }

.mode-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.mode-card p {
  color: var(--text-mute);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

.mode-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.mode-card ul li {
  padding: 0.45rem 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-mute);
}

.mode-card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
  flex-shrink: 0;
}

.mode-card.emporter ul li::before { background: var(--yellow); }
.mode-card.livraison ul li::before { background: var(--green); }

.mode-card .mode-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
  color: var(--orange);
}

.mode-card.emporter .mode-link { color: var(--yellow); }
.mode-card.livraison .mode-link { color: var(--green); }

.mode-card .mode-link .arrow { transition: transform 0.3s var(--ease-out); }
.mode-card:hover .mode-link .arrow { transform: translateX(4px); }

/* ============================================================================
   HOW IT WORKS (zigzag with phone + text)
   ============================================================================ */

.zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(4rem, 7vw, 6rem);
}

.zigzag:last-child { margin-bottom: 0; }
.zigzag.reverse .zigzag-visual { order: -1; }

@media (max-width: 880px) {
  .zigzag { grid-template-columns: 1fr; gap: 3rem; }
  .zigzag.reverse .zigzag-visual { order: 0; }
}

.zigzag-text .tag { margin-bottom: 1.25rem; }
.zigzag-text h2 { margin-bottom: 1.25rem; }
.zigzag-text p { color: var(--text-mute); margin-bottom: 1rem; }
.zigzag-text .feat-list {
  list-style: none;
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.zigzag-text .feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 1rem;
  color: var(--text-mute);
}

.zigzag-text .feat-list .check {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.15);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 1px;
}

.zigzag-visual {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink-200), var(--ink-100));
  border: 1px solid var(--ink-border);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zigzag-visual::before {
  content: '';
  position: absolute;
  width: 70%; height: 70%;
  background: radial-gradient(circle, var(--orange), transparent 65%);
  opacity: 0.3;
  filter: blur(60px);
  z-index: 0;
}

.zigzag-visual img {
  position: relative;
  z-index: 1;
  max-width: 70%;
  max-height: 90%;
  width: auto;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
}

/* ============================================================================
   FEATURES BENTO
   ============================================================================ */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 1.25rem;
}

.bento-card {
  background: linear-gradient(180deg, var(--ink-200), var(--ink-100));
  border: 1px solid var(--ink-border);
  border-radius: var(--r-card);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: var(--sh-2);
}

.bento-card:hover::before { opacity: 1; }

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

.bento-card .ic {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(255, 107, 53, 0.12);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.bento-card.yellow .ic { background: rgba(255, 182, 39, 0.12); color: var(--yellow); border-color: rgba(255, 182, 39, 0.2); }

.bento-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.bento-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-mute);
}

/* Bento spans */
.bento-card.span-3 { grid-column: span 3; }
.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-6 { grid-column: span 6; }

.bento-card.row-2 { grid-row: span 2; }

.bento-card.featured {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-color: var(--orange);
  color: var(--ink);
}
.bento-card.featured h3, .bento-card.featured p { color: var(--ink); }
.bento-card.featured p { opacity: 0.85; }
.bento-card.featured .ic { background: rgba(8, 7, 6, 0.15); color: var(--ink); border-color: rgba(8, 7, 6, 0.2); }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.span-3, .bento-card.span-2, .bento-card.span-4, .bento-card.span-6 { grid-column: span 2; }
  .bento-card.row-2 { grid-row: auto; }
}

@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card.span-3, .bento-card.span-2, .bento-card.span-4, .bento-card.span-6 { grid-column: 1 / -1; }
}

/* ============================================================================
   VIDEO
   ============================================================================ */

.video-wrap {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--sh-3), 0 0 80px -20px rgba(255, 107, 53, 0.3);
  background: var(--ink);
  border: 1px solid var(--ink-border);
}

.video-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: 0;
}

/* ============================================================================
   TESTIMONIALS
   ============================================================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testi-card {
  background: linear-gradient(180deg, var(--ink-200), var(--ink-100));
  border: 1px solid var(--ink-border);
  border-radius: var(--r-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
}

.testi-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.25);
}

.testi-card .stars { color: var(--yellow); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 1rem; }

.testi-card blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ink-border);
}

.testi-author img { width: 48px; height: 48px; border-radius: 999px; object-fit: cover; }
.testi-author .name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem; }
.testi-author .role { font-size: 0.85rem; color: var(--text-soft); }

/* ============================================================================
   PRICING
   ============================================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: linear-gradient(180deg, var(--ink-200), var(--ink-100));
  border: 1px solid var(--ink-border);
  border-radius: var(--r-card);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s var(--ease-out);
}

.price-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }

.price-card.featured {
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.08), var(--ink-100));
  border-color: var(--orange);
  box-shadow: var(--sh-orange);
}

.price-card.featured::before {
  content: 'SUR MESURE';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--ink);
  padding: 0.35rem 0.95rem;
  border-radius: var(--r-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.price-card .tier-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}

.price-card.featured .tier-name { color: var(--yellow); }

.price-card h3,
.price-card h2 { font-size: 1.6rem; margin-bottom: 0.4rem; font-weight: 800; }

.price-card .tier-desc {
  color: var(--text-mute);
  margin-bottom: 1.25rem;
  font-size: 0.93rem;
}

.price-amount {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.price-amount .currency { font-size: 0.6em; vertical-align: top; }
.price-amount .per {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.3em;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: normal;
  margin-top: 0.4em;
}

.price-features { list-style: none; margin: 1.5rem 0 2rem; flex: 1; }

.price-features li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.93rem;
  color: var(--text-mute);
  align-items: baseline;
}

.price-features li::before {
  content: '✓';
  width: 18px; height: 18px;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.15);
  color: var(--orange);
  display: grid; place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  align-self: flex-start;
  margin-top: 2px;
}

.price-card .btn { width: 100%; justify-content: center; }

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

.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: linear-gradient(180deg, var(--ink-200), var(--ink-100));
  border: 1px solid var(--ink-border);
  border-radius: var(--r-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover { border-color: rgba(255, 107, 53, 0.3); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  gap: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--text);
  user-select: none;
  margin: 0;
}

.faq-toggle {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.15);
  color: var(--orange);
  display: grid; place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.3s var(--ease-out), background 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  background: var(--orange);
  color: var(--ink);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.5rem; }

.faq-answer p {
  color: var(--text-mute);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================================================
   CTA BAND
   ============================================================================ */

.cta-band {
  padding: clamp(5rem, 9vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-radius: var(--r-card);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--ink);
}

.cta-inner::before,
.cta-inner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-inner::before {
  width: 50%; height: 100%;
  top: -30%; right: -10%;
  background: radial-gradient(circle, var(--yellow), transparent 60%);
  opacity: 0.5;
}

.cta-inner::after {
  width: 40%; height: 80%;
  bottom: -20%; left: -10%;
  background: radial-gradient(circle, rgba(8, 7, 6, 0.5), transparent 60%);
}

.cta-inner > * { position: relative; z-index: 1; }

.cta-inner h2 {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.5rem);
  /* Assez d'interligne pour que le pointillé de « suffisent » reste sous
     son mot et ne morde pas la ligne suivante. */
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.cta-inner h2 .accent { color: var(--ink); border-bottom: 4px dotted var(--ink); padding-bottom: 4px; }

.cta-inner .lede {
  color: rgba(8, 7, 6, 0.85);
  max-width: 50ch;
  margin: 0 auto 2rem;
}

.cta-inner .btn-primary {
  background: var(--ink);
  color: var(--text);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.3);
}

.cta-inner .btn-primary:hover { background: var(--ink-200); color: var(--orange); }
.cta-inner .btn-primary::before { display: none; }

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

footer {
  background: var(--ink);
  color: var(--text-mute);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--ink-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand { color: var(--text); margin-bottom: 1rem; }
.footer-brand p { color: var(--text-mute); font-size: 0.94rem; max-width: 36ch; margin-bottom: 1.25rem; }

.footer-socials { display: flex; gap: 0.5rem; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.04);
  display: grid; place-items: center;
  color: var(--text-mute);
  transition: all 0.3s;
}
.footer-socials a:hover { background: var(--orange); color: var(--ink); }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: var(--text-mute); font-size: 0.92rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--ink-border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links span { color: var(--text-soft); font-weight: 500; }

/* ============================================================================
   REVEAL ANIMATIONS
   ============================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 90ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 180ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 270ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 360ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 450ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 540ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 630ms; }
.stagger.visible > *:nth-child(9) { transition-delay: 720ms; }

/* ============================================================================
   SUBPAGE HERO (pages sous-niveau)
   ============================================================================ */

.subpage-hero {
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  width: 60%; height: 80%;
  top: -20%; right: -10%;
  background: radial-gradient(circle, var(--orange), transparent 60%);
  opacity: 0.35;
  filter: blur(100px);
  pointer-events: none;
}

.subpage-hero.emporter::before { background: radial-gradient(circle, var(--yellow), transparent 60%); opacity: 0.4; }
.subpage-hero.livraison::before { background: radial-gradient(circle, var(--green), transparent 60%); opacity: 0.3; }

.subpage-hero .container { position: relative; z-index: 1; max-width: 1000px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}

.breadcrumb a { color: var(--text-soft); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--text-soft); opacity: 0.5; }
.breadcrumb .current { color: var(--text); font-weight: 500; }

.subpage-hero .tag { margin-bottom: 1.5rem; }
.subpage-hero h1 { margin-bottom: 1.5rem; max-width: 22ch; }
.subpage-hero .lede { max-width: 60ch; margin-bottom: 2rem; }

/* ============================================================================
   STEPS (process numérotés)
   ============================================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
}

.steps.steps-4 { grid-template-columns: repeat(4, 1fr); }
.steps.steps-6 { grid-template-columns: repeat(6, 1fr); }

.step-card {
  background: linear-gradient(180deg, var(--ink-200), var(--ink-100));
  border: 1px solid var(--ink-border);
  border-radius: var(--r-md);
  padding: 1.5rem 1.25rem;
  transition: all 0.3s var(--ease-out);
}

.step-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-3px);
}

.step-card .num {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-mute);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .steps, .steps.steps-4, .steps.steps-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .steps, .steps.steps-4, .steps.steps-6 { grid-template-columns: 1fr; }
}

/* ============================================================================
   COMPARE TABLE (Avant / Avec QREAT)
   ============================================================================ */

.compare {
  background: linear-gradient(180deg, var(--ink-200), var(--ink-100));
  border: 1px solid var(--ink-border);
  border-radius: var(--r-card);
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid var(--ink-border);
}

.compare-row:last-child { border-bottom: none; }

.compare-cell {
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.94rem;
  color: var(--text-mute);
}

.compare-cell.label { font-weight: 500; color: var(--text); }

.compare-cell.before {
  background: rgba(255, 255, 255, 0.02);
  border-left: 1px solid var(--ink-border);
  color: var(--text-mute);
}

.compare-cell.before::before {
  content: '✕';
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  display: grid; place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.compare-cell.after {
  background: rgba(255, 107, 53, 0.08);
  border-left: 1px solid rgba(255, 107, 53, 0.15);
  color: var(--text);
  font-weight: 500;
}

.compare-cell.after::before {
  content: '✓';
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  display: grid; place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.compare-header {
  background: var(--ink);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-header .compare-cell { padding: 0.85rem 1.4rem; color: var(--text-mute); }
.compare-header .compare-cell::before { display: none; }
.compare-header .compare-cell.after { background: rgba(255, 107, 53, 0.18); color: var(--orange); }

@media (max-width: 600px) {
  .compare-cell { padding: 0.85rem 1rem; font-size: 0.88rem; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-cell.before, .compare-cell.after { border-left: 0; border-top: 1px solid var(--ink-border); }
}

/* ============================================================================
   CONTACT FORM
   ============================================================================ */

.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 4rem; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, var(--ink-200), var(--ink-100));
  border: 1px solid var(--ink-border);
  border-radius: var(--r-md);
}

.contact-info-item .ic {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(255, 107, 53, 0.15);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text);
}

.contact-info-item a,
.contact-info-item .valeur { color: var(--orange); font-weight: 600; }

.contact-info-item .sub {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 0.3rem;
}

.form-card {
  background: linear-gradient(180deg, var(--ink-200), var(--ink-100));
  border: 1px solid var(--ink-border);
  border-radius: var(--r-card);
  padding: 2.5rem;
}

.form-row { display: grid; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-row.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row.two { grid-template-columns: 1fr; } }

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-group label .req { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-sm);
  font: inherit;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-soft); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.18);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================================
   FEATURES GRID (page fonctionnalités)
   ============================================================================ */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feat-grid { grid-template-columns: 1fr; } }

.feat-grid .bento-card { padding: 1.75rem; min-height: auto; }

/* ============================================================================
   UTILITIES
   ============================================================================ */

.text-center { text-align: center; }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}.mt-5{margin-top:3rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}.mb-5{margin-bottom:3rem}

@media print { .nav-wrap, footer, .cta-band { display: none; } body::before { display: none; } }

/* Logos des moyens de paiement, à la place des émojis */
.logos-paiement {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  min-height: 34px;
}
.logos-paiement img { display: block; width: auto; }
.logos-paiement .logo-carte { height: 32px; border-radius: 5px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35); }
.logos-paiement .logo-wallet { height: 32px; }
.logos-paiement .logo-link { height: 26px; }

/* Icônes au trait (Lucide) à la place des émojis */
.ic svg, .mode-icon svg { width: 26px; height: 26px; flex-shrink: 0; }
.mode-icon { color: var(--orange); }
.bento-card .ic svg { width: 24px; height: 24px; }
.mode-card .mode-icon svg { width: 28px; height: 28px; }
.mode-card .mode-icon { color: var(--orange); }
.mode-card.emporter .mode-icon { color: var(--yellow); }
.mode-card.livraison .mode-icon { color: var(--green); }
.bento-card.yellow .ic { color: var(--yellow); background: rgba(255, 182, 39, 0.1); border-color: rgba(255, 182, 39, 0.22); }
.bento-card.featured .ic { color: #fff; background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.28); }

/* ============================================================================
   PACK DE DÉMARRAGE OFFERT
   ============================================================================ */
.pack { padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: 0; }
.pack-carte {
  position: relative;
  border-radius: calc(var(--r-card) + 8px);
  padding: clamp(2rem, 5vw, 3.75rem);
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(255, 107, 53, 0.22), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(255, 182, 39, 0.12), transparent 60%),
    linear-gradient(160deg, var(--ink-200), var(--ink-100));
  border: 1px solid rgba(255, 107, 53, 0.35);
  box-shadow: 0 30px 80px -30px rgba(255, 107, 53, 0.45);
  overflow: hidden;
}
.pack-entete { max-width: 40rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.pack-entete .tag { margin-bottom: 1.25rem; }
.pack-entete .tag svg { width: 16px; height: 16px; }
.pack-entete h2 { margin-bottom: 1rem; }
.pack-tampon {
  position: absolute;
  top: clamp(1.25rem, 3vw, 2.25rem);
  right: clamp(1.25rem, 3vw, 2.5rem);
  padding: 0.55rem 1.2rem;
  border: 3px solid var(--yellow);
  border-radius: 12px;
  color: var(--yellow);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(8deg);
  box-shadow: 0 0 30px rgba(255, 182, 39, 0.25), inset 0 0 18px rgba(255, 182, 39, 0.15);
}
.pack-liste {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.pack-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ink-border);
}
.pack-item .ic {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--r-sm);
  color: var(--orange);
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.22);
}
.pack-item .ic svg { width: 22px; height: 22px; }
.pack-item h3 { font-size: 1.05rem; margin-bottom: 0.35rem; line-height: 1.25; }
.pack-item p { color: var(--text-mute); font-size: 0.92rem; line-height: 1.5; }
.pack-actions { margin-top: clamp(2rem, 4vw, 2.75rem); }
.tag-pack { text-decoration: none; transition: background 0.25s, transform 0.25s var(--ease-out); }
.tag-pack:hover { background: rgba(255, 107, 53, 0.2); transform: translateY(-1px); }
@media (max-width: 960px) {
  .pack-liste { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .pack-liste { grid-template-columns: 1fr; }
  .pack-tampon { position: static; display: inline-block; margin-bottom: 1.25rem; transform: rotate(-4deg); }
}

.pack-cta {
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.22), rgba(255, 182, 39, 0.1));
  border-color: rgba(255, 107, 53, 0.45);
}
.pack-cta .btn { align-self: flex-start; }

/* « Sur devis » à la place d'un montant */
.price-amount.price-devis { font-size: clamp(2.2rem, 4.5vw, 3rem); }

/* Tableau des étapes : pas un comparatif « avant / après », pas de croix */
.compare-etapes .compare-cell.before::before { display: none; }
.compare-etapes .compare-cell.before { color: var(--text-mute); }

/* Menu replié : le bouton démo reste à droite, près du menu, pas au milieu */
@media (max-width: 1160px) {
  .nav-cta { margin-left: auto; }
}

/* ============================================================================
   AMBIANCE CHAUDE — halos orangés plus présents, bandeau orange plein,
   chiffres en dégradé et cartes des modes teintées selon leur couleur.
   ============================================================================ */

/* Lueur orangée qui descend du haut de la page, derrière la navigation et le héros */
body::before {
  background-image:
    radial-gradient(ellipse 70% 45% at 50% -8%, rgba(232, 84, 32, 0.34), transparent 70%),
    radial-gradient(ellipse 40% 30% at 8% 0%, rgba(232, 84, 32, 0.22), transparent 70%),
    radial-gradient(circle at 85% 75%, rgba(255, 182, 39, 0.05), transparent 40%);
}
.hero::before {
  width: 70%; height: 90%;
  top: -25%; right: -5%;
  background: radial-gradient(circle, #E85420, transparent 62%);
  opacity: 0.45;
}
.hero::after {
  width: 55%; height: 60%;
  bottom: -25%; left: 20%;
  background: radial-gradient(circle, #E85420, transparent 62%);
  opacity: 0.22;
}

/* Chiffres clés en dégradé orange → jaune */
.stat-num {
  background: linear-gradient(135deg, #E85420, #FF6B35 45%, #FFB627);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Cartes des modes : chacune garde sa teinte (orange, jaune, vert) */
.mode-card.sur-place {
  background: linear-gradient(160deg, #3D1D11 0%, #1E110B 55%, #120C08 100%);
  border-color: rgba(255, 107, 53, 0.22);
}
.mode-card.emporter {
  background: linear-gradient(160deg, #36270E 0%, #1B140A 55%, #110D07 100%);
  border-color: rgba(255, 182, 39, 0.22);
}
.mode-card.livraison {
  background: linear-gradient(160deg, #0D2216 0%, #0B140E 55%, #090C09 100%);
  border-color: rgba(43, 182, 115, 0.22);
}
.mode-card.emporter:hover { border-color: rgba(255, 182, 39, 0.45); }
.mode-card.livraison:hover { border-color: rgba(43, 182, 115, 0.45); }

/* Les chiffres reposent sur le noir de la page, comme dans la maquette */
.stats-band { background: transparent; border-top: 0; }
/* La lueur du héros déborde doucement sur la section suivante au lieu d'être coupée net */
.hero { overflow-x: clip; overflow-y: visible; }

/* ============================================================================
   COMMENT ÇA MARCHE — visuels des étapes
   Panneau teinté à la couleur de l'étape (comme les cartes des modes), grand
   lueur derrière le téléphone et deux pastilles
   qui racontent ce qui se passe à cette étape.
   ============================================================================ */

.tag.green { background: rgba(43, 182, 115, 0.12); color: var(--green); border-color: rgba(43, 182, 115, 0.28); }
.tag.green::before { background: var(--green); box-shadow: 0 0 12px var(--green); }

.zigzag-visual {
  --teinte: 255, 107, 53;
  aspect-ratio: 1 / 1.05;
  overflow: visible;
  isolation: isolate;
  border: 0;
  border-radius: 0;
  /* Pas de panneau : seulement une lueur de la couleur de l'étape, sans bord */
  background: radial-gradient(closest-side, rgba(var(--teinte), 0.28), rgba(var(--teinte), 0.08) 55%, transparent 100%);
}
.zigzag-visual.teinte-orange { --teinte: 255, 107, 53; --zz-haut: #3D1D11; --zz-milieu: #1E110B; }
.zigzag-visual.teinte-jaune  { --teinte: 255, 182, 39; --zz-haut: #36270E; --zz-milieu: #1B140A; }
.zigzag-visual.teinte-vert   { --teinte: 43, 182, 115; --zz-haut: #0D2216; --zz-milieu: #0B140E; }

/* Trame de points très discrète, qui s'efface vers les bords */
.zigzag-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1.2px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(closest-side, #000 10%, transparent 90%);
          mask-image: radial-gradient(closest-side, #000 10%, transparent 90%);
  pointer-events: none;
}
.zigzag-visual::before {
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgb(var(--teinte)), transparent 65%);
  opacity: 0.35;
  z-index: -1;
}

.zigzag-visual .iphone {
  width: min(52%, 290px);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 60px rgba(var(--teinte), 0.25));
}

/* Pastilles en verre sombre de part et d'autre du téléphone */
.zz-puce {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(12, 10, 9, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
          backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.6);
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
}
.zz-puce .ic {
  width: 34px; height: 34px;
  padding: 8px;
  flex-shrink: 0;
  border-radius: 10px;
  color: rgb(var(--teinte));
  background: rgba(var(--teinte), 0.14);
}
.zz-puce strong { display: block; font-size: 0.9rem; font-weight: 700; }
.zz-puce small { display: block; font-size: 0.76rem; color: var(--text-mute); margin-top: 2px; }
.zz-puce.zz-bas .ic { color: #fff; background: var(--green); }

.zz-haut { top: 16%; left: 7%; }
.zz-bas  { bottom: 14%; right: 7%; }
.zigzag.reverse .zz-haut { left: auto; right: 7%; }
.zigzag.reverse .zz-bas  { right: auto; left: 7%; }

.zz-logos { display: flex; align-items: center; gap: 0.6rem; }
.zz-logos img { height: 20px; width: auto; }

@media (max-width: 520px) {
  .zigzag-visual { aspect-ratio: 4 / 5; }
  .zigzag-visual .iphone { width: 56%; }
  .zz-puce { padding: 0.55rem 0.75rem; gap: 0.5rem; }
  .zz-puce .ic { width: 28px; height: 28px; padding: 6px; }
  .zz-puce strong { font-size: 0.8rem; }
  .zz-puce small { font-size: 0.68rem; }
  .zz-haut, .zigzag.reverse .zz-haut { top: 7%; }
  .zz-bas, .zigzag.reverse .zz-bas { bottom: 7%; }
  .zz-haut { left: 4%; } .zz-bas { right: 4%; }
  .zigzag.reverse .zz-haut { right: 4%; } .zigzag.reverse .zz-bas { left: 4%; }
}

/* Les coches reprennent la couleur de leur étape */
.zigzag:has(.tag.yellow) .feat-list .check { background: rgba(255, 182, 39, 0.15); color: var(--yellow); }
.zigzag:has(.tag.green) .feat-list .check { background: rgba(43, 182, 115, 0.15); color: var(--green); }

/* Visuel 3D dans une carte de la boîte à outils : il occupe le bas de la
   carte et déborde légèrement à droite, avec une ombre qui l'ancre sur l'orange. */
.bento-visuel {
  margin-top: auto;
  align-self: flex-end;
  width: min(92%, 520px);
  margin-right: -0.75rem;
  margin-bottom: -0.5rem;
  filter: drop-shadow(0 24px 30px rgba(120, 35, 5, 0.45));
  animation: bento-flotte 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bento-flotte {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(-1deg); }
}
@media (prefers-reduced-motion: reduce) { .bento-visuel { animation: none; } }

/* Carte avec un téléphone 3D qui dépasse du bas, à droite du texte */
.bento-card.avec-telephone { padding-right: 44%; min-height: 230px; }
.bento-telephone {
  position: absolute;
  right: -6%;
  top: 22px;
  width: 52%;
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.55));
  transform: rotate(4deg);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}
.bento-card.avec-telephone:hover .bento-telephone { transform: rotate(0deg) translateY(-12px); }

/* Carte avec un objet 3D posé en bas à droite, qui déborde légèrement */
.bento-card.avec-objet { min-height: 230px; }
.bento-card.avec-objet p { max-width: 58%; }
.bento-objet {
  position: absolute;
  right: -3%;
  bottom: -6%;
  width: 44%;
  max-width: 230px;
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.5));
  transform: rotate(-3deg);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}
.bento-card.avec-objet:hover .bento-objet { transform: rotate(0deg) translateY(-10px) scale(1.04); }
.bento-objet.bento-objet-large { width: 50%; max-width: 270px; bottom: -4%; }

/* ============================================================================
   BANDEAU FINAL — photo d'une salle le soir, voile noir chaud, texte blanc
   Le texte se cale à gauche, sur la partie la plus sombre ; la table avec
   le QR code et le téléphone restent visibles à droite.
   ============================================================================ */
.cta-inner {
  text-align: left;
  color: var(--text);
  min-height: clamp(420px, 42vw, 560px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 5rem);
  border: 1px solid rgba(255, 107, 53, 0.25);
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.94) 0%, rgba(8, 7, 6, 0.82) 38%, rgba(8, 7, 6, 0.35) 70%, rgba(8, 7, 6, 0.15) 100%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.55), transparent 45%),
    url('../images/cta-restaurant.webp') center right / cover no-repeat,
    var(--ink-100);
  box-shadow: 0 40px 100px -40px rgba(232, 84, 32, 0.45);
}
.cta-inner::before {
  width: 60%; height: 90%;
  top: auto; bottom: -45%; left: -15%; right: auto;
  background: radial-gradient(circle, #E85420, transparent 62%);
  opacity: 0.35;
}
.cta-inner::after { display: none; }

.cta-inner h2 { color: var(--text); max-width: 14ch; line-height: 1.1; }
.cta-inner h2 .accent {
  color: var(--orange);
  border-bottom: 0;
  padding-bottom: 0;
  text-decoration: underline dotted var(--orange);
  text-decoration-thickness: 4px;
  text-underline-offset: 0.18em;
}
.cta-inner .lede { color: var(--text-mute); max-width: 42ch; margin: 0 0 2rem; }

.cta-inner .btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 36px -10px rgba(255, 107, 53, 0.7);
}
.cta-inner .btn-primary:hover { background: var(--orange-deep); color: #fff; }

@media (max-width: 720px) {
  .cta-inner {
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.55) 0%, rgba(8, 7, 6, 0.88) 55%, rgba(8, 7, 6, 0.96) 100%),
      url('../images/cta-restaurant-768.webp') 70% center / cover no-repeat,
      var(--ink-100);
  }
}

/* Mot clé du bandeau final : trait de pinceau orange → jaune tracé à la main,
   à la place des pointillés. Il se dessine de gauche à droite quand le
   bandeau entre à l'écran (navigateurs compatibles), sinon il est affiché. */
.cta-inner h2 .accent {
  text-decoration: none;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.cta-inner h2 .accent::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -4%;
  bottom: -0.16em;
  height: 0.34em;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 30' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1'%3E%3Cstop offset='0' stop-color='%23E85420'/%3E%3Cstop offset='.55' stop-color='%23FF6B35'/%3E%3Cstop offset='1' stop-color='%23FFB627'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M5 19C58 9 150 5 295 11' fill='none' stroke='url(%23g)' stroke-width='8' stroke-linecap='round'/%3E%3Cpath d='M38 26C112 19 196 17 262 20' fill='none' stroke='url(%23g)' stroke-width='3.5' stroke-linecap='round' opacity='.75'/%3E%3C/svg%3E") left center / 100% 100% no-repeat;
  filter: drop-shadow(0 4px 10px rgba(255, 107, 53, 0.45));
  transform-origin: left center;
}
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .cta-inner h2 .accent::after {
      animation: trait-pinceau linear both;
      animation-timeline: view();
      animation-range: entry 40% cover 45%;
    }
  }
}
@keyframes trait-pinceau {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}

/* Pack de démarrage : photo du comptoir en fond de la carte, et le coffret
   dans la case cliquable « Je profite de mon pack gratuit », en bas à droite. */
.pack-carte .pack-entete, .pack-carte .pack-liste { position: relative; z-index: 1; }
.pack-tampon { z-index: 3; }
.pack-carte {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.92) 0%, rgba(8, 7, 6, 0.7) 45%, rgba(8, 7, 6, 0.3) 100%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.94) 0%, rgba(8, 7, 6, 0.55) 45%, transparent 78%),
    url('../images/pack-comptoir.webp') right top / cover no-repeat,
    var(--ink-100);
}
.pack-item { background: rgba(18, 16, 14, 0.78); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }

.pack-item.pack-cta {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(150deg, #E85420 0%, #FF6B35 55%, #FF8A3D 100%);
  border-color: transparent;
  box-shadow: 0 20px 50px -18px rgba(255, 107, 53, 0.7);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.pack-item.pack-cta:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -18px rgba(255, 107, 53, 0.85); }
.pack-cta-lien {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  width: 100%;
  min-height: 100%;
  padding: 1.25rem 1.25rem 1.25rem;
  padding-top: 7.5rem;
  color: #080706;
  text-decoration: none;
  border-radius: inherit;
}
.pack-cta-lien:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.pack-coffret {
  position: absolute;
  top: -0.75rem;
  right: -0.5rem;
  width: 58%;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 16px 22px rgba(80, 20, 0, 0.45));
  transform: rotate(4deg);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
}
.pack-cta:hover .pack-coffret { transform: rotate(0deg) translateY(-6px) scale(1.05); }
.pack-cta-texte strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 13ch;
}
.pack-cta-texte span { display: block; font-size: 0.88rem; line-height: 1.45; color: rgba(8, 7, 6, 0.78); margin-top: 0.35rem; max-width: 26ch; }
.pack-cta-fleche {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: #080706;
  color: #fff;
  font-weight: 700;
  transition: transform 0.3s var(--ease-out);
}
.pack-cta:hover .pack-cta-fleche { transform: translateX(4px); }

/* Encarts du pack avec un visuel 3D qui dépasse en bas à droite */
.pack-item.avec-visuel {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(7.5rem, 11vw, 9rem);
}
.pack-visuel {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: 62%;
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.55));
  transform: rotate(-3deg);
  transition: transform 0.6s var(--ease-out);
  pointer-events: none;
}
.pack-item.avec-visuel:hover .pack-visuel { transform: rotate(0deg) translateY(-8px) scale(1.04); }

/* Tampon « Gratuit » en autocollant jaune plein, posé à cheval sur le bord
   haut de la carte. Il garde l'animation actuelle (il s'abat puis se pose). */
.pack-carte { overflow: visible; }
.pack-tampon {
  top: -1.6rem;
  right: clamp(1.5rem, 8vw, 7rem);
  padding: 0.7rem 1.6rem;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(160deg, #FFC34D 0%, #FFB627 55%, #F2A516 100%);
  color: #080706;
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  letter-spacing: 0.02em;
  transform: rotate(-7deg);
  box-shadow:
    0 0 60px rgba(255, 182, 39, 0.35),
    0 14px 30px -10px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
@media (max-width: 600px) {
  .pack-tampon { position: absolute; display: block; margin: 0; top: -1.2rem; right: 1rem; padding: 0.55rem 1.15rem; border-radius: 14px; transform: rotate(-7deg); }
}

/* ============================================================================
   FIDÉLISER — fidélité, tournée de la table, suggestions « Pour vous »
   Chaque carte montre un extrait de l'écran réel de l'app (fond clair),
   teinté de sa couleur : orange, jaune, vert.
   ============================================================================ */
.tag.yellow { background: rgba(255, 182, 39, 0.12); }
.fid-grille {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 960px) { .fid-grille { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

.fid-carte {
  --teinte: 255, 107, 53;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: var(--r-card);
  border: 1px solid rgba(var(--teinte), 0.25);
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(var(--teinte), 0.22), transparent 70%),
    linear-gradient(180deg, var(--ink-200), var(--ink-100));
  transition: transform 0.5s var(--ease-out), border-color 0.5s;
}
.fid-carte:hover { transform: translateY(-6px); border-color: rgba(var(--teinte), 0.5); }
.fid-orange { --teinte: 255, 107, 53; }
.fid-jaune  { --teinte: 255, 182, 39; }
.fid-vert   { --teinte: 43, 182, 115; }
.fid-carte h3 { font-size: 1.35rem; line-height: 1.2; color: var(--text); margin-top: 0.5rem; text-wrap: balance; }
.fid-carte p { color: var(--text-mute); font-size: 0.95rem; line-height: 1.6; }
.fid-carte .fid-note {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ink-border);
  font-size: 0.82rem;
  color: rgba(var(--teinte), 0.95);
}

/* Extrait d'écran de l'app */
.fid-ecran {
  background: #fff;
  color: #16130F;
  border-radius: 18px;
  padding: 1.1rem;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.7), 0 0 0 6px rgba(255, 255, 255, 0.04);
  transform: rotate(-1.2deg);
  transition: transform 0.5s var(--ease-out);
  font-family: 'Inter', system-ui, sans-serif;
}
.fid-carte:hover .fid-ecran { transform: rotate(0deg) scale(1.02); }
.fid-jaune .fid-ecran { transform: rotate(1.2deg); }

.fid-solde { display: flex; align-items: baseline; justify-content: space-between; }
.fid-solde span { font-size: 0.8rem; color: #6B645C; font-weight: 600; }
.fid-solde strong { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2rem; color: #E85420; line-height: 1; }
.fid-jauge { height: 10px; border-radius: 999px; background: #F1ECE6; overflow: hidden; }
.fid-jauge span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #E85420, #FFB627); }
.fid-petit { font-size: 0.78rem !important; color: #6B645C !important; line-height: 1.4 !important; }
.fid-paliers { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.fid-palier { font-size: 0.75rem; font-weight: 600; padding: 0.35rem 0.7rem; border-radius: 999px; background: #F1ECE6; color: #6B645C; }
.fid-palier.atteint { background: #E85420; color: #fff; }

.fid-titre-ecran { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem; }
.fid-titre-ecran span { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.78rem; color: #6B645C; }
.fid-lignes { list-style: none; display: grid; gap: 0.4rem; font-size: 0.86rem; }
.fid-lignes li { display: flex; gap: 0.5rem; padding-bottom: 0.4rem; border-bottom: 1px dashed #ECE5DD; }
.fid-lignes b { color: #E89D0E; min-width: 2rem; }
.fid-bouton { margin-top: auto; align-self: flex-start; font-size: 0.82rem; font-weight: 700; padding: 0.55rem 1rem; border-radius: 999px; background: #FF6B35; color: #fff; }

.fid-vignettes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem; }
.fid-vignette { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.78rem; }
.fid-vignette i { display: block; aspect-ratio: 1; border-radius: 12px; }
.fid-vignette .v1 { background: radial-gradient(circle at 35% 30%, #FFB27A, #E85420); }
.fid-vignette .v2 { background: radial-gradient(circle at 35% 30%, #FFE08A, #E89D0E); }
.fid-vignette .v3 { background: radial-gradient(circle at 35% 30%, #D9B08C, #7A4A2A); }
.fid-vignette b { font-weight: 700; }
.fid-vignette small { font-size: 0.68rem; line-height: 1.3; color: #2BB673; font-weight: 600; }
.fid-vignette img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 12px; }

/* Page Sur place : parcours en 6 étapes sur 3 colonnes, avec un visuel 3D
   par étape (.step-visuel) quand il existe, et les 2 façons de servir. */
.steps.steps-parcours { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
@media (max-width: 900px) { .steps.steps-parcours { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .steps.steps-parcours { grid-template-columns: 1fr; } }
.steps-parcours .step-card { position: relative; overflow: hidden; }
.steps-parcours .step-card:has(.step-visuel) { padding-top: 0; }
.step-visuel {
  display: block;
  width: calc(100% + 2.5rem);
  max-width: none;
  margin: 0 -1.25rem 1.25rem;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: radial-gradient(70% 80% at 50% 60%, rgba(255, 107, 53, 0.22), transparent 70%);
  padding: 1rem 1.5rem 0;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.5));
}
.modes-grid.modes-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 900px; margin: 0 auto; }
@media (max-width: 760px) { .modes-grid.modes-2 { grid-template-columns: 1fr; } }
/* Étape illustrée par une photo (pas un objet détouré) : pleine largeur, sans lueur */
.step-visuel.step-photo { object-fit: cover; padding: 0; background: none; filter: none; }
.steps-parcours .step-card:has(.step-visuel) .num { margin-top: -2.4rem; position: relative; box-shadow: 0 0 0 4px var(--ink-100); }

/* La lueur ne s'arrête plus net au bas de l'image : elle est portée par la
   carte et s'estompe doucement derrière le numéro et le texte. */
.step-visuel { background: none; }
.steps-parcours .step-card:has(.step-visuel)::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 75%;
  background: radial-gradient(60% 55% at 50% 38%, rgba(255, 107, 53, 0.22), transparent 75%);
  pointer-events: none;
}
.steps-parcours .step-card > * { position: relative; }
/* Les objets coupés par le cadre (pied de table, main) s'estompent au lieu
   de s'arrêter sur une ligne droite. */
.step-visuel:not(.step-photo) {
  -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
}
/* Parcours en 5 étapes : les 2 dernières centrées sur la 2e ligne */
.steps.steps-parcours:has(> .step-card:nth-child(5):last-child) { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.steps.steps-parcours:has(> .step-card:nth-child(5):last-child) > .step-card { grid-column: span 2; }
.steps.steps-parcours:has(> .step-card:nth-child(5):last-child) > .step-card:nth-child(4) { grid-column: 2 / span 2; }
@media (max-width: 900px) {
  .steps.steps-parcours:has(> .step-card:nth-child(5):last-child) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps.steps-parcours:has(> .step-card:nth-child(5):last-child) > .step-card,
  .steps.steps-parcours:has(> .step-card:nth-child(5):last-child) > .step-card:nth-child(4) { grid-column: auto; }
}
@media (max-width: 560px) { .steps.steps-parcours:has(> .step-card:nth-child(5):last-child) { grid-template-columns: 1fr; } }

/* Badges des stores : même hauteur, quelle que soit l'image fournie
   (le PNG Google Play contient une marge transparente). */
.badges-stores { align-items: center; gap: 0.75rem; }
.badges-stores img { display: block; height: 48px; width: auto; }
.badges-stores a[aria-label="Google Play"] img { height: 71px; margin: -12px; }
/* Grille de fonctionnalités : l'objet ne passe jamais sous le titre */
.feat-grid .bento-card.avec-objet h3 { max-width: 62%; position: relative; z-index: 1; }
.feat-grid .bento-card.avec-objet .bento-objet { width: 36%; max-width: 170px; }
.feat-grid .bento-card.avec-objet .bento-objet.bento-objet-large { width: 42%; max-width: 200px; }

/* ============================================================================
   PAGES LÉGALES — CGV / CGU et mentions légales
   Sommaire collant à gauche, texte en colonne de lecture à droite.
   ============================================================================ */
.legal-hero { padding-bottom: clamp(2rem, 4vw, 3rem); }
.legal { padding-top: 0; }
.legal-grille { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.legal-sommaire {
  position: sticky; top: 100px;
  max-height: calc(100vh - 130px); overflow-y: auto;
  padding: 1.25rem 1.1rem;
  border: 1px solid var(--ink-border); border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--ink-200), var(--ink-100));
}
.legal-sommaire-titre { font: 700 0.75rem/1 'Poppins', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.9rem; }
.legal-sommaire ol { list-style: none; display: grid; gap: 0.15rem; }
.legal-sommaire a { display: block; padding: 0.4rem 0.55rem; border-radius: 8px; font-size: 0.84rem; line-height: 1.35; color: var(--text-mute); text-decoration: none; transition: background 0.2s, color 0.2s; }
.legal-sommaire a:hover, .legal-sommaire a.actif { background: rgba(255, 107, 53, 0.12); color: var(--text); }
.legal-texte { max-width: 72ch; }
.legal-article { padding: 0 0 2.25rem; margin-bottom: 2.25rem; border-bottom: 1px solid var(--ink-border); scroll-margin-top: 100px; }
.legal-article:last-child { border-bottom: 0; }
.legal-article h2 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.25; letter-spacing: -0.01em; color: var(--text); margin-bottom: 1rem; text-wrap: balance; }
.legal-article h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.02rem; color: var(--orange); margin: 1.5rem 0 0.6rem; }
.legal-article h4 { font-weight: 700; font-size: 0.95rem; color: var(--text); margin: 1.2rem 0 0.5rem; }
.legal-article p { color: var(--text-mute); font-size: 0.96rem; line-height: 1.75; margin-bottom: 0.8rem; }
.legal-article ul { margin: 0.25rem 0 1rem 0; padding-left: 1.2rem; display: grid; gap: 0.35rem; }
.legal-article li { color: var(--text-mute); font-size: 0.96rem; line-height: 1.65; }
.legal-article li::marker { color: var(--orange); }
.legal-article a { color: var(--orange); }
@media (max-width: 900px) {
  .legal-grille { grid-template-columns: 1fr; }
  .legal-sommaire { position: static; max-height: 320px; }
}
.legal-article.legal-partie h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); color: var(--orange); }
.legal-article.legal-partie { border-bottom: 2px solid rgba(255, 107, 53, 0.35); }
.legal-sommaire li.partie { margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid var(--ink-border); }
.legal-sommaire li.partie a { color: var(--orange); font-weight: 700; }

/* ============================================================================
   CONNEXION / INSCRIPTION — formulaire à gauche, panneau produit à droite
   ============================================================================ */
.auth { padding-block: clamp(2.5rem, 6vw, 5rem); }
.auth-grille { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.auth-carte { max-width: 480px; width: 100%; }
.auth-carte-large { max-width: 640px; }
.auth-carte .h1 { margin: 1rem 0 0.6rem; }
.auth-carte .lede { margin-bottom: 1.75rem; }
.auth-form { display: grid; gap: 1.1rem; padding: clamp(1.4rem, 3vw, 2rem); border: 1px solid var(--ink-border); border-radius: var(--r-card); background: linear-gradient(180deg, var(--ink-200), var(--ink-100)); }
.auth-label-ligne { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.auth-lien, .auth-bas a, .auth-case a { color: var(--orange); font-size: 0.86rem; text-decoration: none; }
.auth-lien:hover, .auth-bas a:hover, .auth-case a:hover { text-decoration: underline; }
.auth-mdp { position: relative; }
.auth-mdp input { width: 100%; padding-right: 3rem; }
.auth-oeil { position: absolute; right: 0.6rem; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; display: grid; place-items: center; border: 0; background: none; color: var(--text-mute); cursor: pointer; border-radius: 8px; }
.auth-oeil:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.auth-oeil svg { width: 18px; height: 18px; }
.auth-case { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--text-mute); cursor: pointer; }
.auth-case input { margin-top: 0.2rem; width: 18px; height: 18px; accent-color: var(--orange); flex-shrink: 0; }
.auth-bouton { width: 100%; justify-content: center; margin-top: 0.4rem; }
.auth-message { padding: 0.75rem 1rem; border-radius: 12px; background: rgba(255, 182, 39, 0.12); border: 1px solid rgba(255, 182, 39, 0.3); color: var(--yellow); font-size: 0.88rem; }
.auth-bas { margin-top: 1.25rem; color: var(--text-mute); font-size: 0.92rem; }
.auth-aide { display: block; margin-top: 0.4rem; font-size: 0.78rem; color: var(--text-soft); }
.auth-bloc { border: 0; padding: 0; margin: 0 0 0.6rem; display: grid; gap: 0; }
.auth-bloc legend { font: 700 0.78rem/1 'Poppins', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.1rem; }
.auth-bloc + .auth-bloc { padding-top: 1.4rem; border-top: 1px solid var(--ink-border); }
.auth-bloc .auth-case + .auth-case { margin-top: 0.7rem; }
.auth-etapes { list-style: none; display: flex; gap: 0.5rem; margin-bottom: 1.25rem; counter-reset: etape; flex-wrap: wrap; }
.auth-etapes li { counter-increment: etape; display: flex; align-items: center; gap: 0.5rem; padding: 0.45rem 0.9rem 0.45rem 0.45rem; border-radius: 999px; border: 1px solid var(--ink-border); font-size: 0.84rem; color: var(--text-mute); }
.auth-etapes li::before { content: counter(etape); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font: 700 0.75rem/1 'Poppins', sans-serif; background: var(--ink-300); color: var(--text); }
.auth-etapes li.actif { border-color: rgba(255, 107, 53, 0.45); color: var(--text); }
.auth-etapes li.actif::before { background: var(--orange); color: #fff; }
.auth-panneau { position: sticky; top: 100px; padding: clamp(1.6rem, 3vw, 2.4rem); border-radius: calc(var(--r-card) + 8px); border: 1px solid rgba(255, 107, 53, 0.3); background: radial-gradient(80% 60% at 70% 100%, rgba(255, 107, 53, 0.28), transparent 70%), linear-gradient(160deg, var(--ink-200), var(--ink-100)); overflow: hidden; display: grid; gap: 1.5rem; }
.auth-panneau .h2 { margin: 0.9rem 0 1rem; }
.auth-points { list-style: none; display: grid; gap: 0.7rem; }
.auth-points li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--text-mute); font-size: 0.95rem; }
.auth-points svg { width: 20px; height: 20px; flex-shrink: 0; color: #fff; background: var(--green); border-radius: 50%; padding: 3px; }
.auth-telephone { display: flex; justify-content: center; margin-bottom: -26%; }
.auth-telephone .iphone { width: min(62%, 260px); filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55)); }
@media (max-width: 960px) {
  .auth-grille { grid-template-columns: 1fr; }
  .auth-carte, .auth-carte-large { max-width: none; }
  .auth-panneau { position: static; }
}

/* Avatars en initiales (aucune photo de personne) */
.avatar-initiale { width: var(--taille, 48px); height: var(--taille, 48px); flex-shrink: 0; border-radius: 50%; display: inline-grid; place-items: center; font: 800 calc(var(--taille, 48px) * 0.42)/1 'Poppins', sans-serif; color: #080706; border: 2px solid var(--ink); }
.avatar-initiale.av-orange { background: linear-gradient(135deg, #FF8A3D, #E85420); }
.avatar-initiale.av-jaune { background: linear-gradient(135deg, #FFD36B, #F2A516); }
.avatar-initiale.av-vert { background: linear-gradient(135deg, #5AD49A, #2BB673); }
.hero-trust .avatars .avatar-initiale + .avatar-initiale { margin-left: -10px; }

/* Cartes des 2 façons de servir : visuel en pied de carte */
.mode-card .mode-visuel { width: calc(100% + 4rem); max-width: none; margin: 1.25rem -2rem -2rem; display: block; }
/* Messages du formulaire de contact */
.form-message { padding: 0.8rem 1rem; border-radius: 12px; font-size: 0.9rem; margin-bottom: 1.25rem; }
.form-message-ok { background: rgba(43, 182, 115, 0.12); border: 1px solid rgba(43, 182, 115, 0.35); color: #6ee7b0; }
.form-message-erreur { background: rgba(232, 84, 32, 0.12); border: 1px solid rgba(232, 84, 32, 0.4); color: #ffb08a; }

/* Page de connexion : l'inscription est mise en avant sous le formulaire */
.auth-bascule { margin-top: 1.75rem; position: relative; }
.auth-bascule-ou {
  display: block; text-align: center; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-soft); margin-bottom: 1rem; position: relative;
}
.auth-bascule-ou::before, .auth-bascule-ou::after {
  content: ''; position: absolute; top: 50%; width: calc(50% - 2rem); height: 1px; background: var(--ink-border);
}
.auth-bascule-ou::before { left: 0; }
.auth-bascule-ou::after { right: 0; }
.auth-bascule-carte {
  padding: 1.5rem; border-radius: var(--r-card);
  border: 1px solid rgba(255, 107, 53, 0.35);
  background: radial-gradient(90% 70% at 50% 0%, rgba(255, 107, 53, 0.18), transparent 70%), linear-gradient(180deg, var(--ink-200), var(--ink-100));
  box-shadow: 0 24px 60px -30px rgba(255, 107, 53, 0.45);
  text-align: center;
}
.auth-bascule-titre { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--text); margin-bottom: 0.5rem; }
.auth-bascule-texte { color: var(--text-mute); font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.1rem; }
.auth-bascule-texte strong { color: var(--yellow); }
.auth-bascule-note { margin-top: 0.7rem; font-size: 0.8rem; color: var(--text-soft); }

/* Avertissement sous une simulation chiffrée : ce n'est pas une moyenne constatée. */
.note-hypotheses {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border: 1px dashed var(--ink-border);
  border-radius: var(--r-md);
  background: var(--ink-100);
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Mention de transparence sous les témoignages (art. L.111-7-2 du code de la consommation). */
.testi-mention {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

/* Déroulé d'une soirée type (page application mobile). */
.journee { list-style: none; counter-reset: none; display: grid; gap: 0.9rem; }
.journee li {
  display: grid;
  grid-template-columns: minmax(7.5rem, max-content) 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(180deg, var(--ink-200), var(--ink-100));
  border: 1px solid var(--ink-border);
  border-radius: var(--r-md);
}
.journee-h {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  max-width: 9rem;
}
.journee p { color: var(--text-dim); line-height: 1.65; }
.journee strong { color: var(--text); }

/* Deux colonnes d'information factuelle. */
.deux-colonnes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.bloc-info {
  padding: 1.5rem;
  background: linear-gradient(180deg, var(--ink-200), var(--ink-100));
  border: 1px solid var(--ink-border);
  border-radius: var(--r-md);
}
.bloc-info h2 { margin-bottom: 0.85rem; }
.bloc-info-intro { color: var(--text-dim); margin-bottom: 0.85rem; }
.liste-info { list-style: none; display: grid; gap: 0.75rem; }
.liste-info li { color: var(--text-dim); line-height: 1.6; padding-left: 1.1rem; position: relative; }
.liste-info li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px; border-radius: 999px; background: var(--orange); }
.liste-info strong { color: var(--text); }

@media (max-width: 640px) {
  .journee li { grid-template-columns: 1fr; gap: 0.35rem; }
}

/* Paragraphe de détail sous une carte Fidéliser (page fonctionnalités). */
.fid-detail {
  margin-top: 0.75rem;
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Fiche de la personne qui porte la technique (page À propos) : un visage et un
   nom valent plus qu'une page entière de promesses. */
/* Les fiches de l'équipe tiennent côte à côte tant que la place le permet. */
.fiches-equipe {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

/* Carte en colonne : trois personnes s'alignent sans qu'une fiche plus
   bavarde ne creuse un trou à côté d'elle. */
.fiche-personne {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.75rem;
  background: linear-gradient(180deg, var(--ink-200), var(--ink-100));
  border: 1px solid var(--ink-border);
  border-radius: var(--r-lg, 20px);
}
.fiche-personne h3 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.35rem; }
.fiche-personne-texte .fiche-personne-role {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0.15rem 0 0.9rem;
}
.fiche-personne-texte p { color: var(--text-dim); line-height: 1.7; }
.fiche-personne-lien {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.45);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.fiche-personne-lien:hover { color: var(--orange); border-color: var(--orange); }

@media (max-width: 640px) {
  .fiche-personne { padding: 1.5rem; }
}

/* Portrait de la fiche équipe : même gabarit rond que les avatars du site. */
.fiche-personne-avatar { align-self: start; }

.fiche-personne-photo {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ink-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
