/* RealMeet — site vitrine
   DA : orange désaturé premium (terracotta/amber) sur beige chaud.
   Pas de gradient cheap, pas d'orange criard, accent maîtrisé. */

:root {
  /* Orange premium — désaturé chaud, pas criard */
  --terracotta: #D9784A;
  --terracotta-dark: #B85F36;
  --terracotta-deep: #8C4424;
  --amber: #E89B5C;
  --amber-soft: #F4D2B0;
  --amber-tint: #FCEEDD;

  /* Neutres chauds */
  --bg: #FAF6F1;
  --bg-deep: #F4ECE2;
  --surface: #FFFFFF;
  --surface-soft: #FFFAF5;

  /* Texte */
  --ink: #1A1614;
  --ink-soft: #3D3631;
  --ink-mute: #6E6359;
  --ink-faint: #A29486;

  /* Bordures, ombres */
  --line: #ECE3D6;
  --line-soft: #F4ECE2;

  --shadow-soft: 0 1px 2px rgba(26, 22, 20, 0.04), 0 2px 6px rgba(26, 22, 20, 0.04);
  --shadow-md: 0 6px 20px rgba(26, 22, 20, 0.08), 0 2px 6px rgba(26, 22, 20, 0.04);
  --shadow-lg: 0 18px 40px rgba(26, 22, 20, 0.10), 0 4px 12px rgba(26, 22, 20, 0.05);
  --shadow-glow: 0 12px 32px rgba(217, 120, 74, 0.22);

  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  --max: 1180px;
  --gutter: 24px;
}

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

html {
  scroll-behavior: smooth;
  /* Le navbar sticky fait 68px de haut. Sans cette padding, cliquer sur une
     ancre type #download faisait remonter la cible derrière la nav et le user
     ne pouvait plus scroller au-dessus correctement. */
  scroll-padding-top: 84px;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern', 'ss01', 'ss02', 'liga';
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--amber-soft); color: var(--ink); }

/* ---------- Layout ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--soft { background: var(--bg-deep); }
.section--surface { background: var(--surface); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  background: var(--amber-tint);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.12;
}

.h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--terracotta) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-mute);
  line-height: 1.65;
  max-width: 640px;
}

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(250, 246, 241, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 0;
  font-weight: 800; font-size: 21px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.brand__dot { color: var(--terracotta); }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__link {
  font-size: 14px; font-weight: 600; color: var(--ink-mute);
  position: relative; padding: 6px 0;
  transition: color 140ms ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.nav__link.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--terracotta);
  border-radius: 2px;
}
.nav__cta {
  background: var(--ink); color: #FFF;
  padding: 10px 18px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 13.5px;
  transition: transform 140ms ease, background 140ms ease, box-shadow 240ms ease;
}
.nav__cta:hover {
  background: var(--terracotta);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}
.nav__burger { display: none; background: none; border: 0; padding: 8px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(closest-side, rgba(232, 155, 92, 0.28), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -150px;
  width: 580px; height: 580px;
  background: radial-gradient(closest-side, rgba(217, 120, 74, 0.18), transparent 72%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy { max-width: 600px; }
.hero__title {
  margin: 18px 0 22px;
}
.hero__sub {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--ink-mute);
  line-height: 1.6;
  max-width: 520px;
}
.hero__cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 32px;
}
.hero__trust {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 14px;
}
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 600;
  color: var(--ink-soft);
}
.tag__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--terracotta);
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-size: 14.5px; font-weight: 700;
  border: 0; cursor: pointer;
  transition: transform 140ms ease, box-shadow 200ms ease, background 140ms ease, color 140ms ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink); color: #FFF;
}
.btn--primary:hover {
  background: var(--terracotta);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  background: var(--surface); border-color: var(--ink);
  transform: translateY(-1px);
}

/* Store badges */
.stores { display: flex; gap: 12px; flex-wrap: wrap; }
.store {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #FFF;
  padding: 11px 20px;
  border-radius: var(--r-md);
  min-width: 184px;
  transition: transform 140ms ease, background 140ms ease, box-shadow 200ms ease;
}
.store:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store__icon { width: 26px; height: 26px; flex-shrink: 0; }
.store__text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.store__small { font-size: 11px; font-weight: 500; opacity: 0.8; }
.store__big { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }

/* ---------- Mockup phone ---------- */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone {
  position: relative;
  width: 280px;
  height: 580px;
  background: linear-gradient(160deg, #2A2420 0%, #110D0A 100%);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 30px 60px rgba(26, 22, 20, 0.22),
    0 12px 24px rgba(26, 22, 20, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.phone::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #0A0807;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone__screen {
  background: var(--surface-soft);
  border-radius: 32px;
  width: 100%; height: 100%;
  overflow: hidden;
  position: relative;
}
.phone__statusbar {
  height: 38px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 28px 0;
  font-size: 11px; font-weight: 700; color: var(--ink);
}
.phone__statusbar svg { opacity: 0.7; }
.phone__content { padding: 8px 16px 24px; }
.phone__appbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 4px 16px;
}
.phone__appbar__title { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; }
.phone__appbar__avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--amber));
}

/* Card activité dans le mockup */
.phone__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  animation: phoneCardIn 600ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.phone__card:nth-child(1) { animation-delay: 200ms; }
.phone__card:nth-child(2) { animation-delay: 400ms; }
.phone__card:nth-child(3) { animation-delay: 600ms; }
@keyframes phoneCardIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.phone__card__row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.phone__card__chip {
  font-size: 10px; font-weight: 700; color: var(--terracotta-dark);
  background: var(--amber-tint);
  padding: 3px 8px; border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}
.phone__card__time {
  font-size: 11px; color: var(--ink-mute); font-weight: 600;
}
.phone__card__title {
  font-size: 14px; font-weight: 800; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 2px;
}
.phone__card__place {
  font-size: 11.5px; color: var(--ink-mute);
  margin-bottom: 10px;
}
.phone__card__foot {
  display: flex; justify-content: space-between; align-items: center;
}
.avatars { display: flex; }
.avatars > span {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  margin-left: -7px;
  background: linear-gradient(135deg, var(--amber), var(--terracotta));
}
.avatars > span:nth-child(1) { margin-left: 0; background: linear-gradient(135deg, #6BAED6, #4477AA); }
.avatars > span:nth-child(2) { background: linear-gradient(135deg, #B07BCC, #6E4F8E); }
.avatars > span:nth-child(3) { background: linear-gradient(135deg, var(--amber), var(--terracotta)); }
.avatars > span:nth-child(4) { background: linear-gradient(135deg, #88C9A1, #4F8C6E); }
.phone__card__count {
  font-size: 11px; color: var(--ink-soft); font-weight: 600;
}

/* Petites bulles de conversation flottantes autour du phone */
.float-bubble {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.float-bubble--1 {
  top: 80px; left: -20px;
  animation: float 7s ease-in-out infinite;
}
.float-bubble--2 {
  bottom: 100px; right: -30px;
  animation: float 7s ease-in-out infinite;
  animation-delay: -3.5s;
}
.float-bubble__avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #B07BCC, #6E4F8E);
}
.float-bubble--2 .float-bubble__avatar {
  background: linear-gradient(135deg, var(--amber), var(--terracotta));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Section problème (situations) ---------- */
.situations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.situation {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease;
}
.situation:hover {
  transform: translateY(-2px);
  border-color: var(--terracotta);
}
.situation__quote {
  font-size: 32px; line-height: 1; color: var(--amber);
  margin-bottom: 8px; display: block;
  font-family: Georgia, serif;
}

/* ---------- Étapes (Solution) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-size: 13px; font-weight: 800;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 16px;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber);
}
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--ink-mute); line-height: 1.65; }

/* ---------- Cartes activités ---------- */
.activities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.activity {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.activity:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber);
}
.activity__cat {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--terracotta-dark);
  background: var(--amber-tint);
  padding: 4px 10px; border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.activity__title {
  font-size: 17px; font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.activity__meta {
  display: flex; gap: 12px;
  font-size: 12.5px; color: var(--ink-mute);
  font-weight: 500;
}
.activity__meta span::before {
  content: '·'; margin-right: 12px; color: var(--ink-faint);
}
.activity__meta span:first-child::before { content: ''; margin-right: 0; }

/* ---------- Confiance / sécurité ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.trust {
  padding: 28px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--amber-tint);
  color: var(--terracotta-dark);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.trust h3 { font-size: 17px; font-weight: 800; }
.trust p { font-size: 14.5px; color: var(--ink-mute); line-height: 1.6; }

/* ---------- Section partenaires ---------- */
.partners {
  background: linear-gradient(135deg, #1A1614 0%, #2C2620 100%);
  color: var(--surface);
  border-radius: var(--r-xl);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}
.partners::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(closest-side, rgba(232, 155, 92, 0.35), transparent 70%);
  pointer-events: none;
}
.partners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.partners__title {
  color: var(--surface);
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
  line-height: 1.15;
}
.partners__title em {
  font-style: normal; color: var(--amber);
}
.partners__lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px; line-height: 1.65;
  margin-bottom: 28px;
}
.partners__list {
  list-style: none;
  margin-bottom: 32px;
}
.partners__list li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px; color: rgba(255, 255, 255, 0.88);
  display: flex; align-items: flex-start; gap: 10px;
}
.partners__list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--amber);
  border-radius: 50%;
  margin-top: 9px; flex-shrink: 0;
}
.partners__list li:first-child { border-top: 0; }
.partners .btn--primary { background: var(--amber); color: var(--ink); }
.partners .btn--primary:hover { background: #F4B071; }
.partners .btn--ghost { color: var(--surface); border-color: rgba(255,255,255,0.18); }
.partners .btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }

.partners__visual {
  display: flex; justify-content: center;
}
.partners__chart {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 28px;
  width: 100%;
  max-width: 380px;
}
.partners__chart__title {
  font-size: 13px; font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 18px;
}
.bar-row {
  display: grid; grid-template-columns: 70px 1fr 40px;
  align-items: center; gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
}
.bar-row__label { color: rgba(255,255,255,0.7); font-weight: 600; }
.bar-row__bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}
.bar-row__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--terracotta));
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bar-row__val { color: var(--surface); font-weight: 700; text-align: right; }

/* ---------- Local ---------- */
.local-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.local-pin {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber-tint);
  color: var(--terracotta-dark);
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 700;
  margin-bottom: 16px;
}
.local-band p { color: var(--ink-mute); font-size: 16px; line-height: 1.7; }
.local-cities {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px;
}
.city-pill {
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
}
.city-pill--active {
  background: var(--ink); color: var(--surface); border-color: var(--ink);
}

.local-visual {
  position: relative;
  height: 320px;
  background:
    radial-gradient(circle at 70% 30%, rgba(232, 155, 92, 0.15), transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(217, 120, 74, 0.12), transparent 50%),
    var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.map-pin {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
}
.map-pin__dot {
  width: 14px; height: 14px;
  background: var(--terracotta);
  border-radius: 50%;
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 0 rgba(217, 120, 74, 0.5);
  animation: pulse 2.5s infinite;
}
.map-pin__label {
  margin-top: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 11.5px; font-weight: 700; color: var(--ink);
  white-space: nowrap;
}
.map-pin--reunion { top: 60%; left: 70%; }
.map-pin--paris { top: 25%; left: 30%; animation-delay: 1.2s; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 120, 74, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(217, 120, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 120, 74, 0); }
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.faq__item[open] {
  border-color: var(--amber);
  box-shadow: var(--shadow-soft);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 700; color: var(--ink);
  transition: color 200ms ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--terracotta);
  transition: transform 240ms ease;
  font-weight: 400;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body {
  padding: 0 24px 22px;
  color: var(--ink-mute);
  font-size: 15px; line-height: 1.65;
}

/* ---------- CTA final ---------- */
.cta-final {
  background: linear-gradient(135deg, var(--terracotta) 0%, #C7693E 100%);
  border-radius: var(--r-xl);
  padding: 72px 48px;
  text-align: center;
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.1), transparent 50%);
  pointer-events: none;
}
.cta-final h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800; letter-spacing: -0.025em;
  color: var(--surface); margin-bottom: 14px;
  line-height: 1.1;
  position: relative;
}
.cta-final p {
  font-size: 17px; opacity: 0.92;
  margin-bottom: 32px;
  max-width: 540px; margin-left: auto; margin-right: auto;
  position: relative;
}
.cta-final .stores { justify-content: center; position: relative; }
.cta-final .store {
  background: var(--surface); color: var(--ink);
}
.cta-final .store:hover { background: var(--surface-soft); }

/* ---------- Contact (page) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
}
.contact-card h3 { font-size: 17px; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--ink-mute); line-height: 1.6; margin-bottom: 16px; }
.contact-card a {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 14px;
  color: var(--terracotta-dark);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 140ms, border-color 140ms;
}
.contact-card a:hover { color: var(--terracotta); border-color: var(--terracotta); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  max-width: 640px;
  margin: 0 auto;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 140ms, box-shadow 140ms;
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(217, 120, 74, 0.15);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }

/* ---------- Pages légales ---------- */
.doc { max-width: 760px; margin: 0 auto; }
.doc h1 {
  font-size: clamp(32px, 5vw, 44px);
  margin-bottom: 8px;
}
.doc__sub { color: var(--ink-mute); font-size: 15px; margin-bottom: 40px; }
.doc h2 {
  font-size: 20px; margin: 32px 0 12px;
  letter-spacing: -0.01em;
}
.doc h3 { font-size: 16px; margin: 20px 0 8px; color: var(--ink-soft); }
.doc p, .doc li {
  font-size: 15px; line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.doc ul, .doc ol { padding-left: 22px; margin-bottom: 16px; }
.doc strong { color: var(--ink); font-weight: 700; }
.doc__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--ink-mute);
  margin-bottom: 28px;
  transition: color 140ms;
}
.doc__back:hover { color: var(--terracotta); }

/* ---------- Footer ---------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
  margin-top: 64px;
}
.footer__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand { max-width: 300px; }
.footer__brand p {
  font-size: 13.5px; color: var(--ink-mute);
  margin-top: 12px; line-height: 1.6;
}
.footer__col h4 {
  font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 14px; color: var(--ink-mute);
  margin-bottom: 10px;
  transition: color 140ms;
}
.footer__col a:hover { color: var(--terracotta); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 13px; color: var(--ink-faint);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}

/* ---------- Animations scroll (révéler au passage) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1; transform: translateY(0);
}
.reveal--up { transform: translateY(28px); }
.reveal--right { transform: translateX(-28px); }
.reveal--right.is-visible { transform: translateX(0); }
.reveal--stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal--stagger.is-visible > * {
  opacity: 1; transform: translateY(0);
}
.reveal--stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal--stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal--stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal--stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal--stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal--stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal--up, .reveal--right {
    opacity: 1; transform: none;
  }
  .reveal--stagger > * { opacity: 1; transform: none; }
  .float-bubble--1, .float-bubble--2 { animation: none; }
  .map-pin__dot { animation: none; box-shadow: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .partners__grid { grid-template-columns: 1fr; }
  .partners { padding: 48px 28px; }
  .local-band { grid-template-columns: 1fr; gap: 32px; }
  .local-visual { height: 240px; }
  .footer__row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .nav__links { gap: 16px; }
  .nav__link { display: none; }
  .nav__cta { padding: 8px 14px; font-size: 13px; }
  .phone { width: 240px; height: 500px; }
  .float-bubble--1 { left: -10px; top: 50px; }
  .float-bubble--2 { right: -10px; bottom: 80px; }
  .cta-final { padding: 48px 24px; }
  .form-card { padding: 24px; }
  .footer__row { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
